diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 734563954f..33463a523c 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -3,18 +3,20 @@ on: push: branches: - develop - - llvm_20 + - LLVM20 paths-ignore: - '**.md' + - '**.dic' pull_request: branches: - develop - - llvm_20 + - LLVM20 paths-ignore: - '**.md' + - '**.dic' jobs: build: @@ -24,7 +26,6 @@ jobs: uses: actions/checkout@v4 with: persist-credentials: false - fetch-depth: 0 - name: Build Source run: .\Build-All.ps1 -ForceClean -BuildMode Source @@ -59,10 +60,9 @@ jobs: uses: actions/checkout@v4 with: persist-credentials: false - fetch-depth: 0 - name: Build Docs - run: .\Build-All.ps1 -ForceClean -BuildMode Docs + run: .\Build-Docs.ps1 -FullInit -Configuration Release - name: Upload docs artifact uses: actions/upload-artifact@v4 @@ -76,5 +76,3 @@ jobs: with: name: Build Logs path: .\BuildOutput\BinLogs - - diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index ddfee060b2..1ce7e0e433 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -12,10 +12,9 @@ jobs: uses: actions/checkout@v2 with: persist-credentials: false - fetch-depth: 0 - name: Build Source - run: .\Build-All.ps1 + run: .\Build-All.ps1 -FullInit - name: Publish Artifacts uses: actions/upload-artifact@v4 diff --git a/Build-All.ps1 b/Build-All.ps1 index d7d23b29fb..af9e2aca8d 100644 --- a/Build-All.ps1 +++ b/Build-All.ps1 @@ -5,10 +5,6 @@ .PARAMETER Configuration This sets the build configuration to use, default is "Release" though for inner loop development this may be set to "Debug" -.PARAMETER AllowVsPreReleases - Switch to enable use of Visual Studio Pre-Release versions. This is NEVER enabled for official production builds, however it is - useful when adding support for new versions during the pre-release stages. - .PARAMETER ForceClean Forces a complete clean (Recursive delete of the build output) @@ -39,6 +35,9 @@ Param( [System.String]$BuildMode = 'All' ) +$ErrorActionPreference = "Stop" +$InformationPreference = "Continue" + Push-Location $PSScriptRoot $oldPath = $env:Path try @@ -67,12 +66,12 @@ try if($BuildSource) { - .\Build-Source.ps1 + .\Build-Source.ps1 -Configuration:$Configuration } if($BuildDocs) { - .\Build-Docs.ps1 + .\Build-Docs.ps1 -Configuration:$Configuration } } catch diff --git a/Build-Docs.ps1 b/Build-Docs.ps1 index 8c7def6578..48d3e3476a 100644 --- a/Build-Docs.ps1 +++ b/Build-Docs.ps1 @@ -5,10 +5,6 @@ .PARAMETER Configuration This sets the build configuration to use, default is "Release" though for inner loop development this may be set to "Debug" -.PARAMETER AllowVsPreReleases - Switch to enable use of Visual Studio Pre-Release versions. This is NEVER enabled for official production builds, however it is - useful when adding support for new versions during the pre-release stages. - .PARAMETER FullInit Performs a full initialization. A full initialization includes forcing a re-capture of the time stamp for local builds as well as writes details of the initialization to the information and verbose streams. @@ -54,7 +50,9 @@ function Get-FullBuildNumber # build number is used for the docs generation. # generate the CurrentVersionInfo.json file - Invoke-DotNet build ./BuildVersion.msbuildproj | Out-Null + Write-Information 'Generating CurrentVersionInfo.json' + + Invoke-External dotnet build ./BuildVersion.msbuildproj | Out-Null # Read in the generated JSON for use in PS $versionInfo = Get-Content ./CurrentVersionInfo.json | ConvertFrom-Json -AsHashTable @@ -73,15 +71,12 @@ try . ./repo-buildutils.ps1 $buildInfo = Initialize-BuildEnvironment -FullInit:$FullInit - $msBuildPropertyList = ConvertTo-PropertyList @{ - Configuration = $Configuration - } # make sure the supported tool is installed. - Invoke-DotNet tool install --global docfx --version $docFXToolVersion | Out-Null + Invoke-External dotnet tool install --global docfx --version $docFXToolVersion | Out-Null $docsOutputPath = $buildInfo['DocsOutputPath'] - Write-Verbose "Docs OutputPath: $docsOutputPath" + Write-Information "Docs OutputPath: $docsOutputPath" if(!$ServeDocs) { @@ -97,7 +92,7 @@ try } Write-Information "Cloning Docs repository" - Invoke-Git clone $buildInfo['OfficialGitRemoteUrl'] -b gh-pages $docsOutputPath -q + Invoke-External git clone $buildInfo['OfficialGitRemoteUrl'] -b gh-pages $docsOutputPath -q } # Delete everything in the docs output except the git folder so the result of applying changes @@ -106,7 +101,7 @@ try Get-ChildItem -Path $docsOutputPath -Exclude '.git' | remove-item -Recurse -Force -ProgressAction SilentlyContinue # Create a file to disable the default GitHub Pages use of JEKYLL as this uses docfx to generate the final - # HTML. [It is a least theoretically plausible that JEKYLL could handle some/all of the metadata files produced + # HTML. [It is at least theoretically plausible that JEKYLL could handle some/all of the metadata files produced # by DOCFX but it is not clear how much of the "build" stage would be lost if ONLY the metadata phase was used. # Thus, for now, this uses the docfx build phase.] "$([DateTime]::UtcNow.ToString('o'))" | Out-File -Path (Join-Path $docsOutputPath '.nojekyll') @@ -116,7 +111,7 @@ try try { Write-Information "Building docs [FullBuildNumber=$fullBuildNumber]" - Invoke-DocFX -m _buildVersion=$fullBuildNumber -o $docsOutputPath --warningsAsErrors + Invoke-External docfx '-m' _buildVersion=$fullBuildNumber '-o' $docsOutputPath } finally { @@ -130,7 +125,7 @@ try if($ShowDocs) { - Invoke-DocFx serve --open-browser $docsOutputPath + Invoke-External docfx serve '--open-browser' $docsOutputPath } } catch diff --git a/BuildVersion.msbuildproj b/BuildVersion.msbuildproj index c5f01af259..f41048b76c 100644 --- a/BuildVersion.msbuildproj +++ b/BuildVersion.msbuildproj @@ -14,6 +14,7 @@ + diff --git a/BuildVersion.xml b/BuildVersion.xml index 3e4e9c8e14..b0bf6dff51 100644 --- a/BuildVersion.xml +++ b/BuildVersion.xml @@ -1,6 +1,6 @@ diff --git a/Directory.Build.props b/Directory.Build.props index 6cd0cfacec..d2652a780b 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -54,6 +54,13 @@ + + + + true + + + diff --git a/IgnoredWords.dic b/IgnoredWords.dic index 82287020a3..3f5eb797e2 100644 --- a/IgnoredWords.dic +++ b/IgnoredWords.dic @@ -2,6 +2,7 @@ ABI Addr alloca anonymize +antlr api app apps @@ -12,6 +13,7 @@ Attribs AttributeSet baz binaryop +binlogs binop bitcode Blinky @@ -19,15 +21,19 @@ blockdiag blog bool buildbinoutput +buildtransitive builtinop byref +byval cibuild Cmp Config const +contentfiles Contributors crlf csharp +csproj de defacto dllimport @@ -45,6 +51,7 @@ func gh github Globalization +Hashtable Identifier inline inlined @@ -56,13 +63,17 @@ llvm llvmversion LValue marshalling +memcopy metadata Mips msbuild msg nav +noinline +nounwind nullability Nullable +optimizenone pages paren perf @@ -70,11 +81,13 @@ pointee Pre proj readonly +refactor repl repo RMW runtimes RValue +src struct structs Subrange @@ -89,6 +102,7 @@ undiscoverable userdefinedop Users usings +utils vcxproj versioned versioning diff --git a/Invoke-UnitTests.ps1 b/Invoke-UnitTests.ps1 index a396c1b896..48008100ba 100644 --- a/Invoke-UnitTests.ps1 +++ b/Invoke-UnitTests.ps1 @@ -22,7 +22,7 @@ try Push-Location $BuildInfo["SrcRootPath"] try { - Invoke-External dotnet test Ubiquity.NET.Llvm.slnx '-tl:off' '--logger:trx' '--no-build' '-s' '.\x64.runsettings' + Invoke-External dotnet test Ubiquity.NET.Llvm.slnx '-c' $Configuration '-tl:off' '--logger:trx' '--no-build' '-s' '.\x64.runsettings' } finally { diff --git a/PsModules/CommonBuild/CommonBuild.psd1 b/PsModules/CommonBuild/CommonBuild.psd1 index ef5a30da07..bc3cb74415 100644 --- a/PsModules/CommonBuild/CommonBuild.psd1 +++ b/PsModules/CommonBuild/CommonBuild.psd1 @@ -66,6 +66,7 @@ FunctionsToExport = @( 'Assert-CMakeList', 'Assert-OfficialGitRemote', 'Get-BuildVersionTag', + 'Assert-IsCMakeConfig', 'New-CMakeConfig', 'Invoke-GenerateCMakeConfig', 'Build-CmakeConfig', @@ -74,7 +75,10 @@ FunctionsToExport = @( 'Expand-ArchiveStream', 'Expand-StreamFromUri', 'Find-OnPath', + 'Get-BuildVersionTag', 'Get-CurrentBuildKind', + 'Get-GitRemotes', + 'Get-GitRemoteName', 'Get-GitHubReleases', 'Get-GitHubTaggedRelease', 'Initialize-CommonBuildEnvironment', diff --git a/PsModules/CommonBuild/CommonBuild.psm1 b/PsModules/CommonBuild/CommonBuild.psm1 index 3e9ad11b59..207d310d26 100644 --- a/PsModules/CommonBuild/CommonBuild.psm1 +++ b/PsModules/CommonBuild/CommonBuild.psm1 @@ -1,5 +1,6 @@ # This script is a generalized script entry point for module support that is easily cloned for other modules -# and is independent of the module's functionality. +# and is independent of the module's functionality. This is invocable using the PS module name qualifier +# syntax `/Get-ExportedFunctionNames` function Get-ExportedFunctionNames { @@ -26,7 +27,7 @@ function Get-ExportedFunctionNames } else { - Write-Information "found non-standard function mame '$name' in '$script'" + Write-Information "found non-standard function name '$name' in '$script'" } } } @@ -34,7 +35,7 @@ function Get-ExportedFunctionNames return $retVal } -# Exported from the module but NOT from the PSD1 list. Instead, you should use module qualifed name +# Exported from the module but NOT from the PSD1 list. Instead, you should use module qualified name # to access this function. It is only useful when updating the set of public functions exported # to generate the required 'FunctionsToExport' property of the PSD1 file. function Get-FunctionsToExport @@ -75,6 +76,13 @@ function Get-FunctionsToExport return $bldr.ToString() } +# force preferences to what is expected +# see: https://github.com/PowerShell/PowerShell/issues/4568 +# there is NO good solution to this beyond setting a global preference OR specifying the preference on EVERY CALL +# '`tis a silly thing' - The whole PS preferences settings is a nightmarish mess. +$InformationPreference = 'Continue' +$ErrorInformationPreference = 'Stop' + # get public/Private function definition files $Public = @( Get-ChildItem -Path (Join-path $PSScriptroot 'Public' '*.ps1') -ErrorAction SilentlyContinue ) $Private = @( Get-ChildItem -Path (Join-path $PSScriptroot 'Private' '*.ps1') -ErrorAction SilentlyContinue ) diff --git a/PsModules/CommonBuild/Debug-Module.ps1 b/PsModules/CommonBuild/Debug-Module.ps1 index 3185c4d73c..6077a37e96 100644 --- a/PsModules/CommonBuild/Debug-Module.ps1 +++ b/PsModules/CommonBuild/Debug-Module.ps1 @@ -1,5 +1,6 @@ # This script is used for debugging the module when using the # [Powershell Tools for VisualStudio 2022](https://marketplace.visualstudio.com/items?itemName=AdamRDriscoll.PowerShellToolsVS2022) +# It is MOST useful for computing and reporting the set of functions to export from this module for the PSD1 file. Import-Module $PSScriptRoot\CommonBuild.psd1 -Force -Verbose CommonBuild\Get-FunctionsToExport diff --git a/PsModules/CommonBuild/Public/ClassLike_CMakeConfig.ps1 b/PsModules/CommonBuild/Public/ClassLike_CMakeConfig.ps1 index 9451163f1d..6b71539d9e 100644 --- a/PsModules/CommonBuild/Public/ClassLike_CMakeConfig.ps1 +++ b/PsModules/CommonBuild/Public/ClassLike_CMakeConfig.ps1 @@ -64,15 +64,15 @@ function New-CMakeConfig($name, [string]$buildConfiguration, [hashtable]$buildIn .PARAMETER buildInfo Hashtable containing the standard build information. -.PARAMETER cmakrSrcRoot +.PARAMETER cmakeSrcRoot Root of the CMAKE source files to build #> # start with an empty hash table and build up from there... $self = @{} if($IsWindows) { - # TODO: Convert this to use NIJA for faster builds... [Maybe] - $self['Generator'] = 'Visual Studio 17 2022' + #$self['Generator'] = 'Visual Studio 17 2022' + $self['Generator'] = 'Ninja' } else { @@ -87,27 +87,35 @@ function New-CMakeConfig($name, [string]$buildConfiguration, [hashtable]$buildIn $self['CMakeCommandArgs'] = [System.Collections.ArrayList]@() $self['BuildCommandArgs'] = [System.Collections.ArrayList]@() $self['InheritEnvironments'] = [System.Collections.ArrayList]@() + $self['CMakeBuildVariables'] = @{} - if($IsWindows) + # single config generator; Requires setting the configuration type + # as a build var during generation (Otherwise, debug is assumed...) + if($self['Generator'] -ieq 'Ninja') { - # running on ARM64 is not tested or supported - # This might not be needed now that the build is auto configuring the "VCVARS" - # Ninja build might also remove the need for this... - if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture -eq "X64" ) - { - $self['CMakeCommandArgs'].Add('-Thost=x64') | Out-Null - $self['InheritEnvironments'].Add('msvc_x64_x64') | Out-Null - } - else - { - $self['InheritEnvironments'].Add('msvc_x64') | Out-Null - } - - # pass the /m switch to MSBUILD to enable parallel builds on all available CPU cores - $self['BuildCommandArgs'].Add('/m') | Out-Null + $self['CMakeBuildVariables']['CMAKE_BUILD_TYPE']=$self['ConfigurationType'] } - $self['CMakeBuildVariables'] = @{} + # Not needed with Ninja builds + #if($IsWindows) + #{ + # # running on ARM64 is not tested or supported + # # This might not be needed now that the build is auto configuring the "VCVARS" + # # Ninja build might also remove the need for this... + # if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture -eq "X64" ) + # { + # $self['CMakeCommandArgs'].Add('-Thost=x64') | Out-Null + # $self['InheritEnvironments'].Add('msvc_x64_x64') | Out-Null + # } + # else + # { + # $self['InheritEnvironments'].Add('msvc_x64') | Out-Null + # } + # + # # pass the /m switch to MSBUILD to enable parallel builds on all available CPU cores + # $self['BuildCommandArgs'].Add('/m') | Out-Null + #} + Assert-IsCMakeConfig $self return $self } @@ -125,7 +133,8 @@ function Invoke-GenerateCMakeConfig([hashtable]$self, [hashtable] $additionalBui # Construct full set of CMAKE args from fixed options and configuration variables $cmakeArgs = New-Object System.Collections.ArrayList - $cmakeArgs.Add("-G $($self['Generator'])" ) | Out-Null + $cmakeArgs.AddRange(@('-G', "$($self['Generator'])") ) | Out-Null + $cmakeArgs.AddRange(@('-B', "$($self['BuildRoot'])") ) | Out-Null foreach( $param in $self['CMakeCommandArgs'] ) { $cmakeArgs.Add( $param ) | Out-Null @@ -154,21 +163,10 @@ function Invoke-GenerateCMakeConfig([hashtable]$self, [hashtable] $additionalBui $cmakeArgs.Add( $self['SrcRoot'] ) | Out-Null Invoke-TimedBlock "CMAKE Generate" { - Push-Location $self['BuildRoot'] - try - { - Write-Information "cmake $cmakeArgs" - # Splat the array of args as distinct for external invoke - Invoke-External cmake @cmakeArgs - } - catch - { - throw - } - finally - { - Pop-Location - } + Write-Information "cmake $($cmakeArgs -join ' ')" + + # Splat the array of args as distinct elements for external invoke + Invoke-External cmake @cmakeArgs } } @@ -177,14 +175,25 @@ function Invoke-GenerateCMakeConfig([hashtable]$self, [hashtable] $additionalBui # see: https://github.com/PowerShell/PowerShell/issues/13637 New-Alias -Name Generate-CMakeConfig -Value Invoke-GenerateCMakeConfig -function Build-CmakeConfig([hashtable]$self) +function Build-CmakeConfig([hashtable]$self, $targets) { Assert-IsCMakeConfig $self + $cmakeArgs = [System.Collections.ArrayList]@('--build', "$($self['BuildRoot'])", '--config', "$($self['ConfigurationType'])") + if($targets) + { + $cmakeArgs.Add('-t') | Out-Null + $cmakeArgs.AddRange($targets) + } + + if($self['BuildCommandArgs'].Length -gt 0) + { + $cmakeArgs.AddRange( @('--', "$($self['BuildCommandArgs'])") ) + } + Invoke-TimedBlock "CMake Building $($self['Name'])" { - $cmakeArgs = @('--build', "$($self['BuildRoot'])", '--config', "$($self['ConfigurationType'])", '--', "$($self['BuildCommandArgs'])") - Write-Information "cmake $([string]::Join(' ', $cmakeArgs))" + Write-Information "cmake $($cmakeArgs -join ' ')" - # Splat the array of args as distinct for external invoke + # Splat the array of args as distinct items for external invoke Invoke-External cmake @cmakeArgs } } diff --git a/PsModules/CommonBuild/Public/Get-BuildVersionTag.ps1 b/PsModules/CommonBuild/Public/Get-BuildVersionTag.ps1 new file mode 100644 index 0000000000..974aa80753 --- /dev/null +++ b/PsModules/CommonBuild/Public/Get-BuildVersionTag.ps1 @@ -0,0 +1,42 @@ +function Get-BuildVersionTag +{ +<# +.SYNOPSIS + Retrieves the git tag name to apply for this build. + +.DESCRIPTION + Reads the contents of the BuildVersion.xml file and generates a git + release tag name for the current build. + + This is a standalone function instead of a property on the build + information Hashtable so that it is always dynamically evaluated + based on the current contents of the BuildVersion.XML file as that + is generally updated when this is needed. + +.PARAMETER buildInfo + Hashtable containing Information about the repository and build. This function + requires the presence of a 'RepoRootPath' property to indicate the root of the + repository containing the BuildVersion.xml file. +#> + [OutputType([string])] + Param($buildInfo) + + # determine release tag from the build version XML file in the branch + $buildVersionXml = (Get-BuildVersionXML $buildInfo) + $buildVersionData = $buildVersionXml.BuildVersionData + $preReleaseSuffix="" + if($buildVersionData.PSObject.Properties['PreReleaseName']) + { + $preReleaseSuffix = "-$($buildVersionData.PreReleaseName)" + if($buildVersionData.PSObject.Properties['PreReleaseNumber']) + { + $preReleaseSuffix += ".$($buildVersionData.PreReleaseNumber)" + if($buildVersionData.PSObject.Properties['PreReleaseFix']) + { + $preReleaseSuffix += ".$($buildVersionData.PreReleaseFix)" + } + } + } + + return "v$($buildVersionData.BuildMajor).$($buildVersionData.BuildMinor).$($buildVersionData.BuildPatch)$preReleaseSuffix" +} diff --git a/PsModules/CommonBuild/Public/Get-GitRemotes.ps1 b/PsModules/CommonBuild/Public/Get-GitRemotes.ps1 new file mode 100644 index 0000000000..b8dced212e --- /dev/null +++ b/PsModules/CommonBuild/Public/Get-GitRemotes.ps1 @@ -0,0 +1,42 @@ +function Get-GitRemotes +{ + param($opName = "push") + $remoteLines = ((git remote -v) -split [System.Environment]::NewLine) + $retVal = [System.Collections.ArrayList]@() + foreach($remoteLine in $remoteLines) + { + if( $remoteLine -match '([^\s]+)\s+([^\s]+)\s+\(([^\s]+)\)') + { + if($matches[3] -eq $opName) + { + $hashTable =@{ + Name = $matches[1] + Uri = $matches[2] + Op = $matches[3] + } + + $retVal.Add($hashTable) | Out-Null + } + } + else + { + throw "'$remoteLine' - does not match pattern for a valid git remote..." + } + } + + return $retVal +} + +function Get-GitRemoteName +{ + param([hashtable]$bldInfo, [ValidateSet('official', 'fork')] $kind) + + if($kind -eq 'official') + { + Get-GitRemotes | ? {$_.Uri -eq $bldInfo['OfficialGitRemoteUrl']} | Select -ExpandProperty Name + } + else + { + Get-GitRemotes | ? {$_.Uri -ne $bldInfo['OfficialGitRemoteUrl']} | Select -ExpandProperty Name + } +} diff --git a/PsModules/CommonBuild/Public/Initialize-CommonBuildEnvironment.ps1 b/PsModules/CommonBuild/Public/Initialize-CommonBuildEnvironment.ps1 index 64b0ac1749..3439c74aa3 100644 --- a/PsModules/CommonBuild/Public/Initialize-CommonBuildEnvironment.ps1 +++ b/PsModules/CommonBuild/Public/Initialize-CommonBuildEnvironment.ps1 @@ -74,7 +74,7 @@ function Initialize-CommonBuildEnvironment # for FullInit force a re-capture of the time stamp. if(!$env:BuildTime -or $FullInit) { - # for any automated builds use the ISO-8601 timetamp of the current commit + # for any automated builds use the ISO-8601 time stamp of the current commit if($currentBuildKind -ne [BuildKind]::LocalBuild) { $env:BuildTime = (git show -s --format=%cI) @@ -85,21 +85,26 @@ function Initialize-CommonBuildEnvironment } } - # On Windows setup the equivalent of a Developer prompt and ensure - # that CMAKE and MSBUILD are available on the path. + # On Windows setup the equivalent of a Developer prompt. # - # other platform runners may have different defaulted paths etc... + # Other platform runners may have different defaulted paths etc... # to account for here. if ($IsWindows) { - Write-Information "Configuring VS dev tools support" + Write-Verbose "Configuring VS tools support" # For windows force a common VS tools prompt; # Sadly most of this is undocumented and found from various sites # spelunking the process. This isn't as bad as it might seem as the # installer will create persistent use of this as a Windows Terminal # "profile" and the actual command is exposed. - winget install Microsoft.VisualStudio.Locator | Out-Null + if($null -eq (Find-OnPath vswhere)) + { + # NOTE: automated builds in Github do NOT include WinGet (for reasons unknown) + # However, they do contain VSWHERE so should not hit this. + winget install Microsoft.VisualStudio.Locator | Out-Null + } + $vsShellModulePath = vswhere -find **\Microsoft.VisualStudio.DevShell.dll $vsToolsArch = Get-VsArchitecture if(!$vsShellModulePath) diff --git a/PsModules/CommonBuild/Public/Show-FullBuildInfo.ps1 b/PsModules/CommonBuild/Public/Show-FullBuildInfo.ps1 index 2f9ace6b5f..08ad399d46 100644 --- a/PsModules/CommonBuild/Public/Show-FullBuildInfo.ps1 +++ b/PsModules/CommonBuild/Public/Show-FullBuildInfo.ps1 @@ -17,10 +17,10 @@ function Show-FullBuildInfo Write-Information 'Build Info:' Write-Information ($buildInfo | Format-Table | Out-String) - Write-Information (dir env:Is* | Format-Table -Property Name, value | Out-String) - Write-Information (dir env:GITHUB* | Format-Table -Property Name, value | Out-String) Write-Information "BuildKind: $($buildInfo['CurrentBuildKind'])" Write-Information "CiBuildName: $env:CiBuildName" + Write-Information "env: Is*" + Write-Information (dir env:Is* | Format-Table -Property Name, value | Out-String) # This sort of detail is really only needed when solving problems with a runner Write-Verbose 'PATH:' @@ -31,4 +31,7 @@ function Show-FullBuildInfo Write-Verbose ".NET SDKs:" Write-Verbose (dotnet --list-sdks | Out-String) + + Write-Verbose "GITHUB vars" + Write-Verbose (dir env:GITHUB* | Format-Table -Property Name, value | Out-String) } diff --git a/docfx/Build-Docs.ps1 b/docfx/Build-Docs.ps1 deleted file mode 100644 index c13a2ecfbc..0000000000 --- a/docfx/Build-Docs.ps1 +++ /dev/null @@ -1,150 +0,0 @@ -<# -.SYNOPSIS - Builds the docs for this repository - -.PARAMETER Configuration - This sets the build configuration to use, default is "Release" though for inner loop development this may be set to "Debug" - -.PARAMETER AllowVsPreReleases - Switch to enable use of Visual Studio Pre-Release versions. This is NEVER enabled for official production builds, however it is - useful when adding support for new versions during the pre-release stages. - -.PARAMETER FullInit - Performs a full initialization. A full initialization includes forcing a re-capture of the time stamp for local builds - as well as writes details of the initialization to the information and verbose streams. - -.PARAMETER NoClone - Skip cloning of the docs repository. Useful for inner loop development where you only do the clone once when iterating on - doc updates. - -.PARAMETER ShowDocs - Show the docs via `docfx serve --open-browser ...`. This option is useful for inner loop development of the docs as it allows - opening a browser on the newly created docs for testing/checking the contents are produced correctly. - -.PARAMETER ServeDocs - Skips the docs build and implies ShowDocs to serve the current docs in the repo. This is useful after a previous - Build-All or similar validation on a local machine as that will also build the docs but won't show/serve them. -#> -Param( - [string]$Configuration="Release", - [switch]$AllowVsPreReleases, - [switch]$FullInit, - [switch]$NoClone, - [switch]$ShowDocs, - [switch]$ServeDocs -) - -function Invoke-DocFX -{ - docfx $args - if(!$?) - { - throw "Invoke of dotnet returned exit code: $LastExitCode" - } -} - -function Get-FullBuildNumber -{ - # docfx no longer supports the docfxconsole and insists on doing everything manually - # with the command line instead of within a project file... So do it the hard way... - - # First step is to generate a JSON file with the version information that comes - # from the MSBUILD tasks in the `CSemVer.Build.Tasks` NUGET package. To do that - # a no target project is used to capture the results of the versioning into a - # JSON file, then that file is read in to get the values for PS so that a consistent - # build number is used for the docs generation. - - # generate the CurrentVersionInfo.json file - Invoke-DotNet build ./BuildVersion.msbuildproj | Out-Null - - # Read in the generated JSON for use in PS - $versionInfo = Get-Content ./CurrentVersionInfo.json | ConvertFrom-Json -AsHashTable - return "$($versionInfo['FullBuildNumber'])" -} - -$docFXToolVersion = '2.78.3' - -$InformationPreference = 'Continue' -$ErrorInformationPreference = 'Stop' - -Push-Location $PSScriptRoot -$oldPath = $env:Path -try -{ - . ./repo-buildutils.ps1 - - $buildInfo = Initialize-BuildEnvironment -FullInit:$FullInit -AllowVsPreReleases:$AllowVsPreReleases - $msBuildPropertyList = ConvertTo-PropertyList @{ - Configuration = $Configuration - } - - # make sure the supported tool is installed. - Invoke-DotNet tool install --global docfx --version $docFXToolVersion | Out-Null - - $docsOutputPath = $buildInfo['DocsOutputPath'] - Write-Verbose "Docs OutputPath: $docsOutputPath" - - if(!$ServeDocs) - { - # Clone docs output location so it is available as a destination for the Generated docs content - # and the versioned docs links can function correctly for locally generated docs - if(!$NoClone -and !(Test-Path (Join-Path $docsOutputPath '.git') -PathType Container)) - { - # clean out existing docs content so that clone can work - if(Test-Path -PathType Container $docsOutputPath) - { - Write-Information "Cleaning $docsOutputPath" - Remove-Item -Path $docsOutputPath -Recurse -Force -ProgressAction SilentlyContinue - } - - Write-Information "Cloning Docs repository" - Invoke-Git clone $buildInfo['OfficialGitRemoteUrl'] -b gh-pages $docsOutputPath -q - } - - # Delete everything in the docs output except the git folder so the result of applying changes - # is ONLY what is generated by this script. - Write-Information "Cleaning $docsOutputPath" - Get-ChildItem -Path $docsOutputPath -Exclude '.git' | remove-item -Recurse -Force -ProgressAction SilentlyContinue - - # Create a file to disable the default Github Pages use of JEKYLL as this uses docfx to generate the final - # HTML. [It is a least theoretically plausible that JEKYLL could handle some/all of the metadata files produced - # by DOCFX but it is not clear how much of the "build" stage would be lost if ONLY the metadata phase was used. - # Thus, for now, this uses the docfx build phase.] - "$([DateTime]::UtcNow.ToString('o'))" | Out-File -Path (Join-Path $docsOutputPath '.nojekyll') - - $fullBuildNumber = Get-FullBuildNumber - push-location './docfx' - try - { - Write-Information "Building docs [FullBuildNumber=$fullBuildNumber]" - Invoke-DocFX -m _buildVersion=$fullBuildNumber -o $docsOutputPath --warningsAsErrors - } - finally - { - Pop-Location - } - } - else - { - $ShowDocs = $true - } - - if($ShowDocs) - { - Invoke-DocFx serve --open-browser $docsOutputPath - } -} -catch -{ - # Everything from the official docs to the various articles in the blog-sphere says this isn't needed - # and in fact it is redundant - They're all WRONG! By re-throwing the exception the original location - # information is retained and the error reported will include the correct source file and line number - # data for the error. Without this, only the error message is retained and the location information is - # Line 1, Column 1, of the outer most script file, which is, of course, completely useless. - throw -} -finally -{ - Pop-Location - $env:Path = $oldPath -} diff --git a/docfx/docfx.json b/docfx/docfx.json index 6828217a3b..bd8fcf7927 100644 --- a/docfx/docfx.json +++ b/docfx/docfx.json @@ -1,62 +1,65 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/docfx/main/schemas/docfx.schema.json", "metadata": [ + // [Sigh] - docfx tooling will process and report warnings etc.. on projects found BEFORE it + // deals with the exclusion list so a simple glob for all csproj files doesn't work. It creates + // warnings and returns a non-success value which stops the build. { // LLVM OO Wrappers library + "memberLayout":"separatePages", + "namespaceLayout":"nested", "src": [ { - "files": [ - "**.csproj" - ], - "src": "../src/Ubiquity.NET.Llvm" + "src": "../src/Ubiquity.NET.Llvm", + "files": ["**.csproj"] } ], "dest": "llvm/api" }, { // Runtime utilities library + "memberLayout":"separatePages", + "namespaceLayout":"nested", "src": [ { - "files": [ - "**.csproj" - ], - "src": "../src/Ubiquity.NET.Runtime.Utils" + "src": "../src/Ubiquity.NET.Runtime.Utils", + "files": ["**.csproj"] } ], "dest": "runtime-utils/api" }, { // Extensions library + "memberLayout":"separatePages", + "namespaceLayout":"nested", "src": [ { - "files": [ - "**.csproj" - ], - "src": "../src/Ubiquity.NET.Extensions" + "src": "../src/Ubiquity.NET.Extensions", + "files": ["**.csproj"] } ], "dest": "extensions/api" }, { // ANTLR Utilities library + "memberLayout":"separatePages", + "namespaceLayout":"nested", "src": [ { - "files": [ - "**.csproj" - ], - "src": "../src/Ubiquity.NET.ANTLR.Utils" + "src": "../src/Ubiquity.NET.ANTLR.Utils", + "files": ["**.csproj"] } ], "dest": "antlr-utils/api" }, { // Interop helpers library + "memberLayout":"separatePages", + "namespaceLayout":"nested", "src": [ { - "files": [ - "**.csproj" - ], - "src": "../src/Ubiquity.NET.InteropHelpers" + "src": "../src/Ubiquity.NET.InteropHelpers", + "files": ["**.csproj"] } ], "dest": "interop-helpers/api" @@ -68,10 +71,10 @@ "llvm/api/llvm-xref.yml", "https://learn.microsoft.com/en-us/dotnet/.xrefmap.json" ], + // NOTE: Unless overridden by a "src" key, All File paths are relative to the location of this docfx.json file "content": [ { // Root of the site; only uses the index and TOC explicitly named (NO GLOBS to confuse things!) - // NOTE: File paths are relative to the location of this docfx.json file "files": [ "index.md", "toc.yml" @@ -79,11 +82,9 @@ }, { // LLVM project additional content, Includes the generated metadata API folder - // NOTE: File paths are relative to the location of this file "files": [ "llvm/**.{md,yml}" ], - "dest": "llvm", // Exclude the namespace overwrites and XREF maps as they are listed explicitly elsewhere "exclude": [ "**/namespaces/**.md", @@ -110,12 +111,11 @@ ] }, { - // ANTLR Utils project additional content, Includes the generated metadata API folder + // Runtime Utils project additional content, Includes the generated metadata API folder // NOTE: File paths are relative to the location of this file "files": [ - "antlr-utils/**.{md,yml}" + "runtime-utils/**.{md,yml}" ], - "dest": "antlr-utils", // Exclude the namespace overwrites and XREF maps as they are listed explicitly elsewhere "exclude": [ "**/namespaces/**.md", @@ -124,11 +124,9 @@ }, { // extensions project additional content, Includes the generated metadata API folder - // NOTE: File paths are relative to the location of this file "files": [ "extensions/**.{md,yml}" ], - "dest": "extensions", // Exclude the namespace overwrites and XREF maps as they are listed explicitly elsewhere "exclude": [ "**/namespaces/**.md", @@ -136,12 +134,10 @@ ] }, { - // InteropHelpers project additional content, Includes the generated metadata API folder - // NOTE: File paths are relative to the location of this file + // ANTLR Utils project additional content, Includes the generated metadata API folder "files": [ - "interop-helpers/**.{md,yml}" + "antlr-utils/**.{md,yml}" ], - "dest": "interop-helpers", // Exclude the namespace overwrites and XREF maps as they are listed explicitly elsewhere "exclude": [ "**/namespaces/**.md", @@ -149,12 +145,10 @@ ] }, { - // Runtime Utils project additional content, Includes the generated metadata API folder - // NOTE: File paths are relative to the location of this file + // InteropHelpers project additional content, Includes the generated metadata API folder "files": [ - "runtime-utils/**.{md,yml}" + "interop-helpers/**.{md,yml}" ], - "dest": "runtime-utils", // Exclude the namespace overwrites and XREF maps as they are listed explicitly elsewhere "exclude": [ "**/namespaces/**.md", @@ -173,7 +167,7 @@ }, { // LVM library samples specific resources - // TODO: Move the samples folder so this is included above + // FUTURE: Move the samples folder so this is included above "files": [ "**.png", "**.svg" @@ -201,7 +195,7 @@ "globalMetadata": { "_appTitle": "Ubiquity.NET", "_appFooter": "Copyright (C) 2017-2025, Ubiquity.NET Contributors", - "_appLogoPath": "DragonSharp48x48.png", // TODO: change this to something more generic... + "_appLogoPath": "llvm/DragonSharp48x48.png", // TODO: change this to something more generic... "_disableBreadcrumb": true, "_gitContribute": { "repo": "https://github.com/UbiquityDotNET/Llvm.NET", diff --git a/docfx/documentation.msbuildproj b/docfx/documentation.msbuildproj index df933e5408..9b903b079c 100644 --- a/docfx/documentation.msbuildproj +++ b/docfx/documentation.msbuildproj @@ -4,10 +4,10 @@ @@ -17,7 +17,7 @@ - + @@ -26,34 +26,34 @@ - + - + - + - + - + diff --git a/docfx/llvm/api/.manifest b/docfx/llvm/api/.manifest deleted file mode 100644 index a6aece6aa6..0000000000 --- a/docfx/llvm/api/.manifest +++ /dev/null @@ -1,2523 +0,0 @@ -{ - "Ubiquity.NET.Llvm": "Ubiquity.NET.Llvm.yml", - "Ubiquity.NET.Llvm.ArchKind": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.AMDGCN": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Aarch64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Aarch64BE": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Aarch64_32": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Amd64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Amdil": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Amdil64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Arc": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Arm": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Armeb": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Avr": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.BPFeb": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.BPFel": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Csky": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.DXil": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Hexagon": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Hsail": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Hsail64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Kalimba": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Lanai": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.LoongArch32": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.LoongArch64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.M68k": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.MIPS": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.MIPS64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.MIPS64el": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.MIPSel": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.MSP430": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Nvptx": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Nvptx64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.PPC": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.PPC64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.PPC64le": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.PPCle": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.R600": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.RenderScript32": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.RenderScript64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.RiscV32": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.RiscV64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Shave": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Sparc": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Sparcel": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Sparcv9": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Spir": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Spir64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.SpirV": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.SpirV32": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.SpirV64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.SystemZ": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.TCE": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.TCEle": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Thumb": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Thumbeb": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.UnknownArch": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Ve": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Wasm32": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Wasm64": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.X86": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Xcore": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.ArchKind.Xtensa": "Ubiquity.NET.Llvm.ArchKind.yml", - "Ubiquity.NET.Llvm.Blake3Hash": "Ubiquity.NET.Llvm.Blake3Hash.yml", - "Ubiquity.NET.Llvm.Blake3Hash.HashCore(System.Byte[],System.Int32,System.Int32)": "Ubiquity.NET.Llvm.Blake3Hash.yml", - "Ubiquity.NET.Llvm.Blake3Hash.HashFinal": "Ubiquity.NET.Llvm.Blake3Hash.yml", - "Ubiquity.NET.Llvm.Blake3Hash.Initialize": "Ubiquity.NET.Llvm.Blake3Hash.yml", - "Ubiquity.NET.Llvm.ByteOrdering": "Ubiquity.NET.Llvm.ByteOrdering.yml", - "Ubiquity.NET.Llvm.ByteOrdering.BigEndian": "Ubiquity.NET.Llvm.ByteOrdering.yml", - "Ubiquity.NET.Llvm.ByteOrdering.LittleEndian": "Ubiquity.NET.Llvm.ByteOrdering.yml", - "Ubiquity.NET.Llvm.CodeGenFileKind": "Ubiquity.NET.Llvm.CodeGenFileKind.yml", - "Ubiquity.NET.Llvm.CodeGenFileKind.AssemblySource": "Ubiquity.NET.Llvm.CodeGenFileKind.yml", - "Ubiquity.NET.Llvm.CodeGenFileKind.ObjectFile": "Ubiquity.NET.Llvm.CodeGenFileKind.yml", - "Ubiquity.NET.Llvm.CodeGenOpt": "Ubiquity.NET.Llvm.CodeGenOpt.yml", - "Ubiquity.NET.Llvm.CodeGenOpt.Aggressive": "Ubiquity.NET.Llvm.CodeGenOpt.yml", - "Ubiquity.NET.Llvm.CodeGenOpt.Default": "Ubiquity.NET.Llvm.CodeGenOpt.yml", - "Ubiquity.NET.Llvm.CodeGenOpt.Less": "Ubiquity.NET.Llvm.CodeGenOpt.yml", - "Ubiquity.NET.Llvm.CodeGenOpt.None": "Ubiquity.NET.Llvm.CodeGenOpt.yml", - "Ubiquity.NET.Llvm.CodeGenTarget": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.AArch64": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.AMDGPU": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.ARM": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.All": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.BPF": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.Hexagon": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.Lanai": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.MIPS": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.MSP430": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.Native": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.NvidiaPTX": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.PowerPC": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.RISCV": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.Sparc": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.SystemZ": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.WebAssembly": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.X86": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeGenTarget.XCore": "Ubiquity.NET.Llvm.CodeGenTarget.yml", - "Ubiquity.NET.Llvm.CodeModel": "Ubiquity.NET.Llvm.CodeModel.yml", - "Ubiquity.NET.Llvm.CodeModel.Default": "Ubiquity.NET.Llvm.CodeModel.yml", - "Ubiquity.NET.Llvm.CodeModel.JitDefault": "Ubiquity.NET.Llvm.CodeModel.yml", - "Ubiquity.NET.Llvm.CodeModel.Kernel": "Ubiquity.NET.Llvm.CodeModel.yml", - "Ubiquity.NET.Llvm.CodeModel.Large": "Ubiquity.NET.Llvm.CodeModel.yml", - "Ubiquity.NET.Llvm.CodeModel.Medium": "Ubiquity.NET.Llvm.CodeModel.yml", - "Ubiquity.NET.Llvm.CodeModel.Small": "Ubiquity.NET.Llvm.CodeModel.yml", - "Ubiquity.NET.Llvm.CodeModel.Tiny": "Ubiquity.NET.Llvm.CodeModel.yml", - "Ubiquity.NET.Llvm.Comdat": "Ubiquity.NET.Llvm.Comdat.yml", - "Ubiquity.NET.Llvm.Comdat.Equals(Ubiquity.NET.Llvm.Comdat)": "Ubiquity.NET.Llvm.Comdat.yml", - "Ubiquity.NET.Llvm.Comdat.GetHashCode": "Ubiquity.NET.Llvm.Comdat.yml", - "Ubiquity.NET.Llvm.Comdat.IsNull": "Ubiquity.NET.Llvm.Comdat.yml", - "Ubiquity.NET.Llvm.Comdat.Kind": "Ubiquity.NET.Llvm.Comdat.yml", - "Ubiquity.NET.Llvm.Comdat.Name": "Ubiquity.NET.Llvm.Comdat.yml", - "Ubiquity.NET.Llvm.ComdatCollection": "Ubiquity.NET.Llvm.ComdatCollection.yml", - "Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate(System.String,Ubiquity.NET.Llvm.ComdatKind)": "Ubiquity.NET.Llvm.ComdatCollection.yml", - "Ubiquity.NET.Llvm.ComdatCollection.Clear": "Ubiquity.NET.Llvm.ComdatCollection.yml", - "Ubiquity.NET.Llvm.ComdatCollection.Contains(System.String)": "Ubiquity.NET.Llvm.ComdatCollection.yml", - "Ubiquity.NET.Llvm.ComdatCollection.Count": "Ubiquity.NET.Llvm.ComdatCollection.yml", - "Ubiquity.NET.Llvm.ComdatCollection.Item(System.String)": "Ubiquity.NET.Llvm.ComdatCollection.yml", - "Ubiquity.NET.Llvm.ComdatCollection.Remove(System.String)": "Ubiquity.NET.Llvm.ComdatCollection.yml", - "Ubiquity.NET.Llvm.ComdatCollection.TryGetValue(System.String,Ubiquity.NET.Llvm.Comdat@)": "Ubiquity.NET.Llvm.ComdatCollection.yml", - "Ubiquity.NET.Llvm.ComdatKind": "Ubiquity.NET.Llvm.ComdatKind.yml", - "Ubiquity.NET.Llvm.ComdatKind.Any": "Ubiquity.NET.Llvm.ComdatKind.yml", - "Ubiquity.NET.Llvm.ComdatKind.ExactMatch": "Ubiquity.NET.Llvm.ComdatKind.yml", - "Ubiquity.NET.Llvm.ComdatKind.Largest": "Ubiquity.NET.Llvm.ComdatKind.yml", - "Ubiquity.NET.Llvm.ComdatKind.NoDuplicates": "Ubiquity.NET.Llvm.ComdatKind.yml", - "Ubiquity.NET.Llvm.ComdatKind.SameSize": "Ubiquity.NET.Llvm.ComdatKind.yml", - "Ubiquity.NET.Llvm.Context": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.#ctor": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.BoolType": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateAttribute(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateAttribute(System.String,System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateBasicBlock(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateBitcodeModule": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateBitcodeModule(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.Boolean)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.Byte)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.Double)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.Int16)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.Int32)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.Int64)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.SByte)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.Single)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt16)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt32)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt32,System.UInt64,System.Boolean)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt64)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstantString(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstantString(System.String,System.Boolean)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant})": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}})": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}})": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateMDNode(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateMetadataString(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant})": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateStructType(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.DiscardValueName": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Dispose": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.DoubleType": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Equals(System.Object)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.Context)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.IContext)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Float128Type": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.FloatType": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.GetHashCode": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.GetIntType(System.UInt32)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.GetMDKindId(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.HalfFloatType": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Int128Type": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Int16Type": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Int32Type": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Int64Type": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.Int8Type": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.IsDisposed": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.MetadataType": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.OpenBinary(System.String)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.PpcFloat128Type": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction)": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.TokenType": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.VoidType": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.Context.X86Float80Type": "Ubiquity.NET.Llvm.Context.yml", - "Ubiquity.NET.Llvm.DataLayout": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.Dispose": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.Endianness": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.Equals(System.Object)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.DataLayout)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.IDataLayout)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.GetHashCode": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.IsDisposed": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.PointerSize": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.PointerSize(System.UInt32)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DataLayout.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@)": "Ubiquity.NET.Llvm.DataLayout.yml", - "Ubiquity.NET.Llvm.DebugInfo": "Ubiquity.NET.Llvm.DebugInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBasicType": "Ubiquity.NET.Llvm.DebugInfo.DIBasicType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding": "Ubiquity.NET.Llvm.DebugInfo.DIBasicType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.#ctor(Ubiquity.NET.Llvm.Module)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode})": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[])": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.Boolean,System.String,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.String,System.Boolean,System.String,System.UInt32,System.String,System.String)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression(System.UInt64)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIEnumerator},Ubiquity.NET.Llvm.DebugInfo.DIType)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue(System.String,System.Int64,System.Boolean)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.ExpressionOp})": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[])": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(System.String)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(System.String,System.String)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean,Ubiquity.NET.Llvm.Values.Function)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression(Ubiquity.NET.Llvm.DebugInfo.DINode,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.Boolean)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt64,System.UInt32,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType(Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType(Ubiquity.NET.Llvm.DebugInfo.Tag,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.String)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[])": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange(System.Int64,System.Int64)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType})": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType})": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType[])": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIFile)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType})": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[])": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,System.String)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINodeArray)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINode[])": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode})": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[])": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish(Ubiquity.NET.Llvm.DebugInfo.DISubProgram)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode})": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType})": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[])": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule": "Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName": "Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompositeType": "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType": "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator": "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements": "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier": "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters": "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder": "Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray": "Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType": "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType": "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType": "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant": "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData": "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty": "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits": "Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIEnumerator": "Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name": "Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIExpression": "Ubiquity.NET.Llvm.DebugInfo.DIExpression.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIFile": "Ubiquity.NET.Llvm.DebugInfo.DIFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum": "Ubiquity.NET.Llvm.DebugInfo.DIFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory": "Ubiquity.NET.Llvm.DebugInfo.DIFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName": "Ubiquity.NET.Llvm.DebugInfo.DIFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIFile.Path": "Ubiquity.NET.Llvm.DebugInfo.DIFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIFile.Source": "Ubiquity.NET.Llvm.DebugInfo.DIFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable": "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName": "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName": "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration": "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression": "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression": "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable": "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray": "Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity": "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity": "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File": "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name": "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope": "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray": "Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock": "Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase": "Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile": "Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocalScope": "Ubiquity.NET.Llvm.DebugInfo.DILocalScope.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope": "Ubiquity.NET.Llvm.DebugInfo.DILocalScope.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope": "Ubiquity.NET.Llvm.DebugInfo.DILocalScope.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram": "Ubiquity.NET.Llvm.DebugInfo.DILocalScope.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocalVariable": "Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope": "Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray": "Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope)": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation)": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation.Column": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation.Line": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString": "Ubiquity.NET.Llvm.DebugInfo.DILocation.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIMacro": "Ubiquity.NET.Llvm.DebugInfo.DIMacro.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name": "Ubiquity.NET.Llvm.DebugInfo.DIMacro.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value": "Ubiquity.NET.Llvm.DebugInfo.DIMacro.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIMacroFile": "Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements": "Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File": "Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIMacroNode": "Ubiquity.NET.Llvm.DebugInfo.DIMacroNode.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray": "Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIModule": "Ubiquity.NET.Llvm.DebugInfo.DIModule.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros": "Ubiquity.NET.Llvm.DebugInfo.DIModule.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath": "Ubiquity.NET.Llvm.DebugInfo.DIModule.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIModule.Name": "Ubiquity.NET.Llvm.DebugInfo.DIModule.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope": "Ubiquity.NET.Llvm.DebugInfo.DIModule.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot": "Ubiquity.NET.Llvm.DebugInfo.DIModule.yml", - "Ubiquity.NET.Llvm.DebugInfo.DINamespace": "Ubiquity.NET.Llvm.DebugInfo.DINamespace.yml", - "Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name": "Ubiquity.NET.Llvm.DebugInfo.DINamespace.yml", - "Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope": "Ubiquity.NET.Llvm.DebugInfo.DINamespace.yml", - "Ubiquity.NET.Llvm.DebugInfo.DINode": "Ubiquity.NET.Llvm.DebugInfo.DINode.yml", - "Ubiquity.NET.Llvm.DebugInfo.DINode.Tag": "Ubiquity.NET.Llvm.DebugInfo.DINode.yml", - "Ubiquity.NET.Llvm.DebugInfo.DINodeArray": "Ubiquity.NET.Llvm.DebugInfo.DINodeArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty": "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File": "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName": "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name": "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName": "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type": "Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIScope": "Ubiquity.NET.Llvm.DebugInfo.DIScope.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIScope.File": "Ubiquity.NET.Llvm.DebugInfo.DIScope.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIScope.Name": "Ubiquity.NET.Llvm.DebugInfo.DIScope.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope": "Ubiquity.NET.Llvm.DebugInfo.DIScope.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIScopeArray": "Ubiquity.NET.Llvm.DebugInfo.DIScopeArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes(Ubiquity.NET.Llvm.Values.Function)": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables": "Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubRange": "Ubiquity.NET.Llvm.DebugInfo.DISubRange.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount": "Ubiquity.NET.Llvm.DebugInfo.DISubRange.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound": "Ubiquity.NET.Llvm.DebugInfo.DISubRange.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount": "Ubiquity.NET.Llvm.DebugInfo.DISubRange.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubroutineType": "Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray": "Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter": "Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.yml", - "Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name": "Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.yml", - "Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type": "Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.yml", - "Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray": "Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter": "Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter.yml", - "Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter": "Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.yml", - "Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue``1": "Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIType": "Ubiquity.NET.Llvm.DebugInfo.DIType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment": "Ubiquity.NET.Llvm.DebugInfo.DIType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset": "Ubiquity.NET.Llvm.DebugInfo.DIType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize": "Ubiquity.NET.Llvm.DebugInfo.DIType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags": "Ubiquity.NET.Llvm.DebugInfo.DIType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIType.Line": "Ubiquity.NET.Llvm.DebugInfo.DIType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIType.Name": "Ubiquity.NET.Llvm.DebugInfo.DIType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIType.Scope": "Ubiquity.NET.Llvm.DebugInfo.DIType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DITypeArray": "Ubiquity.NET.Llvm.DebugInfo.DITypeArray.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIVariable": "Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType": "Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIVariable.File": "Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line": "Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name": "Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope": "Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary(Ubiquity.NET.Llvm.IDataLayout,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@)": "Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugBasicType": "Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind)": "Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType": "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.#ctor(Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[])": "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg": "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes": "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType": "Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AccessibilityMask": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AppleBlock": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Artificial": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BigEndian": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BitField": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.EnumClass": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Explicit": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.FixedEnum": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ForwardDeclaration": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IndirectVirtualBase": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IntroducedVirtual": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LValueReference": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LittleEndian": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.MultipleInheritance": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NoReturn": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NonTrivial": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.None": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjcClassComplete": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjectPointer": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Private": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Protected": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Prototyped": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.PtrToMemberRep": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Public": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.RValueReference": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Reserved": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.SingleInheritance": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.StaticMember": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Thunk": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByReference": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByValue": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Vector": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Virtual": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.VirtualInheritance": "Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.#ctor(System.UInt32,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout)": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.#ctor(System.UInt64,System.UInt32,System.UInt64)": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize": "Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType": "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.String,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType)": "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.String,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace": "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType": "Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugRecord": "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull": "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord": "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord": "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString": "Ubiquity.NET.Llvm.DebugInfo.DebugRecord.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,System.Nullable{System.UInt32},System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType},System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo})": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Nullable{System.UInt32},System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName": "Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType": "Ubiquity.NET.Llvm.DebugInfo.DebugType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType.Create``2(``0,``1)": "Ubiquity.NET.Llvm.DebugInfo.DebugType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType})": "Ubiquity.NET.Llvm.DebugInfo.DebugType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugType`2.op_Implicit(Ubiquity.NET.Llvm.DebugInfo.DebugType{`0,`1})~`1": "Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType": "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo})": "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers": "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque": "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members": "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name": "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo})": "Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ASCII": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Address": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Boolean": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ComplexFloat": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.DecimalFloat": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Edited": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Float": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.HiUser": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ImaginaryFloat": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Invalid": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.LoUser": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.NumericString": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.PackedDecimal": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Signed": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedChar": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedFixed": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UCS": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UTF": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Unsigned": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedChar": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedFixed": "Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind": "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.DebugDirectivesOnly": "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.Full": "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.LineTablesOnly": "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.None": "Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Abs": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Addr": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.And": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.BitPiece": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bra": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg0": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg1": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg10": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg11": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg12": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg13": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg14": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg15": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg16": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg17": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg18": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg19": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg2": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg20": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg21": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg22": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg23": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg24": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg25": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg26": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg27": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg28": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg29": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg3": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg30": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg31": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg4": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg5": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg6": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg7": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg8": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg9": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bregx": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call2": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call4": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallFrameCFA": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallRef": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1s": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1u": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2s": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2u": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4s": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4u": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8s": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8u": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Consts": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Constu": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Deref": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.DerefSize": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Div": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Drop": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Dup": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Eq": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Fbreg": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.FormTlsAddress": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ge": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuAddrIndex": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuConstIndex": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuPushTlsAddress": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Gt": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.ImplicitValue": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Invalid": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Le": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit0": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit1": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit10": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit11": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit12": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit13": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit14": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit15": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit16": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit17": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit18": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit19": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit2": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit20": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit21": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit22": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit23": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit24": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit25": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit26": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit27": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit28": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit29": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit3": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit30": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit31": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit4": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit5": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit6": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit7": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit8": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit9": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lt": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Minus": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mod": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mul": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ne": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Neg": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Nop": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Not": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Or": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Over": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Pick": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Piece": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Plus": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PlusUconst": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PushObjectAddress": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg0": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg1": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg10": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg11": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg12": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg13": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg14": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg15": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg16": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg17": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg18": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg19": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg2": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg20": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg21": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg22": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg23": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg24": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg25": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg26": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg27": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg28": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg29": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg3": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg30": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg31": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg4": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg5": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg6": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg7": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg8": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg9": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Regx": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Rot": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shl": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shr": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shra": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Skip": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.StackValue": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Swap": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xderef": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.XderefSize": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xor": "Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml", - "Ubiquity.NET.Llvm.DebugInfo.GenericDINode": "Ubiquity.NET.Llvm.DebugInfo.GenericDINode.yml", - "Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header": "Ubiquity.NET.Llvm.DebugInfo.GenericDINode.yml", - "Ubiquity.NET.Llvm.DebugInfo.IDebugType`2": "Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32)": "Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType": "Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType": "Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.yml", - "Ubiquity.NET.Llvm.DebugInfo.MacroKind": "Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.MacroKind.Define": "Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.MacroKind.EndFile": "Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.MacroKind.None": "Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.MacroKind.StartFile": "Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.MacroKind.Undefine": "Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.MacroKind.VendorExt": "Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml", - "Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag": "Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.yml", - "Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Const": "Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.yml", - "Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.None": "Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.yml", - "Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Volatile": "Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2005": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2012": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada83": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada95": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Assembly": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Bliss": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.BorlandDelphi": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C11": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C17": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C89": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C99": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus03": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus11": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus14": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CSharp": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol74": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol85": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp17": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp20": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CppForOpenCL": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Crystal": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.D": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Dylan": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran03": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran08": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran18": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran77": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran90": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran95": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL_ES": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Go": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GoogleRenderScript": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HIP": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HLSL": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Haskell": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HyLo": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Java": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Julia": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Kotlin": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Metal": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.MipsAssembler": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula2": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula3": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Mojo": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Move": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OCaml": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjC": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjCPlusPlus": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenCL": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenClCPP": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.PLI": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Pascal83": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Python": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.RenderScript": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ruby": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Rust": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.SYCL": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Swift": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.UPC": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Zig": "Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.AccessDeclaration": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.AppleProperty": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ArrayType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.AtomicType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.BaseType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiDynamicString": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiSet": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiString": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiVariant": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandProperty": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.CallSite": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.CallSiteParameter": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.CatchBlock": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ClassTemplate": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ClassType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.CoArrayType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.CommonBlock": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.CommonInclusion": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.CompileUnit": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Condition": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ConstType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Constant": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.DwarfProcedure": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.DynamicType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.EntryPoint": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.EnumerationType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Enumerator": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.FileType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.FormalParameter": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.FormatLabel": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Friend": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.FunctionTemplate": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSite": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSiteParameter": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.GNUFormalParameterPack": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameter": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameterPack": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.GenericSubrange": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ImmutableType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedDeclaration": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedModule": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedUnit": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Inheritance": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.InlinedSubroutine": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.InterfaceType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.LexicalBlock": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.MIPSLoop": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Member": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Module": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.NameList": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.NameListItem": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Namespace": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.None": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.PackedType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.PartialUnit": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.PointerToMemberType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.PointerType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.RValueReferenceType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ReferenceType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.RestrictType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.SetType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.SharedType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.SkeletonUnit": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.StringType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.StructureType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.SubProgram": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.SubrangeType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.SubroutineType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.TagLabel": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateAlias": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateTypeParameter": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateValueParameter": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.ThrownType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.TryBlock": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.TypeDef": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.TypeUnit": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.UnionType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedParameters": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Variable": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.Variant": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.VariantPart": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.VolatileType": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.Tag.WithStatement": "Ubiquity.NET.Llvm.DebugInfo.Tag.yml", - "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1": "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.yml", - "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count": "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.yml", - "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator": "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.yml", - "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32)": "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.yml", - "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple": "Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.yml", - "Ubiquity.NET.Llvm.DiagnosticInfo": "Ubiquity.NET.Llvm.DiagnosticInfo.yml", - "Ubiquity.NET.Llvm.DiagnosticInfo.Description": "Ubiquity.NET.Llvm.DiagnosticInfo.yml", - "Ubiquity.NET.Llvm.DiagnosticInfo.Severity": "Ubiquity.NET.Llvm.DiagnosticInfo.yml", - "Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction": "Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.yml", - "Ubiquity.NET.Llvm.DiagnosticSeverity": "Ubiquity.NET.Llvm.DiagnosticSeverity.yml", - "Ubiquity.NET.Llvm.DiagnosticSeverity.Error": "Ubiquity.NET.Llvm.DiagnosticSeverity.yml", - "Ubiquity.NET.Llvm.DiagnosticSeverity.Note": "Ubiquity.NET.Llvm.DiagnosticSeverity.yml", - "Ubiquity.NET.Llvm.DiagnosticSeverity.Remark": "Ubiquity.NET.Llvm.DiagnosticSeverity.yml", - "Ubiquity.NET.Llvm.DiagnosticSeverity.Warning": "Ubiquity.NET.Llvm.DiagnosticSeverity.yml", - "Ubiquity.NET.Llvm.Disassembler": "Ubiquity.NET.Llvm.Disassembler.yml", - "Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks)": "Ubiquity.NET.Llvm.Disassembler.yml", - "Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks)": "Ubiquity.NET.Llvm.Disassembler.yml", - "Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks)": "Ubiquity.NET.Llvm.Disassembler.yml", - "Ubiquity.NET.Llvm.Disassembler.Disassemble(System.ReadOnlySpan{System.Byte},System.UInt64,System.Int32)": "Ubiquity.NET.Llvm.Disassembler.yml", - "Ubiquity.NET.Llvm.Disassembler.Dispose": "Ubiquity.NET.Llvm.Disassembler.yml", - "Ubiquity.NET.Llvm.Disassembler.SetOptions(Ubiquity.NET.Llvm.DisassemblerOptions)": "Ubiquity.NET.Llvm.Disassembler.yml", - "Ubiquity.NET.Llvm.DisassemblerOptions": "Ubiquity.NET.Llvm.DisassemblerOptions.yml", - "Ubiquity.NET.Llvm.DisassemblerOptions.AsmPrinterVariant": "Ubiquity.NET.Llvm.DisassemblerOptions.yml", - "Ubiquity.NET.Llvm.DisassemblerOptions.Color": "Ubiquity.NET.Llvm.DisassemblerOptions.yml", - "Ubiquity.NET.Llvm.DisassemblerOptions.ImmediateAsHex": "Ubiquity.NET.Llvm.DisassemblerOptions.yml", - "Ubiquity.NET.Llvm.DisassemblerOptions.InstructionComments": "Ubiquity.NET.Llvm.DisassemblerOptions.yml", - "Ubiquity.NET.Llvm.DisassemblerOptions.None": "Ubiquity.NET.Llvm.DisassemblerOptions.yml", - "Ubiquity.NET.Llvm.DisassemblerOptions.PrintLatency": "Ubiquity.NET.Llvm.DisassemblerOptions.yml", - "Ubiquity.NET.Llvm.DisassemblerOptions.UseMarkup": "Ubiquity.NET.Llvm.DisassemblerOptions.yml", - "Ubiquity.NET.Llvm.DisposableObject": "Ubiquity.NET.Llvm.DisposableObject.yml", - "Ubiquity.NET.Llvm.DisposableObject.Dispose": "Ubiquity.NET.Llvm.DisposableObject.yml", - "Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean)": "Ubiquity.NET.Llvm.DisposableObject.yml", - "Ubiquity.NET.Llvm.DisposableObject.Finalize": "Ubiquity.NET.Llvm.DisposableObject.yml", - "Ubiquity.NET.Llvm.DisposableObject.IsDisposed": "Ubiquity.NET.Llvm.DisposableObject.yml", - "Ubiquity.NET.Llvm.EnvironmentKind": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Amplification": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Android": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.AnyHit": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.CODE16": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Callable": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.ClosestHit": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Compute": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.CoreCLR": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Cygnus": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Domain": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.EABI": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.EABIHF": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNU": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUABI64": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUABIN32": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUEABI": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHF": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHFT64": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUF32": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUF64": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUILP32": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUSF": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUT64": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.GNUX32": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Geometry": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Hull": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Intersection": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Itanium": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.LLVM": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Library": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MSVC": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MacABI": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Mesh": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Miss": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Musl": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MuslABI64": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MuslABIN32": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MuslEABI": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MuslEABIHF": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MuslF32": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MuslSF": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.MuslX32": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.OpenCL": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.OpenHOS": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.PAuthTest": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Pixel": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.RayGeneration": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Simulator": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Unknown": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.EnvironmentKind.Vertex": "Ubiquity.NET.Llvm.EnvironmentKind.yml", - "Ubiquity.NET.Llvm.ErrorInfo": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.ErrorInfo.Create(System.Exception)": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.ErrorInfo.Create(System.String)": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.ErrorInfo.Dispose": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.ErrorInfo.Failed": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.ErrorInfo.IsDisposed": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.ErrorInfo.Success": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.ErrorInfo.ToString": "Ubiquity.NET.Llvm.ErrorInfo.yml", - "Ubiquity.NET.Llvm.IContext": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.BoolType": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateBitcodeModule": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant})": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}})": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}})": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant})": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateStructType(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.DiscardValueName": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.DoubleType": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.Float128Type": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.FloatType": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.HalfFloatType": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.Int128Type": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.Int16Type": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.Int32Type": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.Int64Type": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.Int8Type": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.MetadataType": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.OpenBinary(System.String)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.PpcFloat128Type": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction)": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.TokenType": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.VoidType": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IContext.X86Float80Type": "Ubiquity.NET.Llvm.IContext.yml", - "Ubiquity.NET.Llvm.IDataLayout": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.Endianness": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.PointerSize": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString": "Ubiquity.NET.Llvm.IDataLayout.yml", - "Ubiquity.NET.Llvm.IDisassemblerCallbacks": "Ubiquity.NET.Llvm.IDisassemblerCallbacks.yml", - "Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr)": "Ubiquity.NET.Llvm.IDisassemblerCallbacks.yml", - "Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@)": "Ubiquity.NET.Llvm.IDisassemblerCallbacks.yml", - "Ubiquity.NET.Llvm.ILibLlvm": "Ubiquity.NET.Llvm.ILibLlvm.yml", - "Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration)": "Ubiquity.NET.Llvm.ILibLlvm.yml", - "Ubiquity.NET.Llvm.IModule": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Aliases": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Clone": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Comdats": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.CompileUnits": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Context": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}})": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[])": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.DataLayoutString": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Functions": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.GetAlias(System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[])": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[])": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Globals": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.IndirectFunctions": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Layout": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.ModuleFlags": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.ModuleInlineAsm": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Name": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.NamedMetadata": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.SourceFileName": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.TargetTriple": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[])": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[])": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[])": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.Verify(System.String@)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.WriteToBuffer": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.WriteToFile(System.String)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.WriteToString": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@)": "Ubiquity.NET.Llvm.IModule.yml", - "Ubiquity.NET.Llvm.IOperandCollection`1": "Ubiquity.NET.Llvm.IOperandCollection-1.yml", - "Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0)": "Ubiquity.NET.Llvm.IOperandCollection-1.yml", - "Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32)": "Ubiquity.NET.Llvm.IOperandCollection-1.yml", - "Ubiquity.NET.Llvm.IOperandCollection`1.Slice(System.Int32,System.Int32)": "Ubiquity.NET.Llvm.IOperandCollection-1.yml", - "Ubiquity.NET.Llvm.Instructions": "Ubiquity.NET.Llvm.Instructions.yml", - "Ubiquity.NET.Llvm.Instructions.AddressSpaceCast": "Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.yml", - "Ubiquity.NET.Llvm.Instructions.Alloca": "Ubiquity.NET.Llvm.Instructions.Alloca.yml", - "Ubiquity.NET.Llvm.Instructions.Alloca.ElementType": "Ubiquity.NET.Llvm.Instructions.Alloca.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg": "Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak": "Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMW": "Ubiquity.NET.Llvm.Instructions.AtomicRMW.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind": "Ubiquity.NET.Llvm.Instructions.AtomicRMW.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Add": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.And": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FAdd": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FSub": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Max": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Min": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Nand": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Or": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Sub": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMax": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMin": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xchg": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xor": "Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml", - "Ubiquity.NET.Llvm.Instructions.BinaryOperator": "Ubiquity.NET.Llvm.Instructions.BinaryOperator.yml", - "Ubiquity.NET.Llvm.Instructions.BitCast": "Ubiquity.NET.Llvm.Instructions.BitCast.yml", - "Ubiquity.NET.Llvm.Instructions.Branch": "Ubiquity.NET.Llvm.Instructions.Branch.yml", - "Ubiquity.NET.Llvm.Instructions.Branch.Condition": "Ubiquity.NET.Llvm.Instructions.Branch.yml", - "Ubiquity.NET.Llvm.Instructions.Branch.IsConditional": "Ubiquity.NET.Llvm.Instructions.Branch.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue)": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.Attributes": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction": "Ubiquity.NET.Llvm.Instructions.CallBr.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue)": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction": "Ubiquity.NET.Llvm.Instructions.CallInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.Cast": "Ubiquity.NET.Llvm.Instructions.Cast.yml", - "Ubiquity.NET.Llvm.Instructions.Cast.FromType": "Ubiquity.NET.Llvm.Instructions.Cast.yml", - "Ubiquity.NET.Llvm.Instructions.Cast.ToType": "Ubiquity.NET.Llvm.Instructions.Cast.yml", - "Ubiquity.NET.Llvm.Instructions.CatchPad": "Ubiquity.NET.Llvm.Instructions.CatchPad.yml", - "Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch": "Ubiquity.NET.Llvm.Instructions.CatchPad.yml", - "Ubiquity.NET.Llvm.Instructions.CatchReturn": "Ubiquity.NET.Llvm.Instructions.CatchReturn.yml", - "Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad": "Ubiquity.NET.Llvm.Instructions.CatchReturn.yml", - "Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad": "Ubiquity.NET.Llvm.Instructions.CatchReturn.yml", - "Ubiquity.NET.Llvm.Instructions.CatchSwitch": "Ubiquity.NET.Llvm.Instructions.CatchSwitch.yml", - "Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination": "Ubiquity.NET.Llvm.Instructions.CatchSwitch.yml", - "Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad": "Ubiquity.NET.Llvm.Instructions.CatchSwitch.yml", - "Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination": "Ubiquity.NET.Llvm.Instructions.CatchSwitch.yml", - "Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller": "Ubiquity.NET.Llvm.Instructions.CatchSwitch.yml", - "Ubiquity.NET.Llvm.Instructions.CleanupPad": "Ubiquity.NET.Llvm.Instructions.CleanupPad.yml", - "Ubiquity.NET.Llvm.Instructions.CleanupReturn": "Ubiquity.NET.Llvm.Instructions.CleanupReturn.yml", - "Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad": "Ubiquity.NET.Llvm.Instructions.CleanupReturn.yml", - "Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination": "Ubiquity.NET.Llvm.Instructions.CleanupReturn.yml", - "Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination": "Ubiquity.NET.Llvm.Instructions.CleanupReturn.yml", - "Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller": "Ubiquity.NET.Llvm.Instructions.CleanupReturn.yml", - "Ubiquity.NET.Llvm.Instructions.Cmp": "Ubiquity.NET.Llvm.Instructions.Cmp.yml", - "Ubiquity.NET.Llvm.Instructions.Cmp.Predicate": "Ubiquity.NET.Llvm.Instructions.Cmp.yml", - "Ubiquity.NET.Llvm.Instructions.DebugDeclare": "Ubiquity.NET.Llvm.Instructions.DebugDeclare.yml", - "Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic": "Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.yml", - "Ubiquity.NET.Llvm.Instructions.DebugLabel": "Ubiquity.NET.Llvm.Instructions.DebugLabel.yml", - "Ubiquity.NET.Llvm.Instructions.ExtractElement": "Ubiquity.NET.Llvm.Instructions.ExtractElement.yml", - "Ubiquity.NET.Llvm.Instructions.ExtractValue": "Ubiquity.NET.Llvm.Instructions.ExtractValue.yml", - "Ubiquity.NET.Llvm.Instructions.FCmp": "Ubiquity.NET.Llvm.Instructions.FCmp.yml", - "Ubiquity.NET.Llvm.Instructions.FPExt": "Ubiquity.NET.Llvm.Instructions.FPExt.yml", - "Ubiquity.NET.Llvm.Instructions.FPToSI": "Ubiquity.NET.Llvm.Instructions.FPToSI.yml", - "Ubiquity.NET.Llvm.Instructions.FPToUI": "Ubiquity.NET.Llvm.Instructions.FPToUI.yml", - "Ubiquity.NET.Llvm.Instructions.FPTrunc": "Ubiquity.NET.Llvm.Instructions.FPTrunc.yml", - "Ubiquity.NET.Llvm.Instructions.Fence": "Ubiquity.NET.Llvm.Instructions.Fence.yml", - "Ubiquity.NET.Llvm.Instructions.Freeze": "Ubiquity.NET.Llvm.Instructions.Freeze.yml", - "Ubiquity.NET.Llvm.Instructions.Freeze.Value": "Ubiquity.NET.Llvm.Instructions.Freeze.yml", - "Ubiquity.NET.Llvm.Instructions.FuncletPad": "Ubiquity.NET.Llvm.Instructions.FuncletPad.yml", - "Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands": "Ubiquity.NET.Llvm.Instructions.FuncletPad.yml", - "Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad": "Ubiquity.NET.Llvm.Instructions.FuncletPad.yml", - "Ubiquity.NET.Llvm.Instructions.GetElementPtr": "Ubiquity.NET.Llvm.Instructions.GetElementPtr.yml", - "Ubiquity.NET.Llvm.Instructions.IndirectBranch": "Ubiquity.NET.Llvm.Instructions.IndirectBranch.yml", - "Ubiquity.NET.Llvm.Instructions.InsertElement": "Ubiquity.NET.Llvm.Instructions.InsertElement.yml", - "Ubiquity.NET.Llvm.Instructions.InsertValue": "Ubiquity.NET.Llvm.Instructions.InsertValue.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.Alignment": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind)": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.Location": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.Opcode": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.Instruction.Successors": "Ubiquity.NET.Llvm.Instructions.Instruction.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor(Ubiquity.NET.Llvm.IContext)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor(Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.ConstantInt)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value})": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Value[])": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.IntPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.Predicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.RealPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[])": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue(Ubiquity.NET.Llvm.Values.Value,System.UInt32)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value})": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value})": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[])": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value})": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[])": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value})": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[])": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.UInt32)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Values.Value,System.UInt32)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.UInt32)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.IPointerType)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value},Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd(Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore(Ubiquity.NET.Llvm.Instructions.Instruction)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(Ubiquity.NET.Llvm.DebugInfo.DILocation)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,System.UInt32)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionExtensions": "Ubiquity.NET.Llvm.Instructions.InstructionExtensions.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32)": "Ubiquity.NET.Llvm.Instructions.InstructionExtensions.yml", - "Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean)": "Ubiquity.NET.Llvm.Instructions.InstructionExtensions.yml", - "Ubiquity.NET.Llvm.Instructions.IntCmp": "Ubiquity.NET.Llvm.Instructions.IntCmp.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.Equal": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.None": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.NotEqual": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThan": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThanOrEqual": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThan": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThanOrEqual": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterOrEqual": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterThan": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThan": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThanOrEqual": "Ubiquity.NET.Llvm.Instructions.IntPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.IntToPointer": "Ubiquity.NET.Llvm.Instructions.IntToPointer.yml", - "Ubiquity.NET.Llvm.Instructions.Intrinsic": "Ubiquity.NET.Llvm.Instructions.Intrinsic.yml", - "Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String)": "Ubiquity.NET.Llvm.Instructions.Intrinsic.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue)": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.Attributes": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction": "Ubiquity.NET.Llvm.Instructions.Invoke.yml", - "Ubiquity.NET.Llvm.Instructions.LandingPad": "Ubiquity.NET.Llvm.Instructions.LandingPad.yml", - "Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses": "Ubiquity.NET.Llvm.Instructions.LandingPad.yml", - "Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup": "Ubiquity.NET.Llvm.Instructions.LandingPad.yml", - "Ubiquity.NET.Llvm.Instructions.Load": "Ubiquity.NET.Llvm.Instructions.Load.yml", - "Ubiquity.NET.Llvm.Instructions.Load.IsVolatile": "Ubiquity.NET.Llvm.Instructions.Load.yml", - "Ubiquity.NET.Llvm.Instructions.MemCpy": "Ubiquity.NET.Llvm.Instructions.MemCpy.yml", - "Ubiquity.NET.Llvm.Instructions.MemIntrinsic": "Ubiquity.NET.Llvm.Instructions.MemIntrinsic.yml", - "Ubiquity.NET.Llvm.Instructions.MemMove": "Ubiquity.NET.Llvm.Instructions.MemMove.yml", - "Ubiquity.NET.Llvm.Instructions.MemSet": "Ubiquity.NET.Llvm.Instructions.MemSet.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.AShr": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Add": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.AddrSpaceCast": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Alloca": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.And": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.AtomicCmpXchg": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.AtomicRMW": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.BitCast": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Branch": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Call": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.CallBr": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.CatchPad": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.CatchRet": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.CatchSwitch": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.CleanupPad": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.CleanupRet": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.ExtractElement": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.ExtractValue": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FAdd": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FCmp": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FDiv": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FMul": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FPExt": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FPToSI": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FPToUI": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FPTrunc": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FRem": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.FSub": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Fence": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Freeze": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.GetElementPtr": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.ICmp": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.IndirectBranch": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.InsertElement": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.InsertValue": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.IntToPtr": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Invalid": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Invoke": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.LShr": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.LandingPad": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Load": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Mul": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Or": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Phi": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.PtrToInt": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Resume": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Return": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.SDiv": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.SIToFP": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.SRem": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Select": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Shl": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.ShuffleVector": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.SignExtend": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Store": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Sub": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Switch": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Trunc": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.UDiv": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.UIToFP": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.URem": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Unreachable": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.UserOp1": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.UserOp2": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.VaArg": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.Xor": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.OpCode.ZeroExtend": "Ubiquity.NET.Llvm.Instructions.OpCode.yml", - "Ubiquity.NET.Llvm.Instructions.PhiNode": "Ubiquity.NET.Llvm.Instructions.PhiNode.yml", - "Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock},System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}[])": "Ubiquity.NET.Llvm.Instructions.PhiNode.yml", - "Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.PhiNode.yml", - "Ubiquity.NET.Llvm.Instructions.PointerToInt": "Ubiquity.NET.Llvm.Instructions.PointerToInt.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.BadFcmpPredicate": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.BadIcmpPredicate": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.Equal": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.False": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.FirstFcmpPredicate": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.FirstIcmpPredicate": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.LastFcmpPredicate": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.LastIcmpPredicate": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.NotEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.Ordered": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThan": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThanOrEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThan": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThanOrEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndNotEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThan": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThanOrEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThan": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThanOrEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.True": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.Unordered": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedAndEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThan": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThanOrEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThan": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThanOrEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrNotEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThan": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThanOrEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThan": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThanOrEqual": "Ubiquity.NET.Llvm.Instructions.Predicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.False": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.Ordered": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndEqual": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThan": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThanOrEqual": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThan": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThanOrEqual": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndNotEqual": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.True": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.Unordered": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedAndEqual": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThan": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThanOrEqual": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThan": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThanOrEqual": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrNotEqual": "Ubiquity.NET.Llvm.Instructions.RealPredicate.yml", - "Ubiquity.NET.Llvm.Instructions.ResumeInstruction": "Ubiquity.NET.Llvm.Instructions.ResumeInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.ReturnInstruction": "Ubiquity.NET.Llvm.Instructions.ReturnInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.SIToFP": "Ubiquity.NET.Llvm.Instructions.SIToFP.yml", - "Ubiquity.NET.Llvm.Instructions.SelectInstruction": "Ubiquity.NET.Llvm.Instructions.SelectInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.ShuffleVector": "Ubiquity.NET.Llvm.Instructions.ShuffleVector.yml", - "Ubiquity.NET.Llvm.Instructions.SignExtend": "Ubiquity.NET.Llvm.Instructions.SignExtend.yml", - "Ubiquity.NET.Llvm.Instructions.Store": "Ubiquity.NET.Llvm.Instructions.Store.yml", - "Ubiquity.NET.Llvm.Instructions.Store.IsVolatile": "Ubiquity.NET.Llvm.Instructions.Store.yml", - "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection": "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.yml", - "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains(Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.yml", - "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count": "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.yml", - "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator": "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.yml", - "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Item(System.Int32)": "Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.yml", - "Ubiquity.NET.Llvm.Instructions.Switch": "Ubiquity.NET.Llvm.Instructions.Switch.yml", - "Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Instructions.Switch.yml", - "Ubiquity.NET.Llvm.Instructions.Switch.Default": "Ubiquity.NET.Llvm.Instructions.Switch.yml", - "Ubiquity.NET.Llvm.Instructions.Terminator": "Ubiquity.NET.Llvm.Instructions.Terminator.yml", - "Ubiquity.NET.Llvm.Instructions.Trunc": "Ubiquity.NET.Llvm.Instructions.Trunc.yml", - "Ubiquity.NET.Llvm.Instructions.UIToFP": "Ubiquity.NET.Llvm.Instructions.UIToFP.yml", - "Ubiquity.NET.Llvm.Instructions.UnaryInstruction": "Ubiquity.NET.Llvm.Instructions.UnaryInstruction.yml", - "Ubiquity.NET.Llvm.Instructions.UnaryOperator": "Ubiquity.NET.Llvm.Instructions.UnaryOperator.yml", - "Ubiquity.NET.Llvm.Instructions.Unreachable": "Ubiquity.NET.Llvm.Instructions.Unreachable.yml", - "Ubiquity.NET.Llvm.Instructions.UserOp1": "Ubiquity.NET.Llvm.Instructions.UserOp1.yml", - "Ubiquity.NET.Llvm.Instructions.UserOp2": "Ubiquity.NET.Llvm.Instructions.UserOp2.yml", - "Ubiquity.NET.Llvm.Instructions.VaArg": "Ubiquity.NET.Llvm.Instructions.VaArg.yml", - "Ubiquity.NET.Llvm.Instructions.ZeroExtend": "Ubiquity.NET.Llvm.Instructions.ZeroExtend.yml", - "Ubiquity.NET.Llvm.InternalCodeGeneratorException": "Ubiquity.NET.Llvm.InternalCodeGeneratorException.yml", - "Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor": "Ubiquity.NET.Llvm.InternalCodeGeneratorException.yml", - "Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor(System.String)": "Ubiquity.NET.Llvm.InternalCodeGeneratorException.yml", - "Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor(System.String,System.Exception)": "Ubiquity.NET.Llvm.InternalCodeGeneratorException.yml", - "Ubiquity.NET.Llvm.Library": "Ubiquity.NET.Llvm.Library.yml", - "Ubiquity.NET.Llvm.Library.Dispose": "Ubiquity.NET.Llvm.Library.yml", - "Ubiquity.NET.Llvm.Library.InitializeLLVM(Ubiquity.NET.Llvm.CodeGenTarget)": "Ubiquity.NET.Llvm.Library.yml", - "Ubiquity.NET.Llvm.Library.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration)": "Ubiquity.NET.Llvm.Library.yml", - "Ubiquity.NET.Llvm.MemoryBuffer": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.Byte*,Ubiquity.NET.InteropHelpers.size_t,Ubiquity.NET.InteropHelpers.LazyEncodedString,System.Boolean)": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.Byte[],System.String)": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.String)": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.Dispose": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.Size": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.Slice(System.Int32,System.Int32)": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.ToArray": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.MemoryBuffer.op_Implicit(Ubiquity.NET.Llvm.MemoryBuffer)~System.ReadOnlySpan{System.Byte}": "Ubiquity.NET.Llvm.MemoryBuffer.yml", - "Ubiquity.NET.Llvm.Metadata": "Ubiquity.NET.Llvm.Metadata.yml", - "Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata": "Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant": "Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.IrMetadata": "Ubiquity.NET.Llvm.Metadata.IrMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object)": "Ubiquity.NET.Llvm.Metadata.IrMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.Metadata.IrMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode": "Ubiquity.NET.Llvm.Metadata.IrMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle": "Ubiquity.NET.Llvm.Metadata.IrMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind": "Ubiquity.NET.Llvm.Metadata.IrMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.Metadata.IrMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString": "Ubiquity.NET.Llvm.Metadata.IrMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.LocalAsMetadata": "Ubiquity.NET.Llvm.Metadata.LocalAsMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.Context": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32)": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32)": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.Operands": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.Metadata.MDNode.yml", - "Ubiquity.NET.Llvm.Metadata.MDString": "Ubiquity.NET.Llvm.Metadata.MDString.yml", - "Ubiquity.NET.Llvm.Metadata.MDString.ToString": "Ubiquity.NET.Llvm.Metadata.MDString.yml", - "Ubiquity.NET.Llvm.Metadata.MDTuple": "Ubiquity.NET.Llvm.Metadata.MDTuple.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataAsValue": "Ubiquity.NET.Llvm.Metadata.MetadataAsValue.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands": "Ubiquity.NET.Llvm.Metadata.MetadataAsValue.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.ConstantAsMetadata": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIBasicType": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompileUnit": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompositeType": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIDerivedType": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIEnumerator": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIExpression": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIFile": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariable": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariableExpression": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIImportedEntity": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlock": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlockFile": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocalVariable": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocation": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacro": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacroFile": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIModule": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DINamespace": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DIObjCProperty": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubprogram": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubrange": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubroutineType": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateTypeParameter": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateValueParameter": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.DistinctMDOperandPlaceholder": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.GenericDINode": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.LocalAsMetadata": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.MDString": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataKind.MDTuple": "Ubiquity.NET.Llvm.Metadata.MetadataKind.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection": "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count": "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator": "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand``1(System.Index)": "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml", - "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Item(System.Int32)": "Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml", - "Ubiquity.NET.Llvm.Metadata.ModuleFlag": "Ubiquity.NET.Llvm.Metadata.ModuleFlag.yml", - "Ubiquity.NET.Llvm.Metadata.ModuleFlag.#ctor(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.Metadata.ModuleFlag.yml", - "Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior": "Ubiquity.NET.Llvm.Metadata.ModuleFlag.yml", - "Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata": "Ubiquity.NET.Llvm.Metadata.ModuleFlag.yml", - "Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name": "Ubiquity.NET.Llvm.Metadata.ModuleFlag.yml", - "Ubiquity.NET.Llvm.Metadata.NamedMDNode": "Ubiquity.NET.Llvm.Metadata.NamedMDNode.yml", - "Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent": "Ubiquity.NET.Llvm.Metadata.NamedMDNode.yml", - "Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name": "Ubiquity.NET.Llvm.Metadata.NamedMDNode.yml", - "Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands": "Ubiquity.NET.Llvm.Metadata.NamedMDNode.yml", - "Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule": "Ubiquity.NET.Llvm.Metadata.NamedMDNode.yml", - "Ubiquity.NET.Llvm.Metadata.OperandBundleNames": "Ubiquity.NET.Llvm.Metadata.OperandBundleNames.yml", - "Ubiquity.NET.Llvm.Metadata.OperandBundleNames.DeOpt": "Ubiquity.NET.Llvm.Metadata.OperandBundleNames.yml", - "Ubiquity.NET.Llvm.Metadata.OperandBundleNames.Funclet": "Ubiquity.NET.Llvm.Metadata.OperandBundleNames.yml", - "Ubiquity.NET.Llvm.Metadata.OperandBundleNames.GcTransition": "Ubiquity.NET.Llvm.Metadata.OperandBundleNames.yml", - "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata": "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context": "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type": "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value": "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.yml", - "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.op_Implicit(Ubiquity.NET.Llvm.Metadata.ValueAsMetadata)~Ubiquity.NET.Llvm.Values.Value": "Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.yml", - "Ubiquity.NET.Llvm.Module": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata(System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Aliases": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.AppendInlineAsm(System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Clone": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Clone(Ubiquity.NET.Llvm.IContext)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Comdats": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.CompileUnits": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Context": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}})": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[])": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.DataLayoutString": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.DebugMetadataVersion": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.DebugVersionValue": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Dispose": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.DwarfVersionValue": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Equals(System.Object)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.IModule)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.Module)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Functions": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.GetAlias(System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.GetHashCode": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[])": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[])": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.GetNamedGlobal(System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.GetTypeByName(System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Globals": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.IndirectFunctions": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.IsDisposed": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Layout": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Link(Ubiquity.NET.Llvm.Module)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.LoadFrom(System.String,Ubiquity.NET.Llvm.IContext)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.LoadFrom(Ubiquity.NET.Llvm.MemoryBuffer,Ubiquity.NET.Llvm.IContext)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.ModuleFlags": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.ModuleInlineAsm": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Name": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.NamedMetadata": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.SourceFileName": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.TargetTriple": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.TryRunPasses(System.String[])": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[])": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[])": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.Verify(System.String@)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.WriteToBuffer": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.WriteToFile(System.String)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.WriteToString": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.Module.WriteToTextFile(System.String,System.String@)": "Ubiquity.NET.Llvm.Module.yml", - "Ubiquity.NET.Llvm.ModuleFlagBehavior": "Ubiquity.NET.Llvm.ModuleFlagBehavior.yml", - "Ubiquity.NET.Llvm.ModuleFlagBehavior.Append": "Ubiquity.NET.Llvm.ModuleFlagBehavior.yml", - "Ubiquity.NET.Llvm.ModuleFlagBehavior.AppendUnique": "Ubiquity.NET.Llvm.ModuleFlagBehavior.yml", - "Ubiquity.NET.Llvm.ModuleFlagBehavior.Error": "Ubiquity.NET.Llvm.ModuleFlagBehavior.yml", - "Ubiquity.NET.Llvm.ModuleFlagBehavior.Override": "Ubiquity.NET.Llvm.ModuleFlagBehavior.yml", - "Ubiquity.NET.Llvm.ModuleFlagBehavior.Require": "Ubiquity.NET.Llvm.ModuleFlagBehavior.yml", - "Ubiquity.NET.Llvm.ModuleFlagBehavior.Warning": "Ubiquity.NET.Llvm.ModuleFlagBehavior.yml", - "Ubiquity.NET.Llvm.OSKind": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.AIX": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.AMDHSA": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.AmdPAL": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.BridgeOS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.CUDA": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Darwin": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.DragonFly": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.DriverKit": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.ELFIAMCU": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Emscripten": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.FreeBSD": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Fuchsia": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Haiku": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.HermitCore": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Hurd": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.IOS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.KFreeBSD": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Linux": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.LiteOS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Lv2": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.MacOSX": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Mesa3D": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.NVCL": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.NaCl": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.NetBSD": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.OpenBSD": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.PS4": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.PS5": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.RTEMS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Serenity": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.ShaderModel": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Solaris": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.TvOS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.UEFI": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.UnknownOS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Vulkan": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.WASI": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.WatchOS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.Win32": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.XROS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.OSKind.ZOS": "Ubiquity.NET.Llvm.OSKind.yml", - "Ubiquity.NET.Llvm.ObjectFile": "Ubiquity.NET.Llvm.ObjectFile.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Archive": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Coff": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.CoffImportFile": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32BigEndian": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32LittleEndian": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64BigEndian": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64LittleEndian": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.LlvmIR": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32BigEndian": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32LittleEndian": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64BigEndian": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64LittleEndian": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachOUniversalBinary": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Wasm": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.WinRes": "Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml", - "Ubiquity.NET.Llvm.ObjectFile.Relocation": "Ubiquity.NET.Llvm.ObjectFile.Relocation.yml", - "Ubiquity.NET.Llvm.ObjectFile.Relocation.Description": "Ubiquity.NET.Llvm.ObjectFile.Relocation.yml", - "Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind": "Ubiquity.NET.Llvm.ObjectFile.Relocation.yml", - "Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset": "Ubiquity.NET.Llvm.ObjectFile.Relocation.yml", - "Ubiquity.NET.Llvm.ObjectFile.Relocation.Section": "Ubiquity.NET.Llvm.ObjectFile.Relocation.yml", - "Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol": "Ubiquity.NET.Llvm.ObjectFile.Relocation.yml", - "Ubiquity.NET.Llvm.ObjectFile.Relocation.Value": "Ubiquity.NET.Llvm.ObjectFile.Relocation.yml", - "Ubiquity.NET.Llvm.ObjectFile.Section": "Ubiquity.NET.Llvm.ObjectFile.Section.yml", - "Ubiquity.NET.Llvm.ObjectFile.Section.Address": "Ubiquity.NET.Llvm.ObjectFile.Section.yml", - "Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary": "Ubiquity.NET.Llvm.ObjectFile.Section.yml", - "Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol(Ubiquity.NET.Llvm.ObjectFile.Symbol)": "Ubiquity.NET.Llvm.ObjectFile.Section.yml", - "Ubiquity.NET.Llvm.ObjectFile.Section.Contents": "Ubiquity.NET.Llvm.ObjectFile.Section.yml", - "Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection(Ubiquity.NET.Llvm.ObjectFile.Symbol)": "Ubiquity.NET.Llvm.ObjectFile.Section.yml", - "Ubiquity.NET.Llvm.ObjectFile.Section.Name": "Ubiquity.NET.Llvm.ObjectFile.Section.yml", - "Ubiquity.NET.Llvm.ObjectFile.Section.Relocations": "Ubiquity.NET.Llvm.ObjectFile.Section.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.Address": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(System.Object)": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol)": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.Name": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.Section": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.Size": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Equality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol)": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Inequality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol)": "Ubiquity.NET.Llvm.ObjectFile.Symbol.yml", - "Ubiquity.NET.Llvm.ObjectFile.TargetBinary": "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.yml", - "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose": "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.yml", - "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind": "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.yml", - "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections": "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.yml", - "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols": "Ubiquity.NET.Llvm.ObjectFile.TargetBinary.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind.COFF": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind.DXContainer": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind.ELF": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind.MachO": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind.SpirV": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind.Unknown": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind.Wasm": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.ObjectFormatKind.XCOFF": "Ubiquity.NET.Llvm.ObjectFormatKind.yml", - "Ubiquity.NET.Llvm.OptimizationSizeLevel": "Ubiquity.NET.Llvm.OptimizationSizeLevel.yml", - "Ubiquity.NET.Llvm.OptimizationSizeLevel.None": "Ubiquity.NET.Llvm.OptimizationSizeLevel.yml", - "Ubiquity.NET.Llvm.OptimizationSizeLevel.Os": "Ubiquity.NET.Llvm.OptimizationSizeLevel.yml", - "Ubiquity.NET.Llvm.OptimizationSizeLevel.Oz": "Ubiquity.NET.Llvm.OptimizationSizeLevel.yml", - "Ubiquity.NET.Llvm.OrcJITv2": "Ubiquity.NET.Llvm.OrcJITv2.yml", - "Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit": "Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.#ctor(System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol}})": "Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit": "Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry)": "Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,Ubiquity.NET.Llvm.OrcJITv2.DiscardAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry)": "Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.DiscardAction": "Ubiquity.NET.Llvm.OrcJITv2.DiscardAction.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter": "Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter.yml", - "Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol": "Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.yml", - "Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.#ctor(System.UInt64,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags)": "Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.yml", - "Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address": "Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.yml", - "Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags": "Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession": "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager(Ubiquity.NET.InteropHelpers.LazyEncodedString,System.UInt64)": "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString)": "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern(System.String)": "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool": "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@)": "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@,Ubiquity.NET.Llvm.ErrorInfo@)": "Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml", - "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption": "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Callable": "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Exported": "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.MaterializationSideEffectsOnly": "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.None": "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Weak": "Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer": "Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.yml", - "Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit(Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule)": "Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.yml", - "Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform(Ubiquity.NET.Llvm.OrcJITv2.TransformAction)": "Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.yml", - "Ubiquity.NET.Llvm.OrcJITv2.JITDyLib": "Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.yml", - "Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker": "Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.yml", - "Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define(Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit)": "Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager": "Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit": "Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.#ctor(Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager,Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry}})": "Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.#ctor": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule)": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule)": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose(System.Boolean)": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup(Ubiquity.NET.InteropHelpers.LazyEncodedString)": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern(Ubiquity.NET.InteropHelpers.LazyEncodedString)": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString": "Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager": "Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString)": "Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.yml", - "Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean)": "Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker": "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed": "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker)": "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll": "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed": "Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry": "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags)": "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags": "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName": "Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags": "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption)": "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption,System.Byte)": "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic": "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target": "Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption": "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Callable": "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Exported": "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.MaterializationSideEffectsOnly": "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.None": "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Weak": "Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry)": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.Object)": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.ReadOnlySpan{System.Byte})": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry)": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode(System.StringComparison)": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.yml", - "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Item(System.UInt64)": "Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.#ctor": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule(Ubiquity.NET.Llvm.Module)": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.#ctor(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext,Ubiquity.NET.Llvm.Module)": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml", - "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation)": "Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml", - "Ubiquity.NET.Llvm.OrcJITv2.TransformAction": "Ubiquity.NET.Llvm.OrcJITv2.TransformAction.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.#ctor": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.Dispose": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach": "Ubiquity.NET.Llvm.PassBuilderOptions.yml", - "Ubiquity.NET.Llvm.RelocationMode": "Ubiquity.NET.Llvm.RelocationMode.yml", - "Ubiquity.NET.Llvm.RelocationMode.Default": "Ubiquity.NET.Llvm.RelocationMode.yml", - "Ubiquity.NET.Llvm.RelocationMode.Dynamic": "Ubiquity.NET.Llvm.RelocationMode.yml", - "Ubiquity.NET.Llvm.RelocationMode.PositionIndependent": "Ubiquity.NET.Llvm.RelocationMode.yml", - "Ubiquity.NET.Llvm.RelocationMode.Static": "Ubiquity.NET.Llvm.RelocationMode.yml", - "Ubiquity.NET.Llvm.SubArchKind": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64e": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64ec": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v4t": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5te": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6k": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6m": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6t2": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7em": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7k": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7m": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7s": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7ve": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1m_Mainline": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_2a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_3a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_4a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_5a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_6a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_7a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_8a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_9a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Baseline": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Mainline": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8r": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_1a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_2a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_3a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_4a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_5a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_6a": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_0": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_1": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_2": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_3": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_4": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_5": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_6": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_7": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_8": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v3": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v4": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v5": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.LatestDXILSubArch": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.MipsSubArch_r6": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.NoSubArch": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.PowerPC_SPE": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v10": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v11": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v12": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v13": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v14": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v15": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v16": "Ubiquity.NET.Llvm.SubArchKind.yml", - "Ubiquity.NET.Llvm.Target": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.AvailableTargets": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.CreateTargetMachine(System.String,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel)": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.CreateTargetMachine(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel)": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.Description": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.FromTriple(System.String)": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.FromTriple(Ubiquity.NET.Llvm.Triple)": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.HasAsmBackEnd": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.HasJIT": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.HasTargetMachine": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.Target.Name": "Ubiquity.NET.Llvm.Target.yml", - "Ubiquity.NET.Llvm.TargetMachine": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel)": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.Cpu": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.CreateTargetData": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.Dispose": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer(Ubiquity.NET.Llvm.IModule,Ubiquity.NET.Llvm.CodeGenFileKind)": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.EmitToFile(Ubiquity.NET.Llvm.IModule,System.String,Ubiquity.NET.Llvm.CodeGenFileKind,System.Boolean)": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.Features": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.FromTriple(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel)": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.Target": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetMachine.Triple": "Ubiquity.NET.Llvm.TargetMachine.yml", - "Ubiquity.NET.Llvm.TargetRegistration": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.All": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.AsmParser": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.AsmPrinter": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.CodeGen": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.Disassembler": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.None": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.Target": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.TargetInfo": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.TargetRegistration.TargetMachine": "Ubiquity.NET.Llvm.TargetRegistration.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy": "Ubiquity.NET.Llvm.Transforms.Legacy.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager": "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.#ctor(Ubiquity.NET.Llvm.Module)": "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish": "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize": "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run(Ubiquity.NET.Llvm.Values.Function)": "Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager": "Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.#ctor": "Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run(Ubiquity.NET.Llvm.Module)": "Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.PassManager": "Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.yml", - "Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine)": "Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.yml", - "Ubiquity.NET.Llvm.Triple": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.#ctor(System.String)": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.ArchitectureType": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.Dispose": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.Environment": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.EnvironmentVersion": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.Equals(System.Object)": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.Equals(Ubiquity.NET.Llvm.Triple)": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.ArchKind)": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.EnvironmentKind)": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.OSKind)": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.VendorKind)": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.GetHashCode": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.GetHostTriple": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.Normalize(System.String)": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.OS": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.ObjectFormat": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.SubArchitecture": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.ToString": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.Vendor": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Triple.op_Implicit(Ubiquity.NET.Llvm.Triple)~System.String": "Ubiquity.NET.Llvm.Triple.yml", - "Ubiquity.NET.Llvm.Types": "Ubiquity.NET.Llvm.Types.yml", - "Ubiquity.NET.Llvm.Types.IArrayType": "Ubiquity.NET.Llvm.Types.IArrayType.yml", - "Ubiquity.NET.Llvm.Types.IArrayType.Length": "Ubiquity.NET.Llvm.Types.IArrayType.yml", - "Ubiquity.NET.Llvm.Types.IFunctionType": "Ubiquity.NET.Llvm.Types.IFunctionType.yml", - "Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg": "Ubiquity.NET.Llvm.Types.IFunctionType.yml", - "Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes": "Ubiquity.NET.Llvm.Types.IFunctionType.yml", - "Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType": "Ubiquity.NET.Llvm.Types.IFunctionType.yml", - "Ubiquity.NET.Llvm.Types.INamedStructuralType": "Ubiquity.NET.Llvm.Types.INamedStructuralType.yml", - "Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque": "Ubiquity.NET.Llvm.Types.INamedStructuralType.yml", - "Ubiquity.NET.Llvm.Types.INamedStructuralType.Members": "Ubiquity.NET.Llvm.Types.INamedStructuralType.yml", - "Ubiquity.NET.Llvm.Types.INamedStructuralType.Name": "Ubiquity.NET.Llvm.Types.INamedStructuralType.yml", - "Ubiquity.NET.Llvm.Types.IPointerType": "Ubiquity.NET.Llvm.Types.IPointerType.yml", - "Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace": "Ubiquity.NET.Llvm.Types.IPointerType.yml", - "Ubiquity.NET.Llvm.Types.IPointerType.ElementType": "Ubiquity.NET.Llvm.Types.IPointerType.yml", - "Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque": "Ubiquity.NET.Llvm.Types.IPointerType.yml", - "Ubiquity.NET.Llvm.Types.ISequenceType": "Ubiquity.NET.Llvm.Types.ISequenceType.yml", - "Ubiquity.NET.Llvm.Types.ISequenceType.ElementType": "Ubiquity.NET.Llvm.Types.ISequenceType.yml", - "Ubiquity.NET.Llvm.Types.IStructType": "Ubiquity.NET.Llvm.Types.IStructType.yml", - "Ubiquity.NET.Llvm.Types.IStructType.IsPacked": "Ubiquity.NET.Llvm.Types.IStructType.yml", - "Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef})": "Ubiquity.NET.Llvm.Types.IStructType.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.Context": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32)": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32)": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsSized": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.ITypeRef.Kind": "Ubiquity.NET.Llvm.Types.ITypeRef.yml", - "Ubiquity.NET.Llvm.Types.IVectorType": "Ubiquity.NET.Llvm.Types.IVectorType.yml", - "Ubiquity.NET.Llvm.Types.IVectorType.Size": "Ubiquity.NET.Llvm.Types.IVectorType.yml", - "Ubiquity.NET.Llvm.Types.PointerTypeExtensions": "Ubiquity.NET.Llvm.Types.PointerTypeExtensions.yml", - "Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType)": "Ubiquity.NET.Llvm.Types.PointerTypeExtensions.yml", - "Ubiquity.NET.Llvm.Types.TypeKind": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Array": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.BFloat": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Float128": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Float128m112": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Float16": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Float32": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Float64": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Function": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Integer": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Label": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Metadata": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Pointer": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.ScalableVector": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Struct": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.TargetSpecific": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Token": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Vector": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.Void": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.X86AMX": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Types.TypeKind.X86Float80": "Ubiquity.NET.Llvm.Types.TypeKind.yml", - "Ubiquity.NET.Llvm.Values": "Ubiquity.NET.Llvm.Values.yml", - "Ubiquity.NET.Llvm.Values.Argument": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.AddAttribute(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.AddAttributes(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue})": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.AddAttributes(Ubiquity.NET.Llvm.Values.AttributeKind[])": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.AddAttributes(Ubiquity.NET.Llvm.Values.AttributeValue[])": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.Attributes": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.ContainingFunction": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.Index": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(System.String)": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.Argument.SetAlignment(System.UInt32)": "Ubiquity.NET.Llvm.Values.Argument.yml", - "Ubiquity.NET.Llvm.Values.AsmDialect": "Ubiquity.NET.Llvm.Values.AsmDialect.yml", - "Ubiquity.NET.Llvm.Values.AsmDialect.ATT": "Ubiquity.NET.Llvm.Values.AsmDialect.yml", - "Ubiquity.NET.Llvm.Values.AsmDialect.Intel": "Ubiquity.NET.Llvm.Values.AsmDialect.yml", - "Ubiquity.NET.Llvm.Values.AttributeAllowedOn": "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.yml", - "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Function": "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.yml", - "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.None": "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.yml", - "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Parameter": "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.yml", - "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Return": "Ubiquity.NET.Llvm.Values.AttributeAllowedOn.yml", - "Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions": "Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},System.String)": "Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue)": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue})": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[])": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[])": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary)": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Alignment": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.AllocAlign": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.AllocKind": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.AllocSize": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.AllocatedPointer": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.AlwaysInline": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.BuiltIn": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ByRef": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ByVal": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Captures": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Cold": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Convergent": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.CoroDestroyOnlyWhenComplete": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.CoroElideSafe": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.DeadOnUnwind": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.DisableSanitizerInstrumentation": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ElementType": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeListAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.FirstEnumAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.FirstIntAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.FirstTypeAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.FnRetThunkExtern": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Hot": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.HybridPatchable": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ImmArg": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.InAlloca": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.InReg": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Initializes": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.InlineHint": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.JumpTable": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeListAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.LastEnumAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.LastIntAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.LastTypeAttr": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Memory": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.MinSize": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.MustProgress": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Naked": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Nest": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoAlias": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoBuiltIn": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoCallback": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoCapture": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoCfCheck": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoDivergenceSource": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoDuplicate": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoExt": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoFPClass": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoFree": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoImplicitFloat": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoInline": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoMerge": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoProfile": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoRecurse": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoRedZone": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoReturn": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeBounds": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeCoverage": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoSync": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoUndef": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NoUnwind": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NonLazyBind": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NonNull": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.None": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.NullPointerIsValid": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.OptForFuzzing": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForDebugging": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForSize": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeNone": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Preallocated": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.PresplitCoroutine": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Range": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ReadNone": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ReadOnly": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Returned": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ReturnsTwice": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SExt": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SafeStack": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeAddress": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeHWAddress": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemTag": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemory": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeNumericalStability": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtime": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtimeBlocking": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeThread": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeType": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ShadowCallStack": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SkipProfile": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Speculatable": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SpeculativeLoadHardening": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.StackProtect": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectReq": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectStrong": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.StrictFP": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.StructRet": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SwiftAsync": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SwiftError": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.SwiftSelf": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.UWTable": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.VScaleRange": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.WillReturn": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.Writable": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.WriteOnly": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKind.ZExt": "Ubiquity.NET.Llvm.Values.AttributeKind.yml", - "Ubiquity.NET.Llvm.Values.AttributeKindExtensions": "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.Id": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.IsString": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.IsType": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.Name": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.StringValue": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.ToString": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Values.AttributeValue.yml", - "Ubiquity.NET.Llvm.Values.BasicBlock": "Ubiquity.NET.Llvm.Values.BasicBlock.yml", - "Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction": "Ubiquity.NET.Llvm.Values.BasicBlock.yml", - "Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction": "Ubiquity.NET.Llvm.Values.BasicBlock.yml", - "Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction(Ubiquity.NET.Llvm.Instructions.Instruction)": "Ubiquity.NET.Llvm.Values.BasicBlock.yml", - "Ubiquity.NET.Llvm.Values.BasicBlock.Instructions": "Ubiquity.NET.Llvm.Values.BasicBlock.yml", - "Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction": "Ubiquity.NET.Llvm.Values.BasicBlock.yml", - "Ubiquity.NET.Llvm.Values.BasicBlock.Terminator": "Ubiquity.NET.Llvm.Values.BasicBlock.yml", - "Ubiquity.NET.Llvm.Values.BlockAddress": "Ubiquity.NET.Llvm.Values.BlockAddress.yml", - "Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock": "Ubiquity.NET.Llvm.Values.BlockAddress.yml", - "Ubiquity.NET.Llvm.Values.BlockAddress.Function": "Ubiquity.NET.Llvm.Values.BlockAddress.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuComputeShader": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuEs": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuGeometryShader": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuHullShader": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuKernel": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuLS": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuPixelShader": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuVertexShader": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AVRBuiltIn": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AVRInterrupt": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AVRSignal": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.AnyReg": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCS": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCSVfp": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.ArmAPCS": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.C": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.ColdCall": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.CxxFastTls": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.FastCall": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.FirstTargetSpecific": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.GlasgowHaskellCompiler": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.HHVM": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.HHVMCCall": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.HiPE": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.IntelOpenCLBuiltIn": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.MSP430BuiltIn": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.MSP430Interrupt": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.MaxCallingConvention": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.PreserveAll": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.PreserveMost": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.PtxDevice": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.PtxKernel": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.SpirFunction": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.SpirKernel": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.Swift": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.WebKitJS": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.X86FastCall": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.X86Interrupt": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.X86RegCall": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.X86StdCall": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.X86ThisCall": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.X86VectorCall": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.X86x64SysV": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.CallingConvention.X86x64Win64": "Ubiquity.NET.Llvm.Values.CallingConvention.yml", - "Ubiquity.NET.Llvm.Values.Constant": "Ubiquity.NET.Llvm.Values.Constant.yml", - "Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Values.Constant.yml", - "Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Values.Constant.yml", - "Ubiquity.NET.Llvm.Values.Constant.IsZeroValue": "Ubiquity.NET.Llvm.Values.Constant.yml", - "Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Values.Constant.yml", - "Ubiquity.NET.Llvm.Values.Constant.ToMetadata": "Ubiquity.NET.Llvm.Values.Constant.yml", - "Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Values.Constant.yml", - "Ubiquity.NET.Llvm.Values.ConstantAggregate": "Ubiquity.NET.Llvm.Values.ConstantAggregate.yml", - "Ubiquity.NET.Llvm.Values.ConstantAggregateZero": "Ubiquity.NET.Llvm.Values.ConstantAggregateZero.yml", - "Ubiquity.NET.Llvm.Values.ConstantArray": "Ubiquity.NET.Llvm.Values.ConstantArray.yml", - "Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IList{Ubiquity.NET.Llvm.Values.Constant})": "Ubiquity.NET.Llvm.Values.ConstantArray.yml", - "Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Int32,Ubiquity.NET.Llvm.Values.Constant[])": "Ubiquity.NET.Llvm.Values.ConstantArray.yml", - "Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Constant[])": "Ubiquity.NET.Llvm.Values.ConstantArray.yml", - "Ubiquity.NET.Llvm.Values.ConstantData": "Ubiquity.NET.Llvm.Values.ConstantData.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataArray": "Ubiquity.NET.Llvm.Values.ConstantDataArray.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataSequential": "Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count": "Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString": "Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding)": "Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence": "Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString": "Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData": "Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml", - "Ubiquity.NET.Llvm.Values.ConstantDataVector": "Ubiquity.NET.Llvm.Values.ConstantDataVector.yml", - "Ubiquity.NET.Llvm.Values.ConstantExpression": "Ubiquity.NET.Llvm.Values.ConstantExpression.yml", - "Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Values.ConstantExpression.yml", - "Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Values.ConstantExpression.yml", - "Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode": "Ubiquity.NET.Llvm.Values.ConstantExpression.yml", - "Ubiquity.NET.Llvm.Values.ConstantFP": "Ubiquity.NET.Llvm.Values.ConstantFP.yml", - "Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss(System.Boolean@)": "Ubiquity.NET.Llvm.Values.ConstantFP.yml", - "Ubiquity.NET.Llvm.Values.ConstantFP.Value": "Ubiquity.NET.Llvm.Values.ConstantFP.yml", - "Ubiquity.NET.Llvm.Values.ConstantInt": "Ubiquity.NET.Llvm.Values.ConstantInt.yml", - "Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth": "Ubiquity.NET.Llvm.Values.ConstantInt.yml", - "Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue": "Ubiquity.NET.Llvm.Values.ConstantInt.yml", - "Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue": "Ubiquity.NET.Llvm.Values.ConstantInt.yml", - "Ubiquity.NET.Llvm.Values.ConstantPointerNull": "Ubiquity.NET.Llvm.Values.ConstantPointerNull.yml", - "Ubiquity.NET.Llvm.Values.ConstantPointerNull.From(Ubiquity.NET.Llvm.Types.ITypeRef)": "Ubiquity.NET.Llvm.Values.ConstantPointerNull.yml", - "Ubiquity.NET.Llvm.Values.ConstantStruct": "Ubiquity.NET.Llvm.Values.ConstantStruct.yml", - "Ubiquity.NET.Llvm.Values.ConstantTokenNone": "Ubiquity.NET.Llvm.Values.ConstantTokenNone.yml", - "Ubiquity.NET.Llvm.Values.ConstantVector": "Ubiquity.NET.Llvm.Values.ConstantVector.yml", - "Ubiquity.NET.Llvm.Values.Function": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(System.String)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.Attributes": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.BasicBlocks": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.CallingConvention": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.DISubProgram": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.EntryBlock": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.EraseFromParent": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock(System.String)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.GcName": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock(System.String,Ubiquity.NET.Llvm.Values.BasicBlock)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.IntrinsicId": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.IsVarArg": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.Parameters": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.PersonalityFunction": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock(System.String)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.ReturnType": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.Signature": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.TryRunPasses(System.String[])": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[])": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[])": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.Verify": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.Function.Verify(System.String@)": "Ubiquity.NET.Llvm.Values.Function.yml", - "Ubiquity.NET.Llvm.Values.FunctionAttributeIndex": "Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.yml", - "Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Function": "Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.yml", - "Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Parameter0": "Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.yml", - "Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.ReturnType": "Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.yml", - "Ubiquity.NET.Llvm.Values.GlobalAlias": "Ubiquity.NET.Llvm.Values.GlobalAlias.yml", - "Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee": "Ubiquity.NET.Llvm.Values.GlobalAlias.yml", - "Ubiquity.NET.Llvm.Values.GlobalIFunc": "Ubiquity.NET.Llvm.Values.GlobalIFunc.yml", - "Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent": "Ubiquity.NET.Llvm.Values.GlobalIFunc.yml", - "Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver": "Ubiquity.NET.Llvm.Values.GlobalIFunc.yml", - "Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol": "Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.yml", - "Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol": "Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.yml", - "Ubiquity.NET.Llvm.Values.GlobalObject": "Ubiquity.NET.Llvm.Values.GlobalObject.yml", - "Ubiquity.NET.Llvm.Values.GlobalObject.Alignment": "Ubiquity.NET.Llvm.Values.GlobalObject.yml", - "Ubiquity.NET.Llvm.Values.GlobalObject.Comdat": "Ubiquity.NET.Llvm.Values.GlobalObject.yml", - "Ubiquity.NET.Llvm.Values.GlobalObject.Metadata": "Ubiquity.NET.Llvm.Values.GlobalObject.yml", - "Ubiquity.NET.Llvm.Values.GlobalObject.Section": "Ubiquity.NET.Llvm.Values.GlobalObject.yml", - "Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata)": "Ubiquity.NET.Llvm.Values.GlobalObject.yml", - "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions": "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32)": "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String)": "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind)": "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String)": "Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalValue": "Ubiquity.NET.Llvm.Values.GlobalValue.yml", - "Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration": "Ubiquity.NET.Llvm.Values.GlobalValue.yml", - "Ubiquity.NET.Llvm.Values.GlobalValue.Linkage": "Ubiquity.NET.Llvm.Values.GlobalValue.yml", - "Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule": "Ubiquity.NET.Llvm.Values.GlobalValue.yml", - "Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress": "Ubiquity.NET.Llvm.Values.GlobalValue.yml", - "Ubiquity.NET.Llvm.Values.GlobalValue.ValueType": "Ubiquity.NET.Llvm.Values.GlobalValue.yml", - "Ubiquity.NET.Llvm.Values.GlobalValue.Visibility": "Ubiquity.NET.Llvm.Values.GlobalValue.yml", - "Ubiquity.NET.Llvm.Values.GlobalValueExtensions": "Ubiquity.NET.Llvm.Values.GlobalValueExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage)": "Ubiquity.NET.Llvm.Values.GlobalValueExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind)": "Ubiquity.NET.Llvm.Values.GlobalValueExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility)": "Ubiquity.NET.Llvm.Values.GlobalValueExtensions.yml", - "Ubiquity.NET.Llvm.Values.GlobalVariable": "Ubiquity.NET.Llvm.Values.GlobalVariable.yml", - "Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo(Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression)": "Ubiquity.NET.Llvm.Values.GlobalVariable.yml", - "Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer": "Ubiquity.NET.Llvm.Values.GlobalVariable.yml", - "Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant": "Ubiquity.NET.Llvm.Values.GlobalVariable.yml", - "Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized": "Ubiquity.NET.Llvm.Values.GlobalVariable.yml", - "Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal": "Ubiquity.NET.Llvm.Values.GlobalVariable.yml", - "Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent": "Ubiquity.NET.Llvm.Values.GlobalVariable.yml", - "Ubiquity.NET.Llvm.Values.IAttributeAccessor": "Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml", - "Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue)": "Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml", - "Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml", - "Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml", - "Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml", - "Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex)": "Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml", - "Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String)": "Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml", - "Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind)": "Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml", - "Ubiquity.NET.Llvm.Values.IAttributeContainer": "Ubiquity.NET.Llvm.Values.IAttributeContainer.yml", - "Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes": "Ubiquity.NET.Llvm.Values.IAttributeContainer.yml", - "Ubiquity.NET.Llvm.Values.IAttributeContainer.Context": "Ubiquity.NET.Llvm.Values.IAttributeContainer.yml", - "Ubiquity.NET.Llvm.Values.IAttributeDictionary": "Ubiquity.NET.Llvm.Values.IAttributeDictionary.yml", - "Ubiquity.NET.Llvm.Values.InlineAsm": "Ubiquity.NET.Llvm.Values.InlineAsm.yml", - "Ubiquity.NET.Llvm.Values.Linkage": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.Append": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.AvailableExternally": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.Common": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.DllExport": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.DllImport": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.External": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.ExternalWeak": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.Internal": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.LinkOnceAny": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.LinkOnceODR": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivate": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivateWeak": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.Private": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.Weak": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.Linkage.WeakODR": "Ubiquity.NET.Llvm.Values.Linkage.yml", - "Ubiquity.NET.Llvm.Values.UndefValue": "Ubiquity.NET.Llvm.Values.UndefValue.yml", - "Ubiquity.NET.Llvm.Values.UnnamedAddressKind": "Ubiquity.NET.Llvm.Values.UnnamedAddressKind.yml", - "Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Global": "Ubiquity.NET.Llvm.Values.UnnamedAddressKind.yml", - "Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Local": "Ubiquity.NET.Llvm.Values.UnnamedAddressKind.yml", - "Ubiquity.NET.Llvm.Values.UnnamedAddressKind.None": "Ubiquity.NET.Llvm.Values.UnnamedAddressKind.yml", - "Ubiquity.NET.Llvm.Values.Use": "Ubiquity.NET.Llvm.Values.Use.yml", - "Ubiquity.NET.Llvm.Values.Use.User": "Ubiquity.NET.Llvm.Values.Use.yml", - "Ubiquity.NET.Llvm.Values.Use.Value": "Ubiquity.NET.Llvm.Values.Use.yml", - "Ubiquity.NET.Llvm.Values.User": "Ubiquity.NET.Llvm.Values.User.yml", - "Ubiquity.NET.Llvm.Values.User.Operands": "Ubiquity.NET.Llvm.Values.User.yml", - "Ubiquity.NET.Llvm.Values.User.Uses": "Ubiquity.NET.Llvm.Values.User.yml", - "Ubiquity.NET.Llvm.Values.Value": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.Context": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.DebugRecords": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.Equals(System.Object)": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.GetHashCode": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.IsCallSite": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.IsFunction": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.IsInstruction": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.IsNull": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.IsUndefined": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.Name": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.NativeType": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value)": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.Value.ToString": "Ubiquity.NET.Llvm.Values.Value.yml", - "Ubiquity.NET.Llvm.Values.ValueExtensions": "Ubiquity.NET.Llvm.Values.ValueExtensions.yml", - "Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String)": "Ubiquity.NET.Llvm.Values.ValueExtensions.yml", - "Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1": "Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml", - "Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Contains(`0)": "Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml", - "Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Count": "Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml", - "Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetEnumerator": "Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml", - "Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetOperand``1(System.Index)": "Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml", - "Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Item(System.Int32)": "Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml", - "Ubiquity.NET.Llvm.Values.Visibility": "Ubiquity.NET.Llvm.Values.Visibility.yml", - "Ubiquity.NET.Llvm.Values.Visibility.Default": "Ubiquity.NET.Llvm.Values.Visibility.yml", - "Ubiquity.NET.Llvm.Values.Visibility.Hidden": "Ubiquity.NET.Llvm.Values.Visibility.yml", - "Ubiquity.NET.Llvm.Values.Visibility.Protected": "Ubiquity.NET.Llvm.Values.Visibility.yml", - "Ubiquity.NET.Llvm.VendorKind": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.AMD": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.Apple": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.CSR": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.Freescale": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.IBM": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.ImaginationTechnologies": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.Intel": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.Mesa": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.MipsTechnologies": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.NVIDIA": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.OpenEmbedded": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.PC": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.SCEI": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.SUSE": "Ubiquity.NET.Llvm.VendorKind.yml", - "Ubiquity.NET.Llvm.VendorKind.Unknown": "Ubiquity.NET.Llvm.VendorKind.yml" -} \ No newline at end of file diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ArchKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ArchKind.yml deleted file mode 100644 index 043c896a7d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ArchKind.yml +++ /dev/null @@ -1,1808 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ArchKind - commentId: T:Ubiquity.NET.Llvm.ArchKind - id: ArchKind - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ArchKind.AMDGCN - - Ubiquity.NET.Llvm.ArchKind.Aarch64 - - Ubiquity.NET.Llvm.ArchKind.Aarch64BE - - Ubiquity.NET.Llvm.ArchKind.Aarch64_32 - - Ubiquity.NET.Llvm.ArchKind.Amd64 - - Ubiquity.NET.Llvm.ArchKind.Amdil - - Ubiquity.NET.Llvm.ArchKind.Amdil64 - - Ubiquity.NET.Llvm.ArchKind.Arc - - Ubiquity.NET.Llvm.ArchKind.Arm - - Ubiquity.NET.Llvm.ArchKind.Armeb - - Ubiquity.NET.Llvm.ArchKind.Avr - - Ubiquity.NET.Llvm.ArchKind.BPFeb - - Ubiquity.NET.Llvm.ArchKind.BPFel - - Ubiquity.NET.Llvm.ArchKind.Csky - - Ubiquity.NET.Llvm.ArchKind.DXil - - Ubiquity.NET.Llvm.ArchKind.Hexagon - - Ubiquity.NET.Llvm.ArchKind.Hsail - - Ubiquity.NET.Llvm.ArchKind.Hsail64 - - Ubiquity.NET.Llvm.ArchKind.Kalimba - - Ubiquity.NET.Llvm.ArchKind.Lanai - - Ubiquity.NET.Llvm.ArchKind.LoongArch32 - - Ubiquity.NET.Llvm.ArchKind.LoongArch64 - - Ubiquity.NET.Llvm.ArchKind.M68k - - Ubiquity.NET.Llvm.ArchKind.MIPS - - Ubiquity.NET.Llvm.ArchKind.MIPS64 - - Ubiquity.NET.Llvm.ArchKind.MIPS64el - - Ubiquity.NET.Llvm.ArchKind.MIPSel - - Ubiquity.NET.Llvm.ArchKind.MSP430 - - Ubiquity.NET.Llvm.ArchKind.Nvptx - - Ubiquity.NET.Llvm.ArchKind.Nvptx64 - - Ubiquity.NET.Llvm.ArchKind.PPC - - Ubiquity.NET.Llvm.ArchKind.PPC64 - - Ubiquity.NET.Llvm.ArchKind.PPC64le - - Ubiquity.NET.Llvm.ArchKind.PPCle - - Ubiquity.NET.Llvm.ArchKind.R600 - - Ubiquity.NET.Llvm.ArchKind.RenderScript32 - - Ubiquity.NET.Llvm.ArchKind.RenderScript64 - - Ubiquity.NET.Llvm.ArchKind.RiscV32 - - Ubiquity.NET.Llvm.ArchKind.RiscV64 - - Ubiquity.NET.Llvm.ArchKind.Shave - - Ubiquity.NET.Llvm.ArchKind.Sparc - - Ubiquity.NET.Llvm.ArchKind.Sparcel - - Ubiquity.NET.Llvm.ArchKind.Sparcv9 - - Ubiquity.NET.Llvm.ArchKind.Spir - - Ubiquity.NET.Llvm.ArchKind.Spir64 - - Ubiquity.NET.Llvm.ArchKind.SpirV - - Ubiquity.NET.Llvm.ArchKind.SpirV32 - - Ubiquity.NET.Llvm.ArchKind.SpirV64 - - Ubiquity.NET.Llvm.ArchKind.SystemZ - - Ubiquity.NET.Llvm.ArchKind.TCE - - Ubiquity.NET.Llvm.ArchKind.TCEle - - Ubiquity.NET.Llvm.ArchKind.Thumb - - Ubiquity.NET.Llvm.ArchKind.Thumbeb - - Ubiquity.NET.Llvm.ArchKind.UnknownArch - - Ubiquity.NET.Llvm.ArchKind.Ve - - Ubiquity.NET.Llvm.ArchKind.Wasm32 - - Ubiquity.NET.Llvm.ArchKind.Wasm64 - - Ubiquity.NET.Llvm.ArchKind.X86 - - Ubiquity.NET.Llvm.ArchKind.Xcore - - Ubiquity.NET.Llvm.ArchKind.Xtensa - langs: - - csharp - - vb - name: ArchKind - nameWithType: ArchKind - fullName: Ubiquity.NET.Llvm.ArchKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ArchKind - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Enumeration for the Architecture portion of a target triple - example: [] - syntax: - content: public enum ArchKind - content.vb: Public Enum ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.UnknownArch - commentId: F:Ubiquity.NET.Llvm.ArchKind.UnknownArch - id: UnknownArch - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: UnknownArch - nameWithType: ArchKind.UnknownArch - fullName: Ubiquity.NET.Llvm.ArchKind.UnknownArch - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnknownArch - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Invalid or unknown architecture - example: [] - syntax: - content: UnknownArch = 0 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Arm - commentId: F:Ubiquity.NET.Llvm.ArchKind.Arm - id: Arm - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Arm - nameWithType: ArchKind.Arm - fullName: Ubiquity.NET.Llvm.ArchKind.Arm - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Arm - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'ARM (little endian): arm, armv.*, xscale' - example: [] - syntax: - content: Arm = 1 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Armeb - commentId: F:Ubiquity.NET.Llvm.ArchKind.Armeb - id: Armeb - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Armeb - nameWithType: ArchKind.Armeb - fullName: Ubiquity.NET.Llvm.ArchKind.Armeb - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Armeb - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'ARM (big endian): armeb' - example: [] - syntax: - content: Armeb = 2 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Aarch64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Aarch64 - id: Aarch64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Aarch64 - nameWithType: ArchKind.Aarch64 - fullName: Ubiquity.NET.Llvm.ArchKind.Aarch64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Aarch64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'AArch64 (little endian): aarch64' - example: [] - syntax: - content: Aarch64 = 3 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Aarch64BE - commentId: F:Ubiquity.NET.Llvm.ArchKind.Aarch64BE - id: Aarch64BE - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Aarch64BE - nameWithType: ArchKind.Aarch64BE - fullName: Ubiquity.NET.Llvm.ArchKind.Aarch64BE - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Aarch64BE - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'AArch64 (big endian): aarch64_be' - example: [] - syntax: - content: Aarch64BE = 4 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Aarch64_32 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Aarch64_32 - id: Aarch64_32 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Aarch64_32 - nameWithType: ArchKind.Aarch64_32 - fullName: Ubiquity.NET.Llvm.ArchKind.Aarch64_32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Aarch64_32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'AArch64 32 bit (Little endian) ILP32: aarch64_32' - example: [] - syntax: - content: Aarch64_32 = 5 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Arc - commentId: F:Ubiquity.NET.Llvm.ArchKind.Arc - id: Arc - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Arc - nameWithType: ArchKind.Arc - fullName: Ubiquity.NET.Llvm.ArchKind.Arc - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Arc - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Synopsis ARC - example: [] - syntax: - content: Arc = 6 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Avr - commentId: F:Ubiquity.NET.Llvm.ArchKind.Avr - id: Avr - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Avr - nameWithType: ArchKind.Avr - fullName: Ubiquity.NET.Llvm.ArchKind.Avr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Avr - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'AVR: Atmel AVR micro-controller' - example: [] - syntax: - content: Avr = 7 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.BPFel - commentId: F:Ubiquity.NET.Llvm.ArchKind.BPFel - id: BPFel - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: BPFel - nameWithType: ArchKind.BPFel - fullName: Ubiquity.NET.Llvm.ArchKind.BPFel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BPFel - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: eBPF or extended BPF or 64-bit BPF (little endian) - example: [] - syntax: - content: BPFel = 8 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.BPFeb - commentId: F:Ubiquity.NET.Llvm.ArchKind.BPFeb - id: BPFeb - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: BPFeb - nameWithType: ArchKind.BPFeb - fullName: Ubiquity.NET.Llvm.ArchKind.BPFeb - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BPFeb - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: eBPF or extended BPF or 64-bit BPF (big endian) - example: [] - syntax: - content: BPFeb = 9 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Csky - commentId: F:Ubiquity.NET.Llvm.ArchKind.Csky - id: Csky - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Csky - nameWithType: ArchKind.Csky - fullName: Ubiquity.NET.Llvm.ArchKind.Csky - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Csky - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: csky - example: [] - syntax: - content: Csky = 10 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.DXil - commentId: F:Ubiquity.NET.Llvm.ArchKind.DXil - id: DXil - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: DXil - nameWithType: ArchKind.DXil - fullName: Ubiquity.NET.Llvm.ArchKind.DXil - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXil - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 32-bit DirectX bytecode - example: [] - syntax: - content: DXil = 11 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Hexagon - commentId: F:Ubiquity.NET.Llvm.ArchKind.Hexagon - id: Hexagon - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Hexagon - nameWithType: ArchKind.Hexagon - fullName: Ubiquity.NET.Llvm.ArchKind.Hexagon - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Hexagon - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Hexagon processor - example: [] - syntax: - content: Hexagon = 12 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.LoongArch32 - commentId: F:Ubiquity.NET.Llvm.ArchKind.LoongArch32 - id: LoongArch32 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: LoongArch32 - nameWithType: ArchKind.LoongArch32 - fullName: Ubiquity.NET.Llvm.ArchKind.LoongArch32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LoongArch32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: LoongArch (32-bit) - example: [] - syntax: - content: LoongArch32 = 13 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.LoongArch64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.LoongArch64 - id: LoongArch64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: LoongArch64 - nameWithType: ArchKind.LoongArch64 - fullName: Ubiquity.NET.Llvm.ArchKind.LoongArch64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LoongArch64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: LoongArch (64-bit) - example: [] - syntax: - content: LoongArch64 = 14 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.M68k - commentId: F:Ubiquity.NET.Llvm.ArchKind.M68k - id: M68k - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: M68k - nameWithType: ArchKind.M68k - fullName: Ubiquity.NET.Llvm.ArchKind.M68k - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: M68k - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Motorola 680x0 family - example: [] - syntax: - content: M68k = 15 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.MIPS - commentId: F:Ubiquity.NET.Llvm.ArchKind.MIPS - id: MIPS - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: MIPS - nameWithType: ArchKind.MIPS - fullName: Ubiquity.NET.Llvm.ArchKind.MIPS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MIPS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'MIPS: mips, mipsallegrex' - example: [] - syntax: - content: MIPS = 16 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.MIPSel - commentId: F:Ubiquity.NET.Llvm.ArchKind.MIPSel - id: MIPSel - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: MIPSel - nameWithType: ArchKind.MIPSel - fullName: Ubiquity.NET.Llvm.ArchKind.MIPSel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MIPSel - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'MIPSEL: mipsel, mipsallegrexel' - example: [] - syntax: - content: MIPSel = 17 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.MIPS64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.MIPS64 - id: MIPS64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: MIPS64 - nameWithType: ArchKind.MIPS64 - fullName: Ubiquity.NET.Llvm.ArchKind.MIPS64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MIPS64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: MIPS 64 bit - example: [] - syntax: - content: MIPS64 = 18 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.MIPS64el - commentId: F:Ubiquity.NET.Llvm.ArchKind.MIPS64el - id: MIPS64el - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: MIPS64el - nameWithType: ArchKind.MIPS64el - fullName: Ubiquity.NET.Llvm.ArchKind.MIPS64el - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MIPS64el - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 72 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: MIPS 64-bit little endian - example: [] - syntax: - content: MIPS64el = 19 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.MSP430 - commentId: F:Ubiquity.NET.Llvm.ArchKind.MSP430 - id: MSP430 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: MSP430 - nameWithType: ArchKind.MSP430 - fullName: Ubiquity.NET.Llvm.ArchKind.MSP430 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MSP430 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 75 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: MSP430 - example: [] - syntax: - content: MSP430 = 20 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.PPC - commentId: F:Ubiquity.NET.Llvm.ArchKind.PPC - id: PPC - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: PPC - nameWithType: ArchKind.PPC - fullName: Ubiquity.NET.Llvm.ArchKind.PPC - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PPC - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 78 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: PowerPC - example: [] - syntax: - content: PPC = 21 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.PPCle - commentId: F:Ubiquity.NET.Llvm.ArchKind.PPCle - id: PPCle - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: PPCle - nameWithType: ArchKind.PPCle - fullName: Ubiquity.NET.Llvm.ArchKind.PPCle - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PPCle - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 81 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: powerpc (little endian) - example: [] - syntax: - content: PPCle = 22 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.PPC64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.PPC64 - id: PPC64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: PPC64 - nameWithType: ArchKind.PPC64 - fullName: Ubiquity.NET.Llvm.ArchKind.PPC64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PPC64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 84 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: PowerPC 64-bit - example: [] - syntax: - content: PPC64 = 23 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.PPC64le - commentId: F:Ubiquity.NET.Llvm.ArchKind.PPC64le - id: PPC64le - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: PPC64le - nameWithType: ArchKind.PPC64le - fullName: Ubiquity.NET.Llvm.ArchKind.PPC64le - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PPC64le - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 87 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: PowerPC 64-bit little endian - example: [] - syntax: - content: PPC64le = 24 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.R600 - commentId: F:Ubiquity.NET.Llvm.ArchKind.R600 - id: R600 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: R600 - nameWithType: ArchKind.R600 - fullName: Ubiquity.NET.Llvm.ArchKind.R600 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: R600 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 90 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: R600 AMD GPUS HD2XXX-HD6XXX - example: [] - syntax: - content: R600 = 25 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.AMDGCN - commentId: F:Ubiquity.NET.Llvm.ArchKind.AMDGCN - id: AMDGCN - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: AMDGCN - nameWithType: ArchKind.AMDGCN - fullName: Ubiquity.NET.Llvm.ArchKind.AMDGCN - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGCN - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 93 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD GCN GPUs - example: [] - syntax: - content: AMDGCN = 26 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.RiscV32 - commentId: F:Ubiquity.NET.Llvm.ArchKind.RiscV32 - id: RiscV32 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: RiscV32 - nameWithType: ArchKind.RiscV32 - fullName: Ubiquity.NET.Llvm.ArchKind.RiscV32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RiscV32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 96 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: RISC-V (32-bit) - example: [] - syntax: - content: RiscV32 = 27 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.RiscV64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.RiscV64 - id: RiscV64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: RiscV64 - nameWithType: ArchKind.RiscV64 - fullName: Ubiquity.NET.Llvm.ArchKind.RiscV64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RiscV64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 99 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: RISC-V (64-bit) - example: [] - syntax: - content: RiscV64 = 28 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Sparc - commentId: F:Ubiquity.NET.Llvm.ArchKind.Sparc - id: Sparc - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Sparc - nameWithType: ArchKind.Sparc - fullName: Ubiquity.NET.Llvm.ArchKind.Sparc - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Sparc - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 102 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Sparc - example: [] - syntax: - content: Sparc = 29 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Sparcv9 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Sparcv9 - id: Sparcv9 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Sparcv9 - nameWithType: ArchKind.Sparcv9 - fullName: Ubiquity.NET.Llvm.ArchKind.Sparcv9 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Sparcv9 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 105 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SPARC V9 - example: [] - syntax: - content: Sparcv9 = 30 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Sparcel - commentId: F:Ubiquity.NET.Llvm.ArchKind.Sparcel - id: Sparcel - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Sparcel - nameWithType: ArchKind.Sparcel - fullName: Ubiquity.NET.Llvm.ArchKind.Sparcel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Sparcel - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 108 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SPARC Little-Endian - example: [] - syntax: - content: Sparcel = 31 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.SystemZ - commentId: F:Ubiquity.NET.Llvm.ArchKind.SystemZ - id: SystemZ - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: SystemZ - nameWithType: ArchKind.SystemZ - fullName: Ubiquity.NET.Llvm.ArchKind.SystemZ - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SystemZ - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 111 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SystemZ - s390x - example: [] - syntax: - content: SystemZ = 32 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.TCE - commentId: F:Ubiquity.NET.Llvm.ArchKind.TCE - id: TCE - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: TCE - nameWithType: ArchKind.TCE - fullName: Ubiquity.NET.Llvm.ArchKind.TCE - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TCE - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 114 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: TCE - example: [] - syntax: - content: TCE = 33 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.TCEle - commentId: F:Ubiquity.NET.Llvm.ArchKind.TCEle - id: TCEle - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: TCEle - nameWithType: ArchKind.TCEle - fullName: Ubiquity.NET.Llvm.ArchKind.TCEle - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TCEle - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 117 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: TCE Little-Endian - example: [] - syntax: - content: TCEle = 34 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Thumb - commentId: F:Ubiquity.NET.Llvm.ArchKind.Thumb - id: Thumb - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Thumb - nameWithType: ArchKind.Thumb - fullName: Ubiquity.NET.Llvm.ArchKind.Thumb - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Thumb - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 120 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Thumb (little-endian) - example: [] - syntax: - content: Thumb = 35 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Thumbeb - commentId: F:Ubiquity.NET.Llvm.ArchKind.Thumbeb - id: Thumbeb - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Thumbeb - nameWithType: ArchKind.Thumbeb - fullName: Ubiquity.NET.Llvm.ArchKind.Thumbeb - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Thumbeb - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 123 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Thumb (big-endian) - example: [] - syntax: - content: Thumbeb = 36 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.X86 - commentId: F:Ubiquity.NET.Llvm.ArchKind.X86 - id: X86 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: X86 - nameWithType: ArchKind.X86 - fullName: Ubiquity.NET.Llvm.ArchKind.X86 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 126 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: x86 i[3-9]86 - example: [] - syntax: - content: X86 = 37 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Amd64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Amd64 - id: Amd64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Amd64 - nameWithType: ArchKind.Amd64 - fullName: Ubiquity.NET.Llvm.ArchKind.Amd64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Amd64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: X86 64-bit (amd64) - example: [] - syntax: - content: Amd64 = 38 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Xcore - commentId: F:Ubiquity.NET.Llvm.ArchKind.Xcore - id: Xcore - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Xcore - nameWithType: ArchKind.Xcore - fullName: Ubiquity.NET.Llvm.ArchKind.Xcore - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Xcore - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 132 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: XCore - example: [] - syntax: - content: Xcore = 39 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Xtensa - commentId: F:Ubiquity.NET.Llvm.ArchKind.Xtensa - id: Xtensa - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Xtensa - nameWithType: ArchKind.Xtensa - fullName: Ubiquity.NET.Llvm.ArchKind.Xtensa - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Xtensa - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 135 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: 'Tensilica: Xtensa' - example: [] - syntax: - content: Xtensa = 40 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Nvptx - commentId: F:Ubiquity.NET.Llvm.ArchKind.Nvptx - id: Nvptx - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Nvptx - nameWithType: ArchKind.Nvptx - fullName: Ubiquity.NET.Llvm.ArchKind.Nvptx - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Nvptx - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 138 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: NVidia PTX 32-bit - example: [] - syntax: - content: Nvptx = 41 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Nvptx64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Nvptx64 - id: Nvptx64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Nvptx64 - nameWithType: ArchKind.Nvptx64 - fullName: Ubiquity.NET.Llvm.ArchKind.Nvptx64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Nvptx64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 141 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: NVidia PTX 64-bit - example: [] - syntax: - content: Nvptx64 = 42 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Amdil - commentId: F:Ubiquity.NET.Llvm.ArchKind.Amdil - id: Amdil - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Amdil - nameWithType: ArchKind.Amdil - fullName: Ubiquity.NET.Llvm.ArchKind.Amdil - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Amdil - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 144 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD IL - example: [] - syntax: - content: Amdil = 43 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Amdil64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Amdil64 - id: Amdil64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Amdil64 - nameWithType: ArchKind.Amdil64 - fullName: Ubiquity.NET.Llvm.ArchKind.Amdil64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Amdil64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 147 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD IL 64-bit pointers - example: [] - syntax: - content: Amdil64 = 44 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Hsail - commentId: F:Ubiquity.NET.Llvm.ArchKind.Hsail - id: Hsail - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Hsail - nameWithType: ArchKind.Hsail - fullName: Ubiquity.NET.Llvm.ArchKind.Hsail - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Hsail - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 150 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD HSAIL - example: [] - syntax: - content: Hsail = 45 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Hsail64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Hsail64 - id: Hsail64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Hsail64 - nameWithType: ArchKind.Hsail64 - fullName: Ubiquity.NET.Llvm.ArchKind.Hsail64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Hsail64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 153 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD HSAIL with 64-bit pointers - example: [] - syntax: - content: Hsail64 = 46 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Spir - commentId: F:Ubiquity.NET.Llvm.ArchKind.Spir - id: Spir - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Spir - nameWithType: ArchKind.Spir - fullName: Ubiquity.NET.Llvm.ArchKind.Spir - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Spir - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 156 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Standard Portable IR for OpenCL 32-bit version - example: [] - syntax: - content: Spir = 47 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Spir64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Spir64 - id: Spir64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Spir64 - nameWithType: ArchKind.Spir64 - fullName: Ubiquity.NET.Llvm.ArchKind.Spir64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Spir64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 159 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Standard Portable IR for OpenCL 64-bit version - example: [] - syntax: - content: Spir64 = 48 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.SpirV - commentId: F:Ubiquity.NET.Llvm.ArchKind.SpirV - id: SpirV - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: SpirV - nameWithType: ArchKind.SpirV - fullName: Ubiquity.NET.Llvm.ArchKind.SpirV - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SpirV - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 162 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SPIR-V with logical memory layout. - example: [] - syntax: - content: SpirV = 49 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.SpirV32 - commentId: F:Ubiquity.NET.Llvm.ArchKind.SpirV32 - id: SpirV32 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: SpirV32 - nameWithType: ArchKind.SpirV32 - fullName: Ubiquity.NET.Llvm.ArchKind.SpirV32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SpirV32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 165 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SPIR-V with 32-bit pointers - example: [] - syntax: - content: SpirV32 = 50 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.SpirV64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.SpirV64 - id: SpirV64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: SpirV64 - nameWithType: ArchKind.SpirV64 - fullName: Ubiquity.NET.Llvm.ArchKind.SpirV64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SpirV64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 168 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SPIR-V with 64-bit pointers - example: [] - syntax: - content: SpirV64 = 51 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Kalimba - commentId: F:Ubiquity.NET.Llvm.ArchKind.Kalimba - id: Kalimba - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Kalimba - nameWithType: ArchKind.Kalimba - fullName: Ubiquity.NET.Llvm.ArchKind.Kalimba - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kalimba - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 171 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Generic Kalimba - example: [] - syntax: - content: Kalimba = 52 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Shave - commentId: F:Ubiquity.NET.Llvm.ArchKind.Shave - id: Shave - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Shave - nameWithType: ArchKind.Shave - fullName: Ubiquity.NET.Llvm.ArchKind.Shave - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Shave - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 174 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Movidius vector VLIW processors - example: [] - syntax: - content: Shave = 53 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Lanai - commentId: F:Ubiquity.NET.Llvm.ArchKind.Lanai - id: Lanai - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Lanai - nameWithType: ArchKind.Lanai - fullName: Ubiquity.NET.Llvm.ArchKind.Lanai - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lanai - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 177 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Lanai 32-bit - example: [] - syntax: - content: Lanai = 54 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Wasm32 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Wasm32 - id: Wasm32 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Wasm32 - nameWithType: ArchKind.Wasm32 - fullName: Ubiquity.NET.Llvm.ArchKind.Wasm32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Wasm32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 180 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: WebAssembly with 32-bit pointers - example: [] - syntax: - content: Wasm32 = 55 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Wasm64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.Wasm64 - id: Wasm64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Wasm64 - nameWithType: ArchKind.Wasm64 - fullName: Ubiquity.NET.Llvm.ArchKind.Wasm64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Wasm64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 183 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: WebAssembly with 64-bit pointers - example: [] - syntax: - content: Wasm64 = 56 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.RenderScript32 - commentId: F:Ubiquity.NET.Llvm.ArchKind.RenderScript32 - id: RenderScript32 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: RenderScript32 - nameWithType: ArchKind.RenderScript32 - fullName: Ubiquity.NET.Llvm.ArchKind.RenderScript32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RenderScript32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 186 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Renderscript 32-bit - example: [] - syntax: - content: RenderScript32 = 57 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.RenderScript64 - commentId: F:Ubiquity.NET.Llvm.ArchKind.RenderScript64 - id: RenderScript64 - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: RenderScript64 - nameWithType: ArchKind.RenderScript64 - fullName: Ubiquity.NET.Llvm.ArchKind.RenderScript64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RenderScript64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 189 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Renderscript 64-bit - example: [] - syntax: - content: RenderScript64 = 58 - return: - type: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.ArchKind.Ve - commentId: F:Ubiquity.NET.Llvm.ArchKind.Ve - id: Ve - parent: Ubiquity.NET.Llvm.ArchKind - langs: - - csharp - - vb - name: Ve - nameWithType: ArchKind.Ve - fullName: Ubiquity.NET.Llvm.ArchKind.Ve - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ve - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 192 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: NEC SX Aurora Vector Engine - example: [] - syntax: - content: Ve = 59 - return: - type: Ubiquity.NET.Llvm.ArchKind -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.ArchKind - commentId: T:Ubiquity.NET.Llvm.ArchKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ArchKind.html - name: ArchKind - nameWithType: ArchKind - fullName: Ubiquity.NET.Llvm.ArchKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Blake3Hash.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Blake3Hash.yml deleted file mode 100644 index a75e3fe4a1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Blake3Hash.yml +++ /dev/null @@ -1,1388 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Blake3Hash - commentId: T:Ubiquity.NET.Llvm.Blake3Hash - id: Blake3Hash - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.Blake3Hash.HashCore(System.Byte[],System.Int32,System.Int32) - - Ubiquity.NET.Llvm.Blake3Hash.HashFinal - - Ubiquity.NET.Llvm.Blake3Hash.Initialize - langs: - - csharp - - vb - name: Blake3Hash - nameWithType: Blake3Hash - fullName: Ubiquity.NET.Llvm.Blake3Hash - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Blake3Hash.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Blake3Hash - path: ../src/Ubiquity.NET.Llvm/Blake3Hash.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: .NET Wrapper around the LLVM implementation of the Blake3 hash algorithm - example: [] - syntax: - content: 'public class Blake3Hash : HashAlgorithm, ICryptoTransform, IDisposable' - content.vb: Public Class Blake3Hash Inherits HashAlgorithm Implements ICryptoTransform, IDisposable - seealso: - - linkType: HRef - linkId: https://en.wikipedia.org/wiki/BLAKE_(hash_function) - altText: https://en.wikipedia.org/wiki/BLAKE_(hash_function) - - linkType: HRef - linkId: https://llvm.org/doxygen/md_lib_Support_BLAKE3_README.html - altText: https://llvm.org/doxygen/md_lib_Support_BLAKE3_README.html - - linkType: HRef - linkId: https://llvm.org/doxygen/classllvm_1_1BLAKE3.html - altText: https://llvm.org/doxygen/classllvm_1_1BLAKE3.html - inheritance: - - System.Object - - System.Security.Cryptography.HashAlgorithm - implements: - - System.Security.Cryptography.ICryptoTransform - - System.IDisposable - inheritedMembers: - - System.Security.Cryptography.HashAlgorithm.HashSizeValue - - System.Security.Cryptography.HashAlgorithm.HashValue - - System.Security.Cryptography.HashAlgorithm.State - - System.Security.Cryptography.HashAlgorithm.Clear - - System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[]) - - System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[],System.Int32,System.Int32) - - System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream) - - System.Security.Cryptography.HashAlgorithm.ComputeHashAsync(System.IO.Stream,System.Threading.CancellationToken) - - System.Security.Cryptography.HashAlgorithm.Create - - System.Security.Cryptography.HashAlgorithm.Create(System.String) - - System.Security.Cryptography.HashAlgorithm.Dispose - - System.Security.Cryptography.HashAlgorithm.Dispose(System.Boolean) - - System.Security.Cryptography.HashAlgorithm.HashCore(System.ReadOnlySpan{System.Byte}) - - System.Security.Cryptography.HashAlgorithm.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) - - System.Security.Cryptography.HashAlgorithm.TransformFinalBlock(System.Byte[],System.Int32,System.Int32) - - System.Security.Cryptography.HashAlgorithm.TryComputeHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) - - System.Security.Cryptography.HashAlgorithm.TryHashFinal(System.Span{System.Byte},System.Int32@) - - System.Security.Cryptography.HashAlgorithm.CanReuseTransform - - System.Security.Cryptography.HashAlgorithm.CanTransformMultipleBlocks - - System.Security.Cryptography.HashAlgorithm.Hash - - System.Security.Cryptography.HashAlgorithm.HashSize - - System.Security.Cryptography.HashAlgorithm.InputBlockSize - - System.Security.Cryptography.HashAlgorithm.OutputBlockSize - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Blake3Hash.Initialize - commentId: M:Ubiquity.NET.Llvm.Blake3Hash.Initialize - id: Initialize - parent: Ubiquity.NET.Llvm.Blake3Hash - langs: - - csharp - - vb - name: Initialize() - nameWithType: Blake3Hash.Initialize() - fullName: Ubiquity.NET.Llvm.Blake3Hash.Initialize() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Blake3Hash.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Initialize - path: ../src/Ubiquity.NET.Llvm/Blake3Hash.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Resets the hash algorithm to its initial state. - example: [] - syntax: - content: public override void Initialize() - content.vb: Public Overrides Sub Initialize() - overridden: System.Security.Cryptography.HashAlgorithm.Initialize - overload: Ubiquity.NET.Llvm.Blake3Hash.Initialize* -- uid: Ubiquity.NET.Llvm.Blake3Hash.HashCore(System.Byte[],System.Int32,System.Int32) - commentId: M:Ubiquity.NET.Llvm.Blake3Hash.HashCore(System.Byte[],System.Int32,System.Int32) - id: HashCore(System.Byte[],System.Int32,System.Int32) - parent: Ubiquity.NET.Llvm.Blake3Hash - langs: - - csharp - - vb - name: HashCore(byte[], int, int) - nameWithType: Blake3Hash.HashCore(byte[], int, int) - fullName: Ubiquity.NET.Llvm.Blake3Hash.HashCore(byte[], int, int) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Blake3Hash.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HashCore - path: ../src/Ubiquity.NET.Llvm/Blake3Hash.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: When overridden in a derived class, routes data written to the object into the hash algorithm for computing the hash. - example: [] - syntax: - content: protected override void HashCore(byte[] array, int ibStart, int cbSize) - parameters: - - id: array - type: System.Byte[] - description: The input to compute the hash code for. - - id: ibStart - type: System.Int32 - description: The offset into the byte array from which to begin using data. - - id: cbSize - type: System.Int32 - description: The number of bytes in the byte array to use as data. - content.vb: Protected Overrides Sub HashCore(array As Byte(), ibStart As Integer, cbSize As Integer) - overridden: System.Security.Cryptography.HashAlgorithm.HashCore(System.Byte[],System.Int32,System.Int32) - overload: Ubiquity.NET.Llvm.Blake3Hash.HashCore* - nameWithType.vb: Blake3Hash.HashCore(Byte(), Integer, Integer) - fullName.vb: Ubiquity.NET.Llvm.Blake3Hash.HashCore(Byte(), Integer, Integer) - name.vb: HashCore(Byte(), Integer, Integer) -- uid: Ubiquity.NET.Llvm.Blake3Hash.HashFinal - commentId: M:Ubiquity.NET.Llvm.Blake3Hash.HashFinal - id: HashFinal - parent: Ubiquity.NET.Llvm.Blake3Hash - langs: - - csharp - - vb - name: HashFinal() - nameWithType: Blake3Hash.HashFinal() - fullName: Ubiquity.NET.Llvm.Blake3Hash.HashFinal() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Blake3Hash.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HashFinal - path: ../src/Ubiquity.NET.Llvm/Blake3Hash.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: When overridden in a derived class, finalizes the hash computation after the last data is processed by the cryptographic hash algorithm. - example: [] - syntax: - content: protected override byte[] HashFinal() - return: - type: System.Byte[] - description: The computed hash code. - content.vb: Protected Overrides Function HashFinal() As Byte() - overridden: System.Security.Cryptography.HashAlgorithm.HashFinal - overload: Ubiquity.NET.Llvm.Blake3Hash.HashFinal* -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Security.Cryptography.HashAlgorithm - commentId: T:System.Security.Cryptography.HashAlgorithm - parent: System.Security.Cryptography - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm - name: HashAlgorithm - nameWithType: HashAlgorithm - fullName: System.Security.Cryptography.HashAlgorithm -- uid: System.Security.Cryptography.ICryptoTransform - commentId: T:System.Security.Cryptography.ICryptoTransform - parent: System.Security.Cryptography - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.icryptotransform - name: ICryptoTransform - nameWithType: ICryptoTransform - fullName: System.Security.Cryptography.ICryptoTransform -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Security.Cryptography.HashAlgorithm.HashSizeValue - commentId: F:System.Security.Cryptography.HashAlgorithm.HashSizeValue - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashsizevalue - name: HashSizeValue - nameWithType: HashAlgorithm.HashSizeValue - fullName: System.Security.Cryptography.HashAlgorithm.HashSizeValue -- uid: System.Security.Cryptography.HashAlgorithm.HashValue - commentId: F:System.Security.Cryptography.HashAlgorithm.HashValue - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashvalue - name: HashValue - nameWithType: HashAlgorithm.HashValue - fullName: System.Security.Cryptography.HashAlgorithm.HashValue -- uid: System.Security.Cryptography.HashAlgorithm.State - commentId: F:System.Security.Cryptography.HashAlgorithm.State - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.state - name: State - nameWithType: HashAlgorithm.State - fullName: System.Security.Cryptography.HashAlgorithm.State -- uid: System.Security.Cryptography.HashAlgorithm.Clear - commentId: M:System.Security.Cryptography.HashAlgorithm.Clear - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.clear - name: Clear() - nameWithType: HashAlgorithm.Clear() - fullName: System.Security.Cryptography.HashAlgorithm.Clear() - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.Clear - name: Clear - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.clear - - name: ( - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.Clear - name: Clear - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.clear - - name: ( - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[]) - commentId: M:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[]) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-byte()) - name: ComputeHash(byte[]) - nameWithType: HashAlgorithm.ComputeHash(byte[]) - fullName: System.Security.Cryptography.HashAlgorithm.ComputeHash(byte[]) - nameWithType.vb: HashAlgorithm.ComputeHash(Byte()) - fullName.vb: System.Security.Cryptography.HashAlgorithm.ComputeHash(Byte()) - name.vb: ComputeHash(Byte()) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[]) - name: ComputeHash - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-byte()) - - name: ( - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[]) - name: ComputeHash - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-byte()) - - name: ( - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[],System.Int32,System.Int32) - commentId: M:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[],System.Int32,System.Int32) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-byte()-system-int32-system-int32) - name: ComputeHash(byte[], int, int) - nameWithType: HashAlgorithm.ComputeHash(byte[], int, int) - fullName: System.Security.Cryptography.HashAlgorithm.ComputeHash(byte[], int, int) - nameWithType.vb: HashAlgorithm.ComputeHash(Byte(), Integer, Integer) - fullName.vb: System.Security.Cryptography.HashAlgorithm.ComputeHash(Byte(), Integer, Integer) - name.vb: ComputeHash(Byte(), Integer, Integer) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[],System.Int32,System.Int32) - name: ComputeHash - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-byte()-system-int32-system-int32) - - name: ( - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[],System.Int32,System.Int32) - name: ComputeHash - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-byte()-system-int32-system-int32) - - name: ( - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream) - commentId: M:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-io-stream) - name: ComputeHash(Stream) - nameWithType: HashAlgorithm.ComputeHash(Stream) - fullName: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream) - name: ComputeHash - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-io-stream) - - name: ( - - uid: System.IO.Stream - name: Stream - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.io.stream - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream) - name: ComputeHash - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehash#system-security-cryptography-hashalgorithm-computehash(system-io-stream) - - name: ( - - uid: System.IO.Stream - name: Stream - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.io.stream - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.ComputeHashAsync(System.IO.Stream,System.Threading.CancellationToken) - commentId: M:System.Security.Cryptography.HashAlgorithm.ComputeHashAsync(System.IO.Stream,System.Threading.CancellationToken) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehashasync - name: ComputeHashAsync(Stream, CancellationToken) - nameWithType: HashAlgorithm.ComputeHashAsync(Stream, CancellationToken) - fullName: System.Security.Cryptography.HashAlgorithm.ComputeHashAsync(System.IO.Stream, System.Threading.CancellationToken) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.ComputeHashAsync(System.IO.Stream,System.Threading.CancellationToken) - name: ComputeHashAsync - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehashasync - - name: ( - - uid: System.IO.Stream - name: Stream - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.io.stream - - name: ',' - - name: " " - - uid: System.Threading.CancellationToken - name: CancellationToken - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.threading.cancellationtoken - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.ComputeHashAsync(System.IO.Stream,System.Threading.CancellationToken) - name: ComputeHashAsync - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.computehashasync - - name: ( - - uid: System.IO.Stream - name: Stream - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.io.stream - - name: ',' - - name: " " - - uid: System.Threading.CancellationToken - name: CancellationToken - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.threading.cancellationtoken - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.Create - commentId: M:System.Security.Cryptography.HashAlgorithm.Create - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.create#system-security-cryptography-hashalgorithm-create - name: Create() - nameWithType: HashAlgorithm.Create() - fullName: System.Security.Cryptography.HashAlgorithm.Create() - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.Create - name: Create - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.create#system-security-cryptography-hashalgorithm-create - - name: ( - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.Create - name: Create - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.create#system-security-cryptography-hashalgorithm-create - - name: ( - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.Create(System.String) - commentId: M:System.Security.Cryptography.HashAlgorithm.Create(System.String) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.create#system-security-cryptography-hashalgorithm-create(system-string) - name: Create(string) - nameWithType: HashAlgorithm.Create(string) - fullName: System.Security.Cryptography.HashAlgorithm.Create(string) - nameWithType.vb: HashAlgorithm.Create(String) - fullName.vb: System.Security.Cryptography.HashAlgorithm.Create(String) - name.vb: Create(String) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.Create(System.String) - name: Create - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.create#system-security-cryptography-hashalgorithm-create(system-string) - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.Create(System.String) - name: Create - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.create#system-security-cryptography-hashalgorithm-create(system-string) - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.Dispose - commentId: M:System.Security.Cryptography.HashAlgorithm.Dispose - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.dispose#system-security-cryptography-hashalgorithm-dispose - name: Dispose() - nameWithType: HashAlgorithm.Dispose() - fullName: System.Security.Cryptography.HashAlgorithm.Dispose() - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.dispose#system-security-cryptography-hashalgorithm-dispose - - name: ( - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.dispose#system-security-cryptography-hashalgorithm-dispose - - name: ( - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.Dispose(System.Boolean) - commentId: M:System.Security.Cryptography.HashAlgorithm.Dispose(System.Boolean) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.dispose#system-security-cryptography-hashalgorithm-dispose(system-boolean) - name: Dispose(bool) - nameWithType: HashAlgorithm.Dispose(bool) - fullName: System.Security.Cryptography.HashAlgorithm.Dispose(bool) - nameWithType.vb: HashAlgorithm.Dispose(Boolean) - fullName.vb: System.Security.Cryptography.HashAlgorithm.Dispose(Boolean) - name.vb: Dispose(Boolean) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.Dispose(System.Boolean) - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.dispose#system-security-cryptography-hashalgorithm-dispose(system-boolean) - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.Dispose(System.Boolean) - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.dispose#system-security-cryptography-hashalgorithm-dispose(system-boolean) - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.HashCore(System.ReadOnlySpan{System.Byte}) - commentId: M:System.Security.Cryptography.HashAlgorithm.HashCore(System.ReadOnlySpan{System.Byte}) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashcore#system-security-cryptography-hashalgorithm-hashcore(system-readonlyspan((system-byte))) - name: HashCore(ReadOnlySpan) - nameWithType: HashAlgorithm.HashCore(ReadOnlySpan) - fullName: System.Security.Cryptography.HashAlgorithm.HashCore(System.ReadOnlySpan) - nameWithType.vb: HashAlgorithm.HashCore(ReadOnlySpan(Of Byte)) - fullName.vb: System.Security.Cryptography.HashAlgorithm.HashCore(System.ReadOnlySpan(Of Byte)) - name.vb: HashCore(ReadOnlySpan(Of Byte)) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.HashCore(System.ReadOnlySpan{System.Byte}) - name: HashCore - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashcore#system-security-cryptography-hashalgorithm-hashcore(system-readonlyspan((system-byte))) - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.HashCore(System.ReadOnlySpan{System.Byte}) - name: HashCore - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashcore#system-security-cryptography-hashalgorithm-hashcore(system-readonlyspan((system-byte))) - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) - commentId: M:System.Security.Cryptography.HashAlgorithm.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.transformblock - name: TransformBlock(byte[], int, int, byte[], int) - nameWithType: HashAlgorithm.TransformBlock(byte[], int, int, byte[], int) - fullName: System.Security.Cryptography.HashAlgorithm.TransformBlock(byte[], int, int, byte[], int) - nameWithType.vb: HashAlgorithm.TransformBlock(Byte(), Integer, Integer, Byte(), Integer) - fullName.vb: System.Security.Cryptography.HashAlgorithm.TransformBlock(Byte(), Integer, Integer, Byte(), Integer) - name.vb: TransformBlock(Byte(), Integer, Integer, Byte(), Integer) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) - name: TransformBlock - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.transformblock - - name: ( - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) - name: TransformBlock - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.transformblock - - name: ( - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.TransformFinalBlock(System.Byte[],System.Int32,System.Int32) - commentId: M:System.Security.Cryptography.HashAlgorithm.TransformFinalBlock(System.Byte[],System.Int32,System.Int32) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.transformfinalblock - name: TransformFinalBlock(byte[], int, int) - nameWithType: HashAlgorithm.TransformFinalBlock(byte[], int, int) - fullName: System.Security.Cryptography.HashAlgorithm.TransformFinalBlock(byte[], int, int) - nameWithType.vb: HashAlgorithm.TransformFinalBlock(Byte(), Integer, Integer) - fullName.vb: System.Security.Cryptography.HashAlgorithm.TransformFinalBlock(Byte(), Integer, Integer) - name.vb: TransformFinalBlock(Byte(), Integer, Integer) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.TransformFinalBlock(System.Byte[],System.Int32,System.Int32) - name: TransformFinalBlock - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.transformfinalblock - - name: ( - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.TransformFinalBlock(System.Byte[],System.Int32,System.Int32) - name: TransformFinalBlock - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.transformfinalblock - - name: ( - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.TryComputeHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) - commentId: M:System.Security.Cryptography.HashAlgorithm.TryComputeHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.trycomputehash - name: TryComputeHash(ReadOnlySpan, Span, out int) - nameWithType: HashAlgorithm.TryComputeHash(ReadOnlySpan, Span, out int) - fullName: System.Security.Cryptography.HashAlgorithm.TryComputeHash(System.ReadOnlySpan, System.Span, out int) - nameWithType.vb: HashAlgorithm.TryComputeHash(ReadOnlySpan(Of Byte), Span(Of Byte), Integer) - fullName.vb: System.Security.Cryptography.HashAlgorithm.TryComputeHash(System.ReadOnlySpan(Of Byte), System.Span(Of Byte), Integer) - name.vb: TryComputeHash(ReadOnlySpan(Of Byte), Span(Of Byte), Integer) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.TryComputeHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) - name: TryComputeHash - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.trycomputehash - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ',' - - name: " " - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.TryComputeHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@) - name: TryComputeHash - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.trycomputehash - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ',' - - name: " " - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.TryHashFinal(System.Span{System.Byte},System.Int32@) - commentId: M:System.Security.Cryptography.HashAlgorithm.TryHashFinal(System.Span{System.Byte},System.Int32@) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.tryhashfinal - name: TryHashFinal(Span, out int) - nameWithType: HashAlgorithm.TryHashFinal(Span, out int) - fullName: System.Security.Cryptography.HashAlgorithm.TryHashFinal(System.Span, out int) - nameWithType.vb: HashAlgorithm.TryHashFinal(Span(Of Byte), Integer) - fullName.vb: System.Security.Cryptography.HashAlgorithm.TryHashFinal(System.Span(Of Byte), Integer) - name.vb: TryHashFinal(Span(Of Byte), Integer) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.TryHashFinal(System.Span{System.Byte},System.Int32@) - name: TryHashFinal - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.tryhashfinal - - name: ( - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.TryHashFinal(System.Span{System.Byte},System.Int32@) - name: TryHashFinal - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.tryhashfinal - - name: ( - - uid: System.Span`1 - name: Span - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.span-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Security.Cryptography.HashAlgorithm.CanReuseTransform - commentId: P:System.Security.Cryptography.HashAlgorithm.CanReuseTransform - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.canreusetransform - name: CanReuseTransform - nameWithType: HashAlgorithm.CanReuseTransform - fullName: System.Security.Cryptography.HashAlgorithm.CanReuseTransform -- uid: System.Security.Cryptography.HashAlgorithm.CanTransformMultipleBlocks - commentId: P:System.Security.Cryptography.HashAlgorithm.CanTransformMultipleBlocks - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.cantransformmultipleblocks - name: CanTransformMultipleBlocks - nameWithType: HashAlgorithm.CanTransformMultipleBlocks - fullName: System.Security.Cryptography.HashAlgorithm.CanTransformMultipleBlocks -- uid: System.Security.Cryptography.HashAlgorithm.Hash - commentId: P:System.Security.Cryptography.HashAlgorithm.Hash - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hash - name: Hash - nameWithType: HashAlgorithm.Hash - fullName: System.Security.Cryptography.HashAlgorithm.Hash -- uid: System.Security.Cryptography.HashAlgorithm.HashSize - commentId: P:System.Security.Cryptography.HashAlgorithm.HashSize - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashsize - name: HashSize - nameWithType: HashAlgorithm.HashSize - fullName: System.Security.Cryptography.HashAlgorithm.HashSize -- uid: System.Security.Cryptography.HashAlgorithm.InputBlockSize - commentId: P:System.Security.Cryptography.HashAlgorithm.InputBlockSize - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.inputblocksize - name: InputBlockSize - nameWithType: HashAlgorithm.InputBlockSize - fullName: System.Security.Cryptography.HashAlgorithm.InputBlockSize -- uid: System.Security.Cryptography.HashAlgorithm.OutputBlockSize - commentId: P:System.Security.Cryptography.HashAlgorithm.OutputBlockSize - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.outputblocksize - name: OutputBlockSize - nameWithType: HashAlgorithm.OutputBlockSize - fullName: System.Security.Cryptography.HashAlgorithm.OutputBlockSize -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.Security.Cryptography - commentId: N:System.Security.Cryptography - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Security.Cryptography - nameWithType: System.Security.Cryptography - fullName: System.Security.Cryptography - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Security - name: Security - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security - - name: . - - uid: System.Security.Cryptography - name: Cryptography - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Security - name: Security - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security - - name: . - - uid: System.Security.Cryptography - name: Cryptography - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography -- uid: System.Security.Cryptography.HashAlgorithm.Initialize - commentId: M:System.Security.Cryptography.HashAlgorithm.Initialize - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.initialize - name: Initialize() - nameWithType: HashAlgorithm.Initialize() - fullName: System.Security.Cryptography.HashAlgorithm.Initialize() - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.Initialize - name: Initialize - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.initialize - - name: ( - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.Initialize - name: Initialize - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.initialize - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Blake3Hash.Initialize* - commentId: Overload:Ubiquity.NET.Llvm.Blake3Hash.Initialize - href: Ubiquity.NET.Llvm.Blake3Hash.html#Ubiquity_NET_Llvm_Blake3Hash_Initialize - name: Initialize - nameWithType: Blake3Hash.Initialize - fullName: Ubiquity.NET.Llvm.Blake3Hash.Initialize -- uid: System.Security.Cryptography.HashAlgorithm.HashCore(System.Byte[],System.Int32,System.Int32) - commentId: M:System.Security.Cryptography.HashAlgorithm.HashCore(System.Byte[],System.Int32,System.Int32) - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashcore#system-security-cryptography-hashalgorithm-hashcore(system-byte()-system-int32-system-int32) - name: HashCore(byte[], int, int) - nameWithType: HashAlgorithm.HashCore(byte[], int, int) - fullName: System.Security.Cryptography.HashAlgorithm.HashCore(byte[], int, int) - nameWithType.vb: HashAlgorithm.HashCore(Byte(), Integer, Integer) - fullName.vb: System.Security.Cryptography.HashAlgorithm.HashCore(Byte(), Integer, Integer) - name.vb: HashCore(Byte(), Integer, Integer) - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.HashCore(System.Byte[],System.Int32,System.Int32) - name: HashCore - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashcore#system-security-cryptography-hashalgorithm-hashcore(system-byte()-system-int32-system-int32) - - name: ( - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.HashCore(System.Byte[],System.Int32,System.Int32) - name: HashCore - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashcore#system-security-cryptography-hashalgorithm-hashcore(system-byte()-system-int32-system-int32) - - name: ( - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Blake3Hash.HashCore* - commentId: Overload:Ubiquity.NET.Llvm.Blake3Hash.HashCore - href: Ubiquity.NET.Llvm.Blake3Hash.html#Ubiquity_NET_Llvm_Blake3Hash_HashCore_System_Byte___System_Int32_System_Int32_ - name: HashCore - nameWithType: Blake3Hash.HashCore - fullName: Ubiquity.NET.Llvm.Blake3Hash.HashCore -- uid: System.Byte[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte[] - nameWithType: byte[] - fullName: byte[] - nameWithType.vb: Byte() - fullName.vb: Byte() - name.vb: Byte() - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Security.Cryptography.HashAlgorithm.HashFinal - commentId: M:System.Security.Cryptography.HashAlgorithm.HashFinal - parent: System.Security.Cryptography.HashAlgorithm - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashfinal - name: HashFinal() - nameWithType: HashAlgorithm.HashFinal() - fullName: System.Security.Cryptography.HashAlgorithm.HashFinal() - spec.csharp: - - uid: System.Security.Cryptography.HashAlgorithm.HashFinal - name: HashFinal - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashfinal - - name: ( - - name: ) - spec.vb: - - uid: System.Security.Cryptography.HashAlgorithm.HashFinal - name: HashFinal - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.hashalgorithm.hashfinal - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Blake3Hash.HashFinal* - commentId: Overload:Ubiquity.NET.Llvm.Blake3Hash.HashFinal - href: Ubiquity.NET.Llvm.Blake3Hash.html#Ubiquity_NET_Llvm_Blake3Hash_HashFinal - name: HashFinal - nameWithType: Blake3Hash.HashFinal - fullName: Ubiquity.NET.Llvm.Blake3Hash.HashFinal diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ByteOrdering.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ByteOrdering.yml deleted file mode 100644 index 70443094e3..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ByteOrdering.yml +++ /dev/null @@ -1,126 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ByteOrdering - commentId: T:Ubiquity.NET.Llvm.ByteOrdering - id: ByteOrdering - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ByteOrdering.BigEndian - - Ubiquity.NET.Llvm.ByteOrdering.LittleEndian - langs: - - csharp - - vb - name: ByteOrdering - nameWithType: ByteOrdering - fullName: Ubiquity.NET.Llvm.ByteOrdering - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ByteOrdering - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Byte ordering for target code generation and data type layout - example: [] - syntax: - content: public enum ByteOrdering - content.vb: Public Enum ByteOrdering -- uid: Ubiquity.NET.Llvm.ByteOrdering.LittleEndian - commentId: F:Ubiquity.NET.Llvm.ByteOrdering.LittleEndian - id: LittleEndian - parent: Ubiquity.NET.Llvm.ByteOrdering - langs: - - csharp - - vb - name: LittleEndian - nameWithType: ByteOrdering.LittleEndian - fullName: Ubiquity.NET.Llvm.ByteOrdering.LittleEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LittleEndian - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Little-Endian layout format - example: [] - syntax: - content: LittleEndian = 1 - return: - type: Ubiquity.NET.Llvm.ByteOrdering -- uid: Ubiquity.NET.Llvm.ByteOrdering.BigEndian - commentId: F:Ubiquity.NET.Llvm.ByteOrdering.BigEndian - id: BigEndian - parent: Ubiquity.NET.Llvm.ByteOrdering - langs: - - csharp - - vb - name: BigEndian - nameWithType: ByteOrdering.BigEndian - fullName: Ubiquity.NET.Llvm.ByteOrdering.BigEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BigEndian - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Big-Endian layout format - example: [] - syntax: - content: BigEndian = 0 - return: - type: Ubiquity.NET.Llvm.ByteOrdering -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.ByteOrdering - commentId: T:Ubiquity.NET.Llvm.ByteOrdering - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ByteOrdering.html - name: ByteOrdering - nameWithType: ByteOrdering - fullName: Ubiquity.NET.Llvm.ByteOrdering diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenFileKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenFileKind.yml deleted file mode 100644 index 17dcac9adb..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenFileKind.yml +++ /dev/null @@ -1,126 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.CodeGenFileKind - commentId: T:Ubiquity.NET.Llvm.CodeGenFileKind - id: CodeGenFileKind - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.CodeGenFileKind.AssemblySource - - Ubiquity.NET.Llvm.CodeGenFileKind.ObjectFile - langs: - - csharp - - vb - name: CodeGenFileKind - nameWithType: CodeGenFileKind - fullName: Ubiquity.NET.Llvm.CodeGenFileKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CodeGenFileKind - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Output file type for target code generation - example: [] - syntax: - content: public enum CodeGenFileKind - content.vb: Public Enum CodeGenFileKind -- uid: Ubiquity.NET.Llvm.CodeGenFileKind.AssemblySource - commentId: F:Ubiquity.NET.Llvm.CodeGenFileKind.AssemblySource - id: AssemblySource - parent: Ubiquity.NET.Llvm.CodeGenFileKind - langs: - - csharp - - vb - name: AssemblySource - nameWithType: CodeGenFileKind.AssemblySource - fullName: Ubiquity.NET.Llvm.CodeGenFileKind.AssemblySource - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AssemblySource - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Generate assembly source file - example: [] - syntax: - content: AssemblySource = 0 - return: - type: Ubiquity.NET.Llvm.CodeGenFileKind -- uid: Ubiquity.NET.Llvm.CodeGenFileKind.ObjectFile - commentId: F:Ubiquity.NET.Llvm.CodeGenFileKind.ObjectFile - id: ObjectFile - parent: Ubiquity.NET.Llvm.CodeGenFileKind - langs: - - csharp - - vb - name: ObjectFile - nameWithType: CodeGenFileKind.ObjectFile - fullName: Ubiquity.NET.Llvm.CodeGenFileKind.ObjectFile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ObjectFile - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Generate target object file - example: [] - syntax: - content: ObjectFile = 1 - return: - type: Ubiquity.NET.Llvm.CodeGenFileKind -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.CodeGenFileKind - commentId: T:Ubiquity.NET.Llvm.CodeGenFileKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenFileKind.html - name: CodeGenFileKind - nameWithType: CodeGenFileKind - fullName: Ubiquity.NET.Llvm.CodeGenFileKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenOpt.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenOpt.yml deleted file mode 100644 index 9c1c8459b8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenOpt.yml +++ /dev/null @@ -1,184 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.CodeGenOpt - commentId: T:Ubiquity.NET.Llvm.CodeGenOpt - id: CodeGenOpt - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.CodeGenOpt.Aggressive - - Ubiquity.NET.Llvm.CodeGenOpt.Default - - Ubiquity.NET.Llvm.CodeGenOpt.Less - - Ubiquity.NET.Llvm.CodeGenOpt.None - langs: - - csharp - - vb - name: CodeGenOpt - nameWithType: CodeGenOpt - fullName: Ubiquity.NET.Llvm.CodeGenOpt - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CodeGenOpt - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Optimization level for target code generation - example: [] - syntax: - content: public enum CodeGenOpt - content.vb: Public Enum CodeGenOpt -- uid: Ubiquity.NET.Llvm.CodeGenOpt.None - commentId: F:Ubiquity.NET.Llvm.CodeGenOpt.None - id: None - parent: Ubiquity.NET.Llvm.CodeGenOpt - langs: - - csharp - - vb - name: None - nameWithType: CodeGenOpt.None - fullName: Ubiquity.NET.Llvm.CodeGenOpt.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: No optimization - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.CodeGenOpt -- uid: Ubiquity.NET.Llvm.CodeGenOpt.Less - commentId: F:Ubiquity.NET.Llvm.CodeGenOpt.Less - id: Less - parent: Ubiquity.NET.Llvm.CodeGenOpt - langs: - - csharp - - vb - name: Less - nameWithType: CodeGenOpt.Less - fullName: Ubiquity.NET.Llvm.CodeGenOpt.Less - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Less - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Minimal optimization - example: [] - syntax: - content: Less = 1 - return: - type: Ubiquity.NET.Llvm.CodeGenOpt -- uid: Ubiquity.NET.Llvm.CodeGenOpt.Default - commentId: F:Ubiquity.NET.Llvm.CodeGenOpt.Default - id: Default - parent: Ubiquity.NET.Llvm.CodeGenOpt - langs: - - csharp - - vb - name: Default - nameWithType: CodeGenOpt.Default - fullName: Ubiquity.NET.Llvm.CodeGenOpt.Default - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Default - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Default optimization - example: [] - syntax: - content: Default = 2 - return: - type: Ubiquity.NET.Llvm.CodeGenOpt -- uid: Ubiquity.NET.Llvm.CodeGenOpt.Aggressive - commentId: F:Ubiquity.NET.Llvm.CodeGenOpt.Aggressive - id: Aggressive - parent: Ubiquity.NET.Llvm.CodeGenOpt - langs: - - csharp - - vb - name: Aggressive - nameWithType: CodeGenOpt.Aggressive - fullName: Ubiquity.NET.Llvm.CodeGenOpt.Aggressive - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Aggressive - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Aggressive optimizations - example: [] - syntax: - content: Aggressive = 3 - return: - type: Ubiquity.NET.Llvm.CodeGenOpt -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.CodeGenOpt - commentId: T:Ubiquity.NET.Llvm.CodeGenOpt - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenOpt.html - name: CodeGenOpt - nameWithType: CodeGenOpt - fullName: Ubiquity.NET.Llvm.CodeGenOpt diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenTarget.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenTarget.yml deleted file mode 100644 index de8d8db7b8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.CodeGenTarget.yml +++ /dev/null @@ -1,590 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.CodeGenTarget - commentId: T:Ubiquity.NET.Llvm.CodeGenTarget - id: CodeGenTarget - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.CodeGenTarget.AArch64 - - Ubiquity.NET.Llvm.CodeGenTarget.AMDGPU - - Ubiquity.NET.Llvm.CodeGenTarget.ARM - - Ubiquity.NET.Llvm.CodeGenTarget.All - - Ubiquity.NET.Llvm.CodeGenTarget.BPF - - Ubiquity.NET.Llvm.CodeGenTarget.Hexagon - - Ubiquity.NET.Llvm.CodeGenTarget.Lanai - - Ubiquity.NET.Llvm.CodeGenTarget.MIPS - - Ubiquity.NET.Llvm.CodeGenTarget.MSP430 - - Ubiquity.NET.Llvm.CodeGenTarget.Native - - Ubiquity.NET.Llvm.CodeGenTarget.NvidiaPTX - - Ubiquity.NET.Llvm.CodeGenTarget.PowerPC - - Ubiquity.NET.Llvm.CodeGenTarget.RISCV - - Ubiquity.NET.Llvm.CodeGenTarget.Sparc - - Ubiquity.NET.Llvm.CodeGenTarget.SystemZ - - Ubiquity.NET.Llvm.CodeGenTarget.WebAssembly - - Ubiquity.NET.Llvm.CodeGenTarget.X86 - - Ubiquity.NET.Llvm.CodeGenTarget.XCore - langs: - - csharp - - vb - name: CodeGenTarget - nameWithType: CodeGenTarget - fullName: Ubiquity.NET.Llvm.CodeGenTarget - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CodeGenTarget - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Code gen target to register/initialize - example: [] - syntax: - content: public enum CodeGenTarget - content.vb: Public Enum CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.Native - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.Native - id: Native - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: Native - nameWithType: CodeGenTarget.Native - fullName: Ubiquity.NET.Llvm.CodeGenTarget.Native - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Native - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Native target of the host system, generally used for JIT execution - example: [] - syntax: - content: Native = 0 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.AArch64 - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.AArch64 - id: AArch64 - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: AArch64 - nameWithType: CodeGenTarget.AArch64 - fullName: Ubiquity.NET.Llvm.CodeGenTarget.AArch64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AArch64 - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM AArch64 target - example: [] - syntax: - content: AArch64 = 1 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.AMDGPU - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.AMDGPU - id: AMDGPU - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: AMDGPU - nameWithType: CodeGenTarget.AMDGPU - fullName: Ubiquity.NET.Llvm.CodeGenTarget.AMDGPU - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGPU - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD GPU target - example: [] - syntax: - content: AMDGPU = 2 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.ARM - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.ARM - id: ARM - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: ARM - nameWithType: CodeGenTarget.ARM - fullName: Ubiquity.NET.Llvm.CodeGenTarget.ARM - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARM - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM 32 bit targets - example: [] - syntax: - content: ARM = 3 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.BPF - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.BPF - id: BPF - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: BPF - nameWithType: CodeGenTarget.BPF - fullName: Ubiquity.NET.Llvm.CodeGenTarget.BPF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BPF - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: BPF target - example: [] - syntax: - content: BPF = 4 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.Hexagon - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.Hexagon - id: Hexagon - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: Hexagon - nameWithType: CodeGenTarget.Hexagon - fullName: Ubiquity.NET.Llvm.CodeGenTarget.Hexagon - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Hexagon - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Hexagon target - example: [] - syntax: - content: Hexagon = 5 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.Lanai - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.Lanai - id: Lanai - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: Lanai - nameWithType: CodeGenTarget.Lanai - fullName: Ubiquity.NET.Llvm.CodeGenTarget.Lanai - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lanai - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Lanai target - example: [] - syntax: - content: Lanai = 6 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.MIPS - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.MIPS - id: MIPS - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: MIPS - nameWithType: CodeGenTarget.MIPS - fullName: Ubiquity.NET.Llvm.CodeGenTarget.MIPS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MIPS - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: MIPS target - example: [] - syntax: - content: MIPS = 7 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.MSP430 - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.MSP430 - id: MSP430 - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: MSP430 - nameWithType: CodeGenTarget.MSP430 - fullName: Ubiquity.NET.Llvm.CodeGenTarget.MSP430 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MSP430 - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: MSP430 target - example: [] - syntax: - content: MSP430 = 8 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.NvidiaPTX - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.NvidiaPTX - id: NvidiaPTX - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: NvidiaPTX - nameWithType: CodeGenTarget.NvidiaPTX - fullName: Ubiquity.NET.Llvm.CodeGenTarget.NvidiaPTX - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NvidiaPTX - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: NVIDIA PTX target - example: [] - syntax: - content: NvidiaPTX = 9 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.PowerPC - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.PowerPC - id: PowerPC - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: PowerPC - nameWithType: CodeGenTarget.PowerPC - fullName: Ubiquity.NET.Llvm.CodeGenTarget.PowerPC - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PowerPC - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: PowerPV target - example: [] - syntax: - content: PowerPC = 10 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.Sparc - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.Sparc - id: Sparc - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: Sparc - nameWithType: CodeGenTarget.Sparc - fullName: Ubiquity.NET.Llvm.CodeGenTarget.Sparc - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Sparc - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Sparc target - example: [] - syntax: - content: Sparc = 11 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.SystemZ - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.SystemZ - id: SystemZ - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: SystemZ - nameWithType: CodeGenTarget.SystemZ - fullName: Ubiquity.NET.Llvm.CodeGenTarget.SystemZ - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SystemZ - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 50 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SystemZ target - example: [] - syntax: - content: SystemZ = 12 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.WebAssembly - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.WebAssembly - id: WebAssembly - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: WebAssembly - nameWithType: CodeGenTarget.WebAssembly - fullName: Ubiquity.NET.Llvm.CodeGenTarget.WebAssembly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WebAssembly - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 53 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: WebAssembly target - example: [] - syntax: - content: WebAssembly = 13 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.X86 - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.X86 - id: X86 - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: X86 - nameWithType: CodeGenTarget.X86 - fullName: Ubiquity.NET.Llvm.CodeGenTarget.X86 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86 - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: X86 target - example: [] - syntax: - content: X86 = 14 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.XCore - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.XCore - id: XCore - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: XCore - nameWithType: CodeGenTarget.XCore - fullName: Ubiquity.NET.Llvm.CodeGenTarget.XCore - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: XCore - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 59 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: XCore target - example: [] - syntax: - content: XCore = 15 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.RISCV - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.RISCV - id: RISCV - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: RISCV - nameWithType: CodeGenTarget.RISCV - fullName: Ubiquity.NET.Llvm.CodeGenTarget.RISCV - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RISCV - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: RISC-V target - example: [] - syntax: - content: RISCV = 16 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget.All - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.All - id: All - parent: Ubiquity.NET.Llvm.CodeGenTarget - langs: - - csharp - - vb - name: All - nameWithType: CodeGenTarget.All - fullName: Ubiquity.NET.Llvm.CodeGenTarget.All - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: All - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 65 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: All available targets - example: [] - syntax: - content: All = 2147483647 - return: - type: Ubiquity.NET.Llvm.CodeGenTarget -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.CodeGenTarget - commentId: T:Ubiquity.NET.Llvm.CodeGenTarget - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenTarget.html - name: CodeGenTarget - nameWithType: CodeGenTarget - fullName: Ubiquity.NET.Llvm.CodeGenTarget diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.CodeModel.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.CodeModel.yml deleted file mode 100644 index 39d346fbc6..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.CodeModel.yml +++ /dev/null @@ -1,271 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.CodeModel - commentId: T:Ubiquity.NET.Llvm.CodeModel - id: CodeModel - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.CodeModel.Default - - Ubiquity.NET.Llvm.CodeModel.JitDefault - - Ubiquity.NET.Llvm.CodeModel.Kernel - - Ubiquity.NET.Llvm.CodeModel.Large - - Ubiquity.NET.Llvm.CodeModel.Medium - - Ubiquity.NET.Llvm.CodeModel.Small - - Ubiquity.NET.Llvm.CodeModel.Tiny - langs: - - csharp - - vb - name: CodeModel - nameWithType: CodeModel - fullName: Ubiquity.NET.Llvm.CodeModel - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CodeModel - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Code model to use for target code generation - example: [] - syntax: - content: public enum CodeModel - content.vb: Public Enum CodeModel -- uid: Ubiquity.NET.Llvm.CodeModel.Default - commentId: F:Ubiquity.NET.Llvm.CodeModel.Default - id: Default - parent: Ubiquity.NET.Llvm.CodeModel - langs: - - csharp - - vb - name: Default - nameWithType: CodeModel.Default - fullName: Ubiquity.NET.Llvm.CodeModel.Default - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Default - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Default code model for the target - example: [] - syntax: - content: Default = 0 - return: - type: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.CodeModel.JitDefault - commentId: F:Ubiquity.NET.Llvm.CodeModel.JitDefault - id: JitDefault - parent: Ubiquity.NET.Llvm.CodeModel - langs: - - csharp - - vb - name: JitDefault - nameWithType: CodeModel.JitDefault - fullName: Ubiquity.NET.Llvm.CodeModel.JitDefault - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: JitDefault - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Default code model for JIT to the target - example: [] - syntax: - content: JitDefault = 1 - return: - type: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.CodeModel.Tiny - commentId: F:Ubiquity.NET.Llvm.CodeModel.Tiny - id: Tiny - parent: Ubiquity.NET.Llvm.CodeModel - langs: - - csharp - - vb - name: Tiny - nameWithType: CodeModel.Tiny - fullName: Ubiquity.NET.Llvm.CodeModel.Tiny - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Tiny - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Tiny code model - example: [] - syntax: - content: Tiny = 2 - return: - type: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.CodeModel.Small - commentId: F:Ubiquity.NET.Llvm.CodeModel.Small - id: Small - parent: Ubiquity.NET.Llvm.CodeModel - langs: - - csharp - - vb - name: Small - nameWithType: CodeModel.Small - fullName: Ubiquity.NET.Llvm.CodeModel.Small - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Small - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Small code model - example: [] - syntax: - content: Small = 3 - return: - type: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.CodeModel.Kernel - commentId: F:Ubiquity.NET.Llvm.CodeModel.Kernel - id: Kernel - parent: Ubiquity.NET.Llvm.CodeModel - langs: - - csharp - - vb - name: Kernel - nameWithType: CodeModel.Kernel - fullName: Ubiquity.NET.Llvm.CodeModel.Kernel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kernel - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Kernel code model - example: [] - syntax: - content: Kernel = 4 - return: - type: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.CodeModel.Medium - commentId: F:Ubiquity.NET.Llvm.CodeModel.Medium - id: Medium - parent: Ubiquity.NET.Llvm.CodeModel - langs: - - csharp - - vb - name: Medium - nameWithType: CodeModel.Medium - fullName: Ubiquity.NET.Llvm.CodeModel.Medium - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Medium - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 72 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Medium code model - example: [] - syntax: - content: Medium = 5 - return: - type: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.CodeModel.Large - commentId: F:Ubiquity.NET.Llvm.CodeModel.Large - id: Large - parent: Ubiquity.NET.Llvm.CodeModel - langs: - - csharp - - vb - name: Large - nameWithType: CodeModel.Large - fullName: Ubiquity.NET.Llvm.CodeModel.Large - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Large - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 75 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Large code model - example: [] - syntax: - content: Large = 6 - return: - type: Ubiquity.NET.Llvm.CodeModel -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.CodeModel - commentId: T:Ubiquity.NET.Llvm.CodeModel - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeModel.html - name: CodeModel - nameWithType: CodeModel - fullName: Ubiquity.NET.Llvm.CodeModel diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Comdat.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Comdat.yml deleted file mode 100644 index 13381fa977..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Comdat.yml +++ /dev/null @@ -1,654 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Comdat - commentId: T:Ubiquity.NET.Llvm.Comdat - id: Comdat - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.Comdat.Equals(Ubiquity.NET.Llvm.Comdat) - - Ubiquity.NET.Llvm.Comdat.GetHashCode - - Ubiquity.NET.Llvm.Comdat.IsNull - - Ubiquity.NET.Llvm.Comdat.Kind - - Ubiquity.NET.Llvm.Comdat.Name - langs: - - csharp - - vb - name: Comdat - nameWithType: Comdat - fullName: Ubiquity.NET.Llvm.Comdat - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Comdat - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Comdat entry for a module - remarks: >- - A COMDAT is a named kind pair to ensure that, within a given module there are no two named COMDATs - - with different kinds. Ultimately, Comdat is 'owned' by the module, if the module is disposed the - - Comdats it owns are invalidated. Using a Comdat instance after the module is disposed results in - - an effective NOP. - example: [] - syntax: - content: 'public readonly ref struct Comdat : IEquatable' - content.vb: Public Structure Comdat Implements IEquatable(Of Comdat) - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Comdat} - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.Comdat.Name - commentId: P:Ubiquity.NET.Llvm.Comdat.Name - id: Name - parent: Ubiquity.NET.Llvm.Comdat - langs: - - csharp - - vb - name: Name - nameWithType: Comdat.Name - fullName: Ubiquity.NET.Llvm.Comdat.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the name of the - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.Comdat.Name* -- uid: Ubiquity.NET.Llvm.Comdat.Equals(Ubiquity.NET.Llvm.Comdat) - commentId: M:Ubiquity.NET.Llvm.Comdat.Equals(Ubiquity.NET.Llvm.Comdat) - id: Equals(Ubiquity.NET.Llvm.Comdat) - parent: Ubiquity.NET.Llvm.Comdat - langs: - - csharp - - vb - name: Equals(Comdat) - nameWithType: Comdat.Equals(Comdat) - fullName: Ubiquity.NET.Llvm.Comdat.Equals(Ubiquity.NET.Llvm.Comdat) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(Comdat other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Comdat - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As Comdat) As Boolean - overload: Ubiquity.NET.Llvm.Comdat.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Comdat}.Equals(Ubiquity.NET.Llvm.Comdat) -- uid: Ubiquity.NET.Llvm.Comdat.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Comdat.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.Comdat - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: Comdat.GetHashCode() - fullName: Ubiquity.NET.Llvm.Comdat.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Returns the hash code for this instance. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A 32-bit signed integer that is the hash code for this instance. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.ValueType.GetHashCode - overload: Ubiquity.NET.Llvm.Comdat.GetHashCode* -- uid: Ubiquity.NET.Llvm.Comdat.IsNull - commentId: P:Ubiquity.NET.Llvm.Comdat.IsNull - id: IsNull - parent: Ubiquity.NET.Llvm.Comdat - langs: - - csharp - - vb - name: IsNull - nameWithType: Comdat.IsNull - fullName: Ubiquity.NET.Llvm.Comdat.IsNull - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsNull - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this instance represents a NULL/Invalid - example: [] - syntax: - content: public bool IsNull { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsNull As Boolean - overload: Ubiquity.NET.Llvm.Comdat.IsNull* -- uid: Ubiquity.NET.Llvm.Comdat.Kind - commentId: P:Ubiquity.NET.Llvm.Comdat.Kind - id: Kind - parent: Ubiquity.NET.Llvm.Comdat - langs: - - csharp - - vb - name: Kind - nameWithType: Comdat.Kind - fullName: Ubiquity.NET.Llvm.Comdat.Kind - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kind - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the for this - example: [] - syntax: - content: public ComdatKind Kind { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ComdatKind - content.vb: Public Property Kind As ComdatKind - overload: Ubiquity.NET.Llvm.Comdat.Kind* -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.Comdat} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Comdat} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Comdat) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Comdat) - name.vb: IEquatable(Of Comdat) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Comdat - name: Comdat - href: Ubiquity.NET.Llvm.Comdat.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Comdat - name: Comdat - href: Ubiquity.NET.Llvm.Comdat.html - - name: ) -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Comdat - commentId: T:Ubiquity.NET.Llvm.Comdat - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Comdat.html - name: Comdat - nameWithType: Comdat - fullName: Ubiquity.NET.Llvm.Comdat -- uid: Ubiquity.NET.Llvm.Comdat.Name* - commentId: Overload:Ubiquity.NET.Llvm.Comdat.Name - href: Ubiquity.NET.Llvm.Comdat.html#Ubiquity_NET_Llvm_Comdat_Name - name: Name - nameWithType: Comdat.Name - fullName: Ubiquity.NET.Llvm.Comdat.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Comdat.Equals* - commentId: Overload:Ubiquity.NET.Llvm.Comdat.Equals - href: Ubiquity.NET.Llvm.Comdat.html#Ubiquity_NET_Llvm_Comdat_Equals_Ubiquity_NET_Llvm_Comdat_ - name: Equals - nameWithType: Comdat.Equals - fullName: Ubiquity.NET.Llvm.Comdat.Equals -- uid: System.IEquatable{Ubiquity.NET.Llvm.Comdat}.Equals(Ubiquity.NET.Llvm.Comdat) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Comdat}.Equals(Ubiquity.NET.Llvm.Comdat) - parent: System.IEquatable{Ubiquity.NET.Llvm.Comdat} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(Comdat) - nameWithType: IEquatable.Equals(Comdat) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Comdat) - nameWithType.vb: IEquatable(Of Comdat).Equals(Comdat) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Comdat).Equals(Ubiquity.NET.Llvm.Comdat) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Comdat}.Equals(Ubiquity.NET.Llvm.Comdat) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Comdat - name: Comdat - href: Ubiquity.NET.Llvm.Comdat.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Comdat}.Equals(Ubiquity.NET.Llvm.Comdat) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Comdat - name: Comdat - href: Ubiquity.NET.Llvm.Comdat.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Comdat.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.Comdat.GetHashCode - href: Ubiquity.NET.Llvm.Comdat.html#Ubiquity_NET_Llvm_Comdat_GetHashCode - name: GetHashCode - nameWithType: Comdat.GetHashCode - fullName: Ubiquity.NET.Llvm.Comdat.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.Comdat.IsNull* - commentId: Overload:Ubiquity.NET.Llvm.Comdat.IsNull - href: Ubiquity.NET.Llvm.Comdat.html#Ubiquity_NET_Llvm_Comdat_IsNull - name: IsNull - nameWithType: Comdat.IsNull - fullName: Ubiquity.NET.Llvm.Comdat.IsNull -- uid: Ubiquity.NET.Llvm.ComdatKind - commentId: T:Ubiquity.NET.Llvm.ComdatKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ComdatKind.html - name: ComdatKind - nameWithType: ComdatKind - fullName: Ubiquity.NET.Llvm.ComdatKind -- uid: Ubiquity.NET.Llvm.Comdat.Kind* - commentId: Overload:Ubiquity.NET.Llvm.Comdat.Kind - href: Ubiquity.NET.Llvm.Comdat.html#Ubiquity_NET_Llvm_Comdat_Kind - name: Kind - nameWithType: Comdat.Kind - fullName: Ubiquity.NET.Llvm.Comdat.Kind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ComdatCollection.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ComdatCollection.yml deleted file mode 100644 index c28652f2c8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ComdatCollection.yml +++ /dev/null @@ -1,814 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ComdatCollection - commentId: T:Ubiquity.NET.Llvm.ComdatCollection - id: ComdatCollection - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate(System.String,Ubiquity.NET.Llvm.ComdatKind) - - Ubiquity.NET.Llvm.ComdatCollection.Clear - - Ubiquity.NET.Llvm.ComdatCollection.Contains(System.String) - - Ubiquity.NET.Llvm.ComdatCollection.Count - - Ubiquity.NET.Llvm.ComdatCollection.Item(System.String) - - Ubiquity.NET.Llvm.ComdatCollection.Remove(System.String) - - Ubiquity.NET.Llvm.ComdatCollection.TryGetValue(System.String,Ubiquity.NET.Llvm.Comdat@) - langs: - - csharp - - vb - name: ComdatCollection - nameWithType: ComdatCollection - fullName: Ubiquity.NET.Llvm.ComdatCollection - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/ComdatCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ComdatCollection - path: ../src/Ubiquity.NET.Llvm/ComdatCollection.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Collection of Comdats in a module - remarks: >- - This is a 'ref struct' to ensure that ownership of the collection - - remains with the module itself and this is only used to iterate - - over the individual items. It is not allowed to store this as it - - references the owning module and ultimately the Comdat values themselves - - are owned in the native code layer and only "projected" to managed - - here. - example: [] - syntax: - content: 'public readonly ref struct ComdatCollection : IEnumerable, IEnumerable' - content.vb: Public Structure ComdatCollection Implements IEnumerable(Of Comdat), IEnumerable - implements: - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Comdat} - - System.Collections.IEnumerable - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.ComdatCollection.Count - commentId: P:Ubiquity.NET.Llvm.ComdatCollection.Count - id: Count - parent: Ubiquity.NET.Llvm.ComdatCollection - langs: - - csharp - - vb - name: Count - nameWithType: ComdatCollection.Count - fullName: Ubiquity.NET.Llvm.ComdatCollection.Count - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ComdatCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Count - path: ../src/Ubiquity.NET.Llvm/ComdatCollection.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a count of comdats in the associated module - example: [] - syntax: - content: public int Count { get; } - parameters: [] - return: - type: System.Int32 - content.vb: Public ReadOnly Property Count As Integer - overload: Ubiquity.NET.Llvm.ComdatCollection.Count* -- uid: Ubiquity.NET.Llvm.ComdatCollection.Item(System.String) - commentId: P:Ubiquity.NET.Llvm.ComdatCollection.Item(System.String) - id: Item(System.String) - parent: Ubiquity.NET.Llvm.ComdatCollection - langs: - - csharp - - vb - name: this[string] - nameWithType: ComdatCollection.this[string] - fullName: Ubiquity.NET.Llvm.ComdatCollection.this[string] - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ComdatCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: this[] - path: ../src/Ubiquity.NET.Llvm/ComdatCollection.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves by its name - example: [] - syntax: - content: public Comdat this[string key] { get; } - parameters: - - id: key - type: System.String - description: Name of the - return: - type: Ubiquity.NET.Llvm.Comdat - description: or null - content.vb: Public ReadOnly Default Property this[](key As String) As Comdat - overload: Ubiquity.NET.Llvm.ComdatCollection.Item* - exceptions: - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: Key is null - - type: System.Collections.Generic.KeyNotFoundException - commentId: T:System.Collections.Generic.KeyNotFoundException - description: Key does not exist in the collection - nameWithType.vb: ComdatCollection.this[](String) - fullName.vb: Ubiquity.NET.Llvm.ComdatCollection.this[](String) - name.vb: this[](String) -- uid: Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate(System.String,Ubiquity.NET.Llvm.ComdatKind) - commentId: M:Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate(System.String,Ubiquity.NET.Llvm.ComdatKind) - id: AddOrUpdate(System.String,Ubiquity.NET.Llvm.ComdatKind) - parent: Ubiquity.NET.Llvm.ComdatCollection - langs: - - csharp - - vb - name: AddOrUpdate(string, ComdatKind) - nameWithType: ComdatCollection.AddOrUpdate(string, ComdatKind) - fullName: Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate(string, Ubiquity.NET.Llvm.ComdatKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ComdatCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddOrUpdate - path: ../src/Ubiquity.NET.Llvm/ComdatCollection.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds or updates a entry - example: [] - syntax: - content: public Comdat AddOrUpdate(string key, ComdatKind kind) - parameters: - - id: key - type: System.String - description: Name of the - - id: kind - type: Ubiquity.NET.Llvm.ComdatKind - description: for the entry - return: - type: Ubiquity.NET.Llvm.Comdat - description: New or updated - content.vb: Public Function AddOrUpdate(key As String, kind As ComdatKind) As Comdat - overload: Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate* - nameWithType.vb: ComdatCollection.AddOrUpdate(String, ComdatKind) - fullName.vb: Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate(String, Ubiquity.NET.Llvm.ComdatKind) - name.vb: AddOrUpdate(String, ComdatKind) -- uid: Ubiquity.NET.Llvm.ComdatCollection.TryGetValue(System.String,Ubiquity.NET.Llvm.Comdat@) - commentId: M:Ubiquity.NET.Llvm.ComdatCollection.TryGetValue(System.String,Ubiquity.NET.Llvm.Comdat@) - id: TryGetValue(System.String,Ubiquity.NET.Llvm.Comdat@) - parent: Ubiquity.NET.Llvm.ComdatCollection - langs: - - csharp - - vb - name: TryGetValue(string, out Comdat) - nameWithType: ComdatCollection.TryGetValue(string, out Comdat) - fullName: Ubiquity.NET.Llvm.ComdatCollection.TryGetValue(string, out Ubiquity.NET.Llvm.Comdat) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ComdatCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryGetValue - path: ../src/Ubiquity.NET.Llvm/ComdatCollection.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value form the collection if it exists - example: [] - syntax: - content: public bool TryGetValue(string key, out Comdat value) - parameters: - - id: key - type: System.String - description: Name of the item to retrieve - - id: value - type: Ubiquity.NET.Llvm.Comdat - description: Value of the item if found or null if not found - return: - type: System.Boolean - description: >- - true if the value was found - - the list or false otherwise. - content.vb: Public Function TryGetValue(key As String, value As Comdat) As Boolean - overload: Ubiquity.NET.Llvm.ComdatCollection.TryGetValue* - nameWithType.vb: ComdatCollection.TryGetValue(String, Comdat) - fullName.vb: Ubiquity.NET.Llvm.ComdatCollection.TryGetValue(String, Ubiquity.NET.Llvm.Comdat) - name.vb: TryGetValue(String, Comdat) -- uid: Ubiquity.NET.Llvm.ComdatCollection.Contains(System.String) - commentId: M:Ubiquity.NET.Llvm.ComdatCollection.Contains(System.String) - id: Contains(System.String) - parent: Ubiquity.NET.Llvm.ComdatCollection - langs: - - csharp - - vb - name: Contains(string) - nameWithType: ComdatCollection.Contains(string) - fullName: Ubiquity.NET.Llvm.ComdatCollection.Contains(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ComdatCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Contains - path: ../src/Ubiquity.NET.Llvm/ComdatCollection.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value that indicates if a with a given name exists in the collection - example: [] - syntax: - content: public bool Contains(string key) - parameters: - - id: key - type: System.String - description: Name of the to test for - return: - type: System.Boolean - description: true if the entry is present and false if not - content.vb: Public Function Contains(key As String) As Boolean - overload: Ubiquity.NET.Llvm.ComdatCollection.Contains* - nameWithType.vb: ComdatCollection.Contains(String) - fullName.vb: Ubiquity.NET.Llvm.ComdatCollection.Contains(String) - name.vb: Contains(String) -- uid: Ubiquity.NET.Llvm.ComdatCollection.Remove(System.String) - commentId: M:Ubiquity.NET.Llvm.ComdatCollection.Remove(System.String) - id: Remove(System.String) - parent: Ubiquity.NET.Llvm.ComdatCollection - langs: - - csharp - - vb - name: Remove(string) - nameWithType: ComdatCollection.Remove(string) - fullName: Ubiquity.NET.Llvm.ComdatCollection.Remove(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ComdatCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Remove - path: ../src/Ubiquity.NET.Llvm/ComdatCollection.cs - startLine: 74 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Removes a entry from the module - example: [] - syntax: - content: public bool Remove(string key) - parameters: - - id: key - type: System.String - description: Name of the - return: - type: System.Boolean - description: >- - true if the value was in the list or - - false otherwise - content.vb: Public Function Remove(key As String) As Boolean - overload: Ubiquity.NET.Llvm.ComdatCollection.Remove* - nameWithType.vb: ComdatCollection.Remove(String) - fullName.vb: Ubiquity.NET.Llvm.ComdatCollection.Remove(String) - name.vb: Remove(String) -- uid: Ubiquity.NET.Llvm.ComdatCollection.Clear - commentId: M:Ubiquity.NET.Llvm.ComdatCollection.Clear - id: Clear - parent: Ubiquity.NET.Llvm.ComdatCollection - langs: - - csharp - - vb - name: Clear() - nameWithType: ComdatCollection.Clear() - fullName: Ubiquity.NET.Llvm.ComdatCollection.Clear() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ComdatCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Clear - path: ../src/Ubiquity.NET.Llvm/ComdatCollection.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Removes all the entries from the module - example: [] - syntax: - content: public void Clear() - content.vb: Public Sub Clear() - overload: Ubiquity.NET.Llvm.ComdatCollection.Clear* -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Comdat} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Comdat} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Comdat) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Comdat) - name.vb: IEnumerable(Of Comdat) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Comdat - name: Comdat - href: Ubiquity.NET.Llvm.Comdat.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Comdat - name: Comdat - href: Ubiquity.NET.Llvm.Comdat.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.ComdatCollection.Count* - commentId: Overload:Ubiquity.NET.Llvm.ComdatCollection.Count - href: Ubiquity.NET.Llvm.ComdatCollection.html#Ubiquity_NET_Llvm_ComdatCollection_Count - name: Count - nameWithType: ComdatCollection.Count - fullName: Ubiquity.NET.Llvm.ComdatCollection.Count -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.Comdat - commentId: T:Ubiquity.NET.Llvm.Comdat - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Comdat.html - name: Comdat - nameWithType: Comdat - fullName: Ubiquity.NET.Llvm.Comdat -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: System.Collections.Generic.KeyNotFoundException - commentId: T:System.Collections.Generic.KeyNotFoundException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keynotfoundexception - name: KeyNotFoundException - nameWithType: KeyNotFoundException - fullName: System.Collections.Generic.KeyNotFoundException -- uid: Ubiquity.NET.Llvm.ComdatCollection.Item* - commentId: Overload:Ubiquity.NET.Llvm.ComdatCollection.Item - href: Ubiquity.NET.Llvm.ComdatCollection.html#Ubiquity_NET_Llvm_ComdatCollection_Item_System_String_ - name: this - nameWithType: ComdatCollection.this - fullName: Ubiquity.NET.Llvm.ComdatCollection.this - nameWithType.vb: ComdatCollection.this[] - fullName.vb: Ubiquity.NET.Llvm.ComdatCollection.this[] - name.vb: this[] -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.ComdatKind - commentId: T:Ubiquity.NET.Llvm.ComdatKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ComdatKind.html - name: ComdatKind - nameWithType: ComdatKind - fullName: Ubiquity.NET.Llvm.ComdatKind -- uid: Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate* - commentId: Overload:Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate - href: Ubiquity.NET.Llvm.ComdatCollection.html#Ubiquity_NET_Llvm_ComdatCollection_AddOrUpdate_System_String_Ubiquity_NET_Llvm_ComdatKind_ - name: AddOrUpdate - nameWithType: ComdatCollection.AddOrUpdate - fullName: Ubiquity.NET.Llvm.ComdatCollection.AddOrUpdate -- uid: Ubiquity.NET.Llvm.ComdatCollection.TryGetValue* - commentId: Overload:Ubiquity.NET.Llvm.ComdatCollection.TryGetValue - href: Ubiquity.NET.Llvm.ComdatCollection.html#Ubiquity_NET_Llvm_ComdatCollection_TryGetValue_System_String_Ubiquity_NET_Llvm_Comdat__ - name: TryGetValue - nameWithType: ComdatCollection.TryGetValue - fullName: Ubiquity.NET.Llvm.ComdatCollection.TryGetValue -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.ComdatCollection.Contains* - commentId: Overload:Ubiquity.NET.Llvm.ComdatCollection.Contains - href: Ubiquity.NET.Llvm.ComdatCollection.html#Ubiquity_NET_Llvm_ComdatCollection_Contains_System_String_ - name: Contains - nameWithType: ComdatCollection.Contains - fullName: Ubiquity.NET.Llvm.ComdatCollection.Contains -- uid: Ubiquity.NET.Llvm.ComdatCollection.Remove* - commentId: Overload:Ubiquity.NET.Llvm.ComdatCollection.Remove - href: Ubiquity.NET.Llvm.ComdatCollection.html#Ubiquity_NET_Llvm_ComdatCollection_Remove_System_String_ - name: Remove - nameWithType: ComdatCollection.Remove - fullName: Ubiquity.NET.Llvm.ComdatCollection.Remove -- uid: Ubiquity.NET.Llvm.ComdatCollection.Clear* - commentId: Overload:Ubiquity.NET.Llvm.ComdatCollection.Clear - href: Ubiquity.NET.Llvm.ComdatCollection.html#Ubiquity_NET_Llvm_ComdatCollection_Clear - name: Clear - nameWithType: ComdatCollection.Clear - fullName: Ubiquity.NET.Llvm.ComdatCollection.Clear diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ComdatKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ComdatKind.yml deleted file mode 100644 index d1935213b2..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ComdatKind.yml +++ /dev/null @@ -1,213 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ComdatKind - commentId: T:Ubiquity.NET.Llvm.ComdatKind - id: ComdatKind - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ComdatKind.Any - - Ubiquity.NET.Llvm.ComdatKind.ExactMatch - - Ubiquity.NET.Llvm.ComdatKind.Largest - - Ubiquity.NET.Llvm.ComdatKind.NoDuplicates - - Ubiquity.NET.Llvm.ComdatKind.SameSize - langs: - - csharp - - vb - name: ComdatKind - nameWithType: ComdatKind - fullName: Ubiquity.NET.Llvm.ComdatKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ComdatKind - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Comdat kind/behavior - example: [] - syntax: - content: public enum ComdatKind - content.vb: Public Enum ComdatKind -- uid: Ubiquity.NET.Llvm.ComdatKind.Any - commentId: F:Ubiquity.NET.Llvm.ComdatKind.Any - id: Any - parent: Ubiquity.NET.Llvm.ComdatKind - langs: - - csharp - - vb - name: Any - nameWithType: ComdatKind.Any - fullName: Ubiquity.NET.Llvm.ComdatKind.Any - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Any - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Linker may choose any COMDAT key, the choice is arbitrary - example: [] - syntax: - content: Any = 0 - return: - type: Ubiquity.NET.Llvm.ComdatKind -- uid: Ubiquity.NET.Llvm.ComdatKind.ExactMatch - commentId: F:Ubiquity.NET.Llvm.ComdatKind.ExactMatch - id: ExactMatch - parent: Ubiquity.NET.Llvm.ComdatKind - langs: - - csharp - - vb - name: ExactMatch - nameWithType: ComdatKind.ExactMatch - fullName: Ubiquity.NET.Llvm.ComdatKind.ExactMatch - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExactMatch - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Linker may choose any COMDAT key but sections must contain the same data - example: [] - syntax: - content: ExactMatch = 1 - return: - type: Ubiquity.NET.Llvm.ComdatKind -- uid: Ubiquity.NET.Llvm.ComdatKind.Largest - commentId: F:Ubiquity.NET.Llvm.ComdatKind.Largest - id: Largest - parent: Ubiquity.NET.Llvm.ComdatKind - langs: - - csharp - - vb - name: Largest - nameWithType: ComdatKind.Largest - fullName: Ubiquity.NET.Llvm.ComdatKind.Largest - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Largest - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: The linker will choose the section containing the targets COMDAT key - example: [] - syntax: - content: Largest = 2 - return: - type: Ubiquity.NET.Llvm.ComdatKind -- uid: Ubiquity.NET.Llvm.ComdatKind.NoDuplicates - commentId: F:Ubiquity.NET.Llvm.ComdatKind.NoDuplicates - id: NoDuplicates - parent: Ubiquity.NET.Llvm.ComdatKind - langs: - - csharp - - vb - name: NoDuplicates - nameWithType: ComdatKind.NoDuplicates - fullName: Ubiquity.NET.Llvm.ComdatKind.NoDuplicates - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoDuplicates - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: The linker requires that only one section with this COMDAT key exists - example: [] - syntax: - content: NoDuplicates = 3 - return: - type: Ubiquity.NET.Llvm.ComdatKind -- uid: Ubiquity.NET.Llvm.ComdatKind.SameSize - commentId: F:Ubiquity.NET.Llvm.ComdatKind.SameSize - id: SameSize - parent: Ubiquity.NET.Llvm.ComdatKind - langs: - - csharp - - vb - name: SameSize - nameWithType: ComdatKind.SameSize - fullName: Ubiquity.NET.Llvm.ComdatKind.SameSize - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Comdat.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SameSize - path: ../src/Ubiquity.NET.Llvm/Comdat.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Linker may choose any COMDAT key but sections must contain the same amount of data - example: [] - syntax: - content: SameSize = 4 - return: - type: Ubiquity.NET.Llvm.ComdatKind -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.ComdatKind - commentId: T:Ubiquity.NET.Llvm.ComdatKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ComdatKind.html - name: ComdatKind - nameWithType: ComdatKind - fullName: Ubiquity.NET.Llvm.ComdatKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Context.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Context.yml deleted file mode 100644 index a02ec988a3..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Context.yml +++ /dev/null @@ -1,5942 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Context - commentId: T:Ubiquity.NET.Llvm.Context - id: Context - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.Context.#ctor - - Ubiquity.NET.Llvm.Context.BoolType - - Ubiquity.NET.Llvm.Context.CreateAttribute(System.String) - - Ubiquity.NET.Llvm.Context.CreateAttribute(System.String,System.String) - - Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - - Ubiquity.NET.Llvm.Context.CreateBasicBlock(System.String) - - Ubiquity.NET.Llvm.Context.CreateBitcodeModule - - Ubiquity.NET.Llvm.Context.CreateBitcodeModule(System.String) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.Boolean) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.Byte) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.Double) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.Int16) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.Int32) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.Int64) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.SByte) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.Single) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt16) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt32) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - - Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt64) - - Ubiquity.NET.Llvm.Context.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - - Ubiquity.NET.Llvm.Context.CreateConstantString(System.String) - - Ubiquity.NET.Llvm.Context.CreateConstantString(System.String,System.Boolean) - - Ubiquity.NET.Llvm.Context.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - - Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - - Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - - Ubiquity.NET.Llvm.Context.CreateMDNode(System.String) - - Ubiquity.NET.Llvm.Context.CreateMetadataString(System.String) - - Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - - Ubiquity.NET.Llvm.Context.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.Context.CreateStructType(System.String) - - Ubiquity.NET.Llvm.Context.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.Context.DiscardValueName - - Ubiquity.NET.Llvm.Context.Dispose - - Ubiquity.NET.Llvm.Context.DoubleType - - Ubiquity.NET.Llvm.Context.Equals(System.Object) - - Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.Context) - - Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.IContext) - - Ubiquity.NET.Llvm.Context.Float128Type - - Ubiquity.NET.Llvm.Context.FloatType - - Ubiquity.NET.Llvm.Context.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.Context.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.Context.GetHashCode - - Ubiquity.NET.Llvm.Context.GetIntType(System.UInt32) - - Ubiquity.NET.Llvm.Context.GetMDKindId(System.String) - - Ubiquity.NET.Llvm.Context.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Context.HalfFloatType - - Ubiquity.NET.Llvm.Context.Int128Type - - Ubiquity.NET.Llvm.Context.Int16Type - - Ubiquity.NET.Llvm.Context.Int32Type - - Ubiquity.NET.Llvm.Context.Int64Type - - Ubiquity.NET.Llvm.Context.Int8Type - - Ubiquity.NET.Llvm.Context.IsDisposed - - Ubiquity.NET.Llvm.Context.MetadataType - - Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes - - Ubiquity.NET.Llvm.Context.OpenBinary(System.String) - - Ubiquity.NET.Llvm.Context.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - - Ubiquity.NET.Llvm.Context.PpcFloat128Type - - Ubiquity.NET.Llvm.Context.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - - Ubiquity.NET.Llvm.Context.TokenType - - Ubiquity.NET.Llvm.Context.VoidType - - Ubiquity.NET.Llvm.Context.X86Float80Type - langs: - - csharp - - vb - name: Context - nameWithType: Context - fullName: Ubiquity.NET.Llvm.Context - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Encapsulates an LLVM context - remarks: >- -

A context in LLVM is a container for interning (LLVM refers to this as "uniqueing") various types - - and values in the system. This allows running multiple LLVM tool transforms etc.. on different threads - - without causing them to collide namespaces and types even if they use the same name (e.g. module one - - may have a type Foo, and so does module two but they are completely distinct from each other)

- - -

LLVM Debug information is ultimately all parented to a top level as - - the scope, and a compilation unit is bound to a , even though, technically - - the types are owned by a Context. Thus to keep things simpler and help make working with debug information - - easier. Ubiquity.NET.Llvm encapsulates the native type and the debug type in separate classes that are - - instances of the interface

- - -
note

It is important to be aware of the fact that a Context is not thread safe. The context - - itself and the object instances it owns are intended for use by a single thread only. Accessing and - - manipulating LLVM objects from multiple threads may lead to race conditions corrupted state and any number - - of other undefined issues.

- example: [] - syntax: - content: 'public sealed class Context : IContext, IDisposable, IEquatable, IEquatable' - content.vb: Public NotInheritable Class Context Implements IContext, IDisposable, IEquatable(Of IContext), IEquatable(Of Context) - inheritance: - - System.Object - implements: - - Ubiquity.NET.Llvm.IContext - - System.IDisposable - - System.IEquatable{Ubiquity.NET.Llvm.IContext} - - System.IEquatable{Ubiquity.NET.Llvm.Context} - inheritedMembers: - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.IContext) - id: Equals(Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Equals(IContext?) - nameWithType: Context.Equals(IContext?) - fullName: Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.IContext?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(IContext? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.IContext - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As IContext) As Boolean - overload: Ubiquity.NET.Llvm.Context.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.IContext}.Equals(Ubiquity.NET.Llvm.IContext) - nameWithType.vb: Context.Equals(IContext) - fullName.vb: Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.IContext) - name.vb: Equals(IContext) -- uid: Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.Context) - commentId: M:Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.Context) - id: Equals(Ubiquity.NET.Llvm.Context) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Equals(Context?) - nameWithType: Context.Equals(Context?) - fullName: Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.Context?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(Context? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Context - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As Context) As Boolean - overload: Ubiquity.NET.Llvm.Context.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Context}.Equals(Ubiquity.NET.Llvm.Context) - nameWithType.vb: Context.Equals(Context) - fullName.vb: Ubiquity.NET.Llvm.Context.Equals(Ubiquity.NET.Llvm.Context) - name.vb: Equals(Context) -- uid: Ubiquity.NET.Llvm.Context.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Context.Equals(System.Object) - id: Equals(System.Object) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: Context.Equals(object?) - fullName: Ubiquity.NET.Llvm.Context.Equals(object?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Determines whether the specified object is equal to the current object. - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: The object to compare with the current object. - return: - type: System.Boolean - description: true if the specified object is equal to the current object; otherwise, false. - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.Object.Equals(System.Object) - overload: Ubiquity.NET.Llvm.Context.Equals* - nameWithType.vb: Context.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Context.Equals(Object) - name.vb: Equals(Object) -- uid: Ubiquity.NET.Llvm.Context.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Context.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: Context.GetHashCode() - fullName: Ubiquity.NET.Llvm.Context.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Serves as the default hash function. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A hash code for the current object. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.Object.GetHashCode - overload: Ubiquity.NET.Llvm.Context.GetHashCode* -- uid: Ubiquity.NET.Llvm.Context.#ctor - commentId: M:Ubiquity.NET.Llvm.Context.#ctor - id: '#ctor' - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Context() - nameWithType: Context.Context() - fullName: Ubiquity.NET.Llvm.Context.Context() - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 68 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class. - remarks: >- - This creates an underlying native LLVM context handle and wraps it in this instance. - - Callers should call to release the native allocation as early - - as possible. Anything owned by this context is destroyed by the call to , - - thus any references to those items are invalid once the context is destroyed. This is - - particularly relevant for any IDisposable items (like a ). If those - - are left to linger at the mercy of the garbage collector/finalization then problems - - can happen. Since .NET uses a non-deterministic finalization design there is no guarantee - - that an element is finalized **BEFORE** the container that owns it. Thus if the finalizer - - destroys the container and then attempts to destroy the element - BOOM access violation - - and app crash occur. The location of such a crash is well after the problem occurred. - - This is a VERY difficult situation to debug. (Though in a debug build the call stack of - - the creator of any owned handle is captured to make it easier to find the cause of such - - things.) - example: [] - syntax: - content: public Context() - content.vb: Public Sub New() - overload: Ubiquity.NET.Llvm.Context.#ctor* - nameWithType.vb: Context.New() - fullName.vb: Ubiquity.NET.Llvm.Context.New() - name.vb: New() -- uid: Ubiquity.NET.Llvm.Context.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - commentId: M:Ubiquity.NET.Llvm.Context.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - id: SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: SetDiagnosticHandler(DiagnosticInfoCallbackAction) - nameWithType: Context.SetDiagnosticHandler(DiagnosticInfoCallbackAction) - fullName: Ubiquity.NET.Llvm.Context.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetDiagnosticHandler - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Set a custom diagnostic handler - example: [] - syntax: - content: public void SetDiagnosticHandler(DiagnosticInfoCallbackAction handler) - parameters: - - id: handler - type: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - description: handler - content.vb: Public Sub SetDiagnosticHandler(handler As DiagnosticInfoCallbackAction) - overload: Ubiquity.NET.Llvm.Context.SetDiagnosticHandler* - implements: - - Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) -- uid: Ubiquity.NET.Llvm.Context.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Context.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - id: GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: GetPointerTypeFor(ITypeRef) - nameWithType: Context.GetPointerTypeFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Context.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetPointerTypeFor - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get a type that is a pointer to a value of a given type - example: [] - syntax: - content: public IPointerType GetPointerTypeFor(ITypeRef elementType) - parameters: - - id: elementType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of value the pointer points to - return: - type: Ubiquity.NET.Llvm.Types.IPointerType - description: for a pointer that references a value of type elementType - content.vb: Public Function GetPointerTypeFor(elementType As ITypeRef) As IPointerType - overload: Ubiquity.NET.Llvm.Context.GetPointerTypeFor* - implements: - - Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.Context.GetIntType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Context.GetIntType(System.UInt32) - id: GetIntType(System.UInt32) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: GetIntType(uint) - nameWithType: Context.GetIntType(uint) - fullName: Ubiquity.NET.Llvm.Context.GetIntType(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetIntType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get's an LLVM integer type of arbitrary bit width - remarks: >- - For standard integer bit widths (e.g. 1,8,16,32,64) this will return - - the same type as the corresponding specialized property. - - (e.g. GetIntType(1) is the same as , - GetIntType(16) is the same as , etc... ) - example: [] - syntax: - content: public ITypeRef GetIntType(uint bitWidth) - parameters: - - id: bitWidth - type: System.UInt32 - description: Width of the integer type in bits - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer for the specified width - content.vb: Public Function GetIntType(bitWidth As UInteger) As ITypeRef - overload: Ubiquity.NET.Llvm.Context.GetIntType* - implements: - - Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32) - nameWithType.vb: Context.GetIntType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Context.GetIntType(UInteger) - name.vb: GetIntType(UInteger) -- uid: Ubiquity.NET.Llvm.Context.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.Context.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: GetFunctionType(ITypeRef, params IEnumerable) - nameWithType: Context.GetFunctionType(ITypeRef, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Context.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetFunctionType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get an LLVM Function type (e.g. signature) - example: [] - syntax: - content: public IFunctionType GetFunctionType(ITypeRef returnType, params IEnumerable args) - parameters: - - id: returnType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Return type of the function - - id: args - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Potentially empty set of function argument types - return: - type: Ubiquity.NET.Llvm.Types.IFunctionType - description: Signature type for the specified signature - content.vb: Public Function GetFunctionType(returnType As ITypeRef, args As IEnumerable(Of ITypeRef)) As IFunctionType - overload: Ubiquity.NET.Llvm.Context.GetFunctionType* - implements: - - Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - nameWithType.vb: Context.GetFunctionType(ITypeRef, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.Context.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: GetFunctionType(ITypeRef, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.Context.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.Context.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: GetFunctionType(bool, ITypeRef, params IEnumerable) - nameWithType: Context.GetFunctionType(bool, ITypeRef, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Context.GetFunctionType(bool, Ubiquity.NET.Llvm.Types.ITypeRef, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetFunctionType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get an LLVM Function type (e.g. signature) - example: [] - syntax: - content: public IFunctionType GetFunctionType(bool isVarArgs, ITypeRef returnType, params IEnumerable args) - parameters: - - id: isVarArgs - type: System.Boolean - description: Flag to indicate if the method supports C/C++ style VarArgs - - id: returnType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Return type of the function - - id: args - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Potentially empty set of function argument types - return: - type: Ubiquity.NET.Llvm.Types.IFunctionType - description: Signature type for the specified signature - content.vb: Public Function GetFunctionType(isVarArgs As Boolean, returnType As ITypeRef, args As IEnumerable(Of ITypeRef)) As IFunctionType - overload: Ubiquity.NET.Llvm.Context.GetFunctionType* - implements: - - Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - nameWithType.vb: Context.GetFunctionType(Boolean, ITypeRef, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.Context.GetFunctionType(Boolean, Ubiquity.NET.Llvm.Types.ITypeRef, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: GetFunctionType(Boolean, ITypeRef, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - id: CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateFunctionType(ref readonly DIBuilder, IDebugType, params IEnumerable>) - nameWithType: Context.CreateFunctionType(ref readonly DIBuilder, IDebugType, params IEnumerable>) - fullName: Ubiquity.NET.Llvm.Context.CreateFunctionType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params System.Collections.Generic.IEnumerable>) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunctionType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a FunctionType with Debug information - example: [] - syntax: - content: public DebugFunctionType CreateFunctionType(ref readonly DIBuilder diBuilder, IDebugType retType, params IEnumerable> argTypes) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: to use to create the debug information - - id: retType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type of the function - - id: argTypes - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - description: Argument types of the function - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - description: Function signature - content.vb: Public Function CreateFunctionType(diBuilder As DIBuilder, retType As IDebugType(Of ITypeRef, DIType), argTypes As IEnumerable(Of IDebugType(Of ITypeRef, DIType))) As DebugFunctionType - overload: Ubiquity.NET.Llvm.Context.CreateFunctionType* - implements: - - Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - nameWithType.vb: Context.CreateFunctionType(DIBuilder, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunctionType(DIBuilder, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) -- uid: Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - id: CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateFunctionType(ref readonly DIBuilder, bool, IDebugType, params IEnumerable>) - nameWithType: Context.CreateFunctionType(ref readonly DIBuilder, bool, IDebugType, params IEnumerable>) - fullName: Ubiquity.NET.Llvm.Context.CreateFunctionType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params System.Collections.Generic.IEnumerable>) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunctionType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 97 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a FunctionType with Debug information - example: [] - syntax: - content: public DebugFunctionType CreateFunctionType(ref readonly DIBuilder diBuilder, bool isVarArg, IDebugType retType, params IEnumerable> argTypes) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: to use to create the debug information - - id: isVarArg - type: System.Boolean - description: Flag to indicate if this function is variadic - - id: retType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type of the function - - id: argTypes - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - description: Argument types of the function - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - description: Function signature - content.vb: Public Function CreateFunctionType(diBuilder As DIBuilder, isVarArg As Boolean, retType As IDebugType(Of ITypeRef, DIType), argTypes As IEnumerable(Of IDebugType(Of ITypeRef, DIType))) As DebugFunctionType - overload: Ubiquity.NET.Llvm.Context.CreateFunctionType* - implements: - - Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - nameWithType.vb: Context.CreateFunctionType(DIBuilder, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunctionType(DIBuilder, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) -- uid: Ubiquity.NET.Llvm.Context.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - id: CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstantStruct(bool, params IEnumerable) - nameWithType: Context.CreateConstantStruct(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Context.CreateConstantStruct(bool, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstantStruct - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 100 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a constant structure from a set of values - remarks: >- -
note

The actual concrete return type depends on the parameters provided and will be one of the following: - -
derived typeDescription
ConstantAggregateZeroIf all the member values are zero constants
UndefValueIf all the member values are UndefValue
ConstantStructAll other cases
- -

- example: [] - syntax: - content: public Constant CreateConstantStruct(bool packed, params IEnumerable values) - parameters: - - id: packed - type: System.Boolean - description: Flag to indicate if the structure is packed and no alignment should be applied to the members - - id: values - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant} - description: Set of values to use in forming the structure - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Newly created - content.vb: Public Function CreateConstantStruct(packed As Boolean, values As IEnumerable(Of Constant)) As Constant - overload: Ubiquity.NET.Llvm.Context.CreateConstantStruct* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - nameWithType.vb: Context.CreateConstantStruct(Boolean, IEnumerable(Of Constant)) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstantStruct(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Constant)) - name.vb: CreateConstantStruct(Boolean, IEnumerable(Of Constant)) -- uid: Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - commentId: M:Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - id: CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateNamedConstantStruct(IStructType, params IEnumerable) - nameWithType: Context.CreateNamedConstantStruct(IStructType, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateNamedConstantStruct - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 103 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a constant instance of a specified structure type from a set of values - remarks: >- -
note

The actual concrete return type depends on the parameters provided and will be one of the following: - -
derived typeDescription
ConstantAggregateZeroIf all the member values are zero constants
UndefValueIf all the member values are UndefValue
ConstantStructAll other cases
- -

- example: [] - syntax: - content: public Constant CreateNamedConstantStruct(IStructType type, params IEnumerable values) - parameters: - - id: type - type: Ubiquity.NET.Llvm.Types.IStructType - description: Type of the structure to create - - id: values - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant} - description: Set of values to use in forming the structure - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Newly created - content.vb: Public Function CreateNamedConstantStruct(type As IStructType, values As IEnumerable(Of Constant)) As Constant - overload: Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct* - implements: - - Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - nameWithType.vb: Context.CreateNamedConstantStruct(IStructType, IEnumerable(Of Constant)) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Constant)) - name.vb: CreateNamedConstantStruct(IStructType, IEnumerable(Of Constant)) -- uid: Ubiquity.NET.Llvm.Context.CreateStructType(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.CreateStructType(System.String) - id: CreateStructType(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateStructType(string) - nameWithType: Context.CreateStructType(string) - fullName: Ubiquity.NET.Llvm.Context.CreateStructType(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateStructType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 106 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create an opaque structure type (e.g. a forward reference) - remarks: >- - This method creates an opaque type. The method provides a means - - to add a body, including indication of packed status, to an opaque type at a later time if the - - details of the body are required. (If only pointers to the type are required then the body isn't - - required) - example: [] - syntax: - content: public IStructType CreateStructType(string name) - parameters: - - id: name - type: System.String - description: Name of the type (use for anonymous types) - return: - type: Ubiquity.NET.Llvm.Types.IStructType - description: New type - content.vb: Public Function CreateStructType(name As String) As IStructType - overload: Ubiquity.NET.Llvm.Context.CreateStructType* - implements: - - Ubiquity.NET.Llvm.IContext.CreateStructType(System.String) - nameWithType.vb: Context.CreateStructType(String) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateStructType(String) - name.vb: CreateStructType(String) -- uid: Ubiquity.NET.Llvm.Context.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.Context.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateStructType(bool, params IEnumerable) - nameWithType: Context.CreateStructType(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Context.CreateStructType(bool, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateStructType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 109 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create an anonymous structure type (e.g. Tuple) - example: [] - syntax: - content: public IStructType CreateStructType(bool packed, params IEnumerable elements) - parameters: - - id: packed - type: System.Boolean - description: Flag to indicate if the structure is "packed" - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Types of the fields of the structure - return: - type: Ubiquity.NET.Llvm.Types.IStructType - description: with the specified body defined. - content.vb: Public Function CreateStructType(packed As Boolean, elements As IEnumerable(Of ITypeRef)) As IStructType - overload: Ubiquity.NET.Llvm.Context.CreateStructType* - implements: - - Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - nameWithType.vb: Context.CreateStructType(Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateStructType(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: CreateStructType(Boolean, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.Context.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.Context.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateStructType(string, bool, params IEnumerable) - nameWithType: Context.CreateStructType(string, bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Context.CreateStructType(string, bool, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateStructType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 112 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new structure type in this - remarks: If the elements argument list is empty then a complete 0 sized struct is created - example: [] - syntax: - content: public IStructType CreateStructType(string name, bool packed, params IEnumerable elements) - parameters: - - id: name - type: System.String - description: Name of the structure (use for anonymous types) - - id: packed - type: System.Boolean - description: Flag indicating if the structure is packed - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Types for the structures elements in layout order - return: - type: Ubiquity.NET.Llvm.Types.IStructType - description: with the specified body defined. - content.vb: Public Function CreateStructType(name As String, packed As Boolean, elements As IEnumerable(Of ITypeRef)) As IStructType - overload: Ubiquity.NET.Llvm.Context.CreateStructType* - implements: - - Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - nameWithType.vb: Context.CreateStructType(String, Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateStructType(String, Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: CreateStructType(String, Boolean, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.Context.CreateMetadataString(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.CreateMetadataString(System.String) - id: CreateMetadataString(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateMetadataString(string?) - nameWithType: Context.CreateMetadataString(string?) - fullName: Ubiquity.NET.Llvm.Context.CreateMetadataString(string?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateMetadataString - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 115 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a metadata string from the given string - remarks: >- - if value is null then the result - - represents an empty string. - example: [] - syntax: - content: public MDString CreateMetadataString(string? value) - parameters: - - id: value - type: System.String - description: string to create as metadata - return: - type: Ubiquity.NET.Llvm.Metadata.MDString - description: new metadata string - content.vb: Public Function CreateMetadataString(value As String) As MDString - overload: Ubiquity.NET.Llvm.Context.CreateMetadataString* - implements: - - Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String) - nameWithType.vb: Context.CreateMetadataString(String) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateMetadataString(String) - name.vb: CreateMetadataString(String) -- uid: Ubiquity.NET.Llvm.Context.CreateMDNode(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.CreateMDNode(System.String) - id: CreateMDNode(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateMDNode(string) - nameWithType: Context.CreateMDNode(string) - fullName: Ubiquity.NET.Llvm.Context.CreateMDNode(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateMDNode - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 118 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create an from a string - example: [] - syntax: - content: public MDNode CreateMDNode(string value) - parameters: - - id: value - type: System.String - description: String value - return: - type: Ubiquity.NET.Llvm.Metadata.MDNode - description: New node with the string as the first element of the property (as an MDString) - content.vb: Public Function CreateMDNode(value As String) As MDNode - overload: Ubiquity.NET.Llvm.Context.CreateMDNode* - implements: - - Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String) - nameWithType.vb: Context.CreateMDNode(String) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateMDNode(String) - name.vb: CreateMDNode(String) -- uid: Ubiquity.NET.Llvm.Context.CreateConstantString(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstantString(System.String) - id: CreateConstantString(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstantString(string) - nameWithType: Context.CreateConstantString(string) - fullName: Ubiquity.NET.Llvm.Context.CreateConstantString(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstantString - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 121 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a constant data string value - remarks: >- - This converts the string to ANSI form and creates an LLVM constant array of i8 - - characters for the data with a terminating null character. To control the enforcement - - of a terminating null character, use the - - overload to specify the intended behavior. - example: [] - syntax: - content: public ConstantDataArray CreateConstantString(string value) - parameters: - - id: value - type: System.String - description: string to convert into an LLVM constant value - return: - type: Ubiquity.NET.Llvm.Values.ConstantDataArray - description: new - content.vb: Public Function CreateConstantString(value As String) As ConstantDataArray - overload: Ubiquity.NET.Llvm.Context.CreateConstantString* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String) - nameWithType.vb: Context.CreateConstantString(String) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstantString(String) - name.vb: CreateConstantString(String) -- uid: Ubiquity.NET.Llvm.Context.CreateConstantString(System.String,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstantString(System.String,System.Boolean) - id: CreateConstantString(System.String,System.Boolean) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstantString(string, bool) - nameWithType: Context.CreateConstantString(string, bool) - fullName: Ubiquity.NET.Llvm.Context.CreateConstantString(string, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstantString - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 124 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a constant data string value - remarks: >- - This converts the string to ANSI form and creates an LLVM constant array of i8 - - characters for the data. Enforcement of a null terminator depends on the value of nullTerminate - example: [] - syntax: - content: public ConstantDataArray CreateConstantString(string value, bool nullTerminate) - parameters: - - id: value - type: System.String - description: string to convert into an LLVM constant value - - id: nullTerminate - type: System.Boolean - description: flag to indicate if the string should include a null terminator - return: - type: Ubiquity.NET.Llvm.Values.ConstantDataArray - description: new - content.vb: Public Function CreateConstantString(value As String, nullTerminate As Boolean) As ConstantDataArray - overload: Ubiquity.NET.Llvm.Context.CreateConstantString* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - nameWithType.vb: Context.CreateConstantString(String, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstantString(String, Boolean) - name.vb: CreateConstantString(String, Boolean) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.Boolean) - id: CreateConstant(System.Boolean) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(bool) - nameWithType: Context.CreateConstant(bool) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 127 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 1 - example: [] - syntax: - content: public ConstantInt CreateConstant(bool constValue) - parameters: - - id: constValue - type: System.Boolean - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(constValue As Boolean) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean) - nameWithType.vb: Context.CreateConstant(Boolean) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(Boolean) - name.vb: CreateConstant(Boolean) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.Byte) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.Byte) - id: CreateConstant(System.Byte) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(byte) - nameWithType: Context.CreateConstant(byte) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(byte) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 130 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 8 - example: [] - syntax: - content: public ConstantInt CreateConstant(byte constValue) - parameters: - - id: constValue - type: System.Byte - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(constValue As Byte) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte) - nameWithType.vb: Context.CreateConstant(Byte) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(Byte) - name.vb: CreateConstant(Byte) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.SByte) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.SByte) - id: CreateConstant(System.SByte) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(sbyte) - nameWithType: Context.CreateConstant(sbyte) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(sbyte) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 133 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 8 - example: [] - syntax: - content: public Constant CreateConstant(sbyte constValue) - parameters: - - id: constValue - type: System.SByte - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: representing the value - content.vb: Public Function CreateConstant(constValue As SByte) As Constant - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte) - nameWithType.vb: Context.CreateConstant(SByte) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(SByte) - name.vb: CreateConstant(SByte) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.Int16) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.Int16) - id: CreateConstant(System.Int16) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(short) - nameWithType: Context.CreateConstant(short) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(short) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 136 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 16 - example: [] - syntax: - content: public ConstantInt CreateConstant(short constValue) - parameters: - - id: constValue - type: System.Int16 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(constValue As Short) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16) - nameWithType.vb: Context.CreateConstant(Short) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(Short) - name.vb: CreateConstant(Short) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt16) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt16) - id: CreateConstant(System.UInt16) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(ushort) - nameWithType: Context.CreateConstant(ushort) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(ushort) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 139 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 16 - example: [] - syntax: - content: public ConstantInt CreateConstant(ushort constValue) - parameters: - - id: constValue - type: System.UInt16 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(constValue As UShort) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16) - nameWithType.vb: Context.CreateConstant(UShort) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(UShort) - name.vb: CreateConstant(UShort) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.Int32) - id: CreateConstant(System.Int32) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(int) - nameWithType: Context.CreateConstant(int) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(int) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 142 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 32 - example: [] - syntax: - content: public ConstantInt CreateConstant(int constValue) - parameters: - - id: constValue - type: System.Int32 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(constValue As Integer) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32) - nameWithType.vb: Context.CreateConstant(Integer) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(Integer) - name.vb: CreateConstant(Integer) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt32) - id: CreateConstant(System.UInt32) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(uint) - nameWithType: Context.CreateConstant(uint) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 145 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 32 - example: [] - syntax: - content: public ConstantInt CreateConstant(uint constValue) - parameters: - - id: constValue - type: System.UInt32 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(constValue As UInteger) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32) - nameWithType.vb: Context.CreateConstant(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(UInteger) - name.vb: CreateConstant(UInteger) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.Int64) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.Int64) - id: CreateConstant(System.Int64) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(long) - nameWithType: Context.CreateConstant(long) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(long) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 148 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 64 - example: [] - syntax: - content: public ConstantInt CreateConstant(long constValue) - parameters: - - id: constValue - type: System.Int64 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(constValue As Long) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64) - nameWithType.vb: Context.CreateConstant(Long) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(Long) - name.vb: CreateConstant(Long) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt64) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt64) - id: CreateConstant(System.UInt64) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(ulong) - nameWithType: Context.CreateConstant(ulong) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(ulong) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 151 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 64 - example: [] - syntax: - content: public ConstantInt CreateConstant(ulong constValue) - parameters: - - id: constValue - type: System.UInt64 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(constValue As ULong) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64) - nameWithType.vb: Context.CreateConstant(ULong) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(ULong) - name.vb: CreateConstant(ULong) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - id: CreateConstant(System.UInt32,System.UInt64,System.Boolean) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(uint, ulong, bool) - nameWithType: Context.CreateConstant(uint, ulong, bool) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(uint, ulong, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 154 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 64 - example: [] - syntax: - content: public ConstantInt CreateConstant(uint bitWidth, ulong constValue, bool signExtend) - parameters: - - id: bitWidth - type: System.UInt32 - description: Bit width of the integer - - id: constValue - type: System.UInt64 - description: Value for the constant - - id: signExtend - type: System.Boolean - description: flag to indicate if the constant value should be sign extended - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Public Function CreateConstant(bitWidth As UInteger, constValue As ULong, signExtend As Boolean) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - nameWithType.vb: Context.CreateConstant(UInteger, ULong, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(UInteger, ULong, Boolean) - name.vb: CreateConstant(UInteger, ULong, Boolean) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - id: CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(ITypeRef, ulong, bool) - nameWithType: Context.CreateConstant(ITypeRef, ulong, bool) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef, ulong, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 157 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a constant value of the specified integer type - example: [] - syntax: - content: public ConstantInt CreateConstant(ITypeRef intType, ulong constValue, bool signExtend) - parameters: - - id: intType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer type - - id: constValue - type: System.UInt64 - description: value - - id: signExtend - type: System.Boolean - description: flag to indicate if constValue is sign extended - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: Constant for the specified value - content.vb: Public Function CreateConstant(intType As ITypeRef, constValue As ULong, signExtend As Boolean) As ConstantInt - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - nameWithType.vb: Context.CreateConstant(ITypeRef, ULong, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef, ULong, Boolean) - name.vb: CreateConstant(ITypeRef, ULong, Boolean) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.Single) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.Single) - id: CreateConstant(System.Single) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(float) - nameWithType: Context.CreateConstant(float) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(float) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 160 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a constant floating point value for a given value - example: [] - syntax: - content: public ConstantFP CreateConstant(float constValue) - parameters: - - id: constValue - type: System.Single - description: Value to make into a - return: - type: Ubiquity.NET.Llvm.Values.ConstantFP - description: Constant value - content.vb: Public Function CreateConstant(constValue As Single) As ConstantFP - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single) - nameWithType.vb: Context.CreateConstant(Single) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(Single) - name.vb: CreateConstant(Single) -- uid: Ubiquity.NET.Llvm.Context.CreateConstant(System.Double) - commentId: M:Ubiquity.NET.Llvm.Context.CreateConstant(System.Double) - id: CreateConstant(System.Double) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateConstant(double) - nameWithType: Context.CreateConstant(double) - fullName: Ubiquity.NET.Llvm.Context.CreateConstant(double) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 163 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a constant floating point value for a given value - example: [] - syntax: - content: public ConstantFP CreateConstant(double constValue) - parameters: - - id: constValue - type: System.Double - description: Value to make into a - return: - type: Ubiquity.NET.Llvm.Values.ConstantFP - description: Constant value - content.vb: Public Function CreateConstant(constValue As Double) As ConstantFP - overload: Ubiquity.NET.Llvm.Context.CreateConstant* - implements: - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double) - nameWithType.vb: Context.CreateConstant(Double) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateConstant(Double) - name.vb: CreateConstant(Double) -- uid: Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - id: CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateAttribute(AttributeKind) - nameWithType: Context.CreateAttribute(AttributeKind) - fullName: Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAttribute - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 166 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a simple boolean attribute - example: [] - syntax: - content: public AttributeValue CreateAttribute(AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Id of attribute - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: with the specified Id set - content.vb: Public Function CreateAttribute(kind As AttributeKind) As AttributeValue - overload: Ubiquity.NET.Llvm.Context.CreateAttribute* - implements: - - Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - commentId: M:Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - id: CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateAttribute(AttributeKind, ulong) - nameWithType: Context.CreateAttribute(AttributeKind, ulong) - fullName: Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind, ulong) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAttribute - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 169 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates an attribute with an integer value parameter - remarks: >- -

Not all attributes support a value and those that do don't all support - - a full 64bit value. The following table provides the kinds of attributes - - accepting a value and the allowed size of the values.

- -
Bit Length
32
32
64
64
- example: [] - syntax: - content: public AttributeValue CreateAttribute(AttributeKind kind, ulong value) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: The kind of attribute - - id: value - type: System.UInt64 - description: Value for the attribute - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: with the specified kind and value - content.vb: Public Function CreateAttribute(kind As AttributeKind, value As ULong) As AttributeValue - overload: Ubiquity.NET.Llvm.Context.CreateAttribute* - implements: - - Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - nameWithType.vb: Context.CreateAttribute(AttributeKind, ULong) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind, ULong) - name.vb: CreateAttribute(AttributeKind, ULong) -- uid: Ubiquity.NET.Llvm.Context.CreateAttribute(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.CreateAttribute(System.String) - id: CreateAttribute(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateAttribute(string) - nameWithType: Context.CreateAttribute(string) - fullName: Ubiquity.NET.Llvm.Context.CreateAttribute(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAttribute - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 172 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a valueless named attribute - example: [] - syntax: - content: public AttributeValue CreateAttribute(string name) - parameters: - - id: name - type: System.String - description: Attribute name - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: with the specified name - content.vb: Public Function CreateAttribute(name As String) As AttributeValue - overload: Ubiquity.NET.Llvm.Context.CreateAttribute* - implements: - - Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String) - nameWithType.vb: Context.CreateAttribute(String) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateAttribute(String) - name.vb: CreateAttribute(String) -- uid: Ubiquity.NET.Llvm.Context.CreateAttribute(System.String,System.String) - commentId: M:Ubiquity.NET.Llvm.Context.CreateAttribute(System.String,System.String) - id: CreateAttribute(System.String,System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateAttribute(string, string) - nameWithType: Context.CreateAttribute(string, string) - fullName: Ubiquity.NET.Llvm.Context.CreateAttribute(string, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAttribute - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 175 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a Target specific named attribute with value - example: [] - syntax: - content: public AttributeValue CreateAttribute(string name, string value) - parameters: - - id: name - type: System.String - description: Name of the attribute - - id: value - type: System.String - description: Value of the attribute - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: with the specified name and value - content.vb: Public Function CreateAttribute(name As String, value As String) As AttributeValue - overload: Ubiquity.NET.Llvm.Context.CreateAttribute* - implements: - - Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String) - nameWithType.vb: Context.CreateAttribute(String, String) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateAttribute(String, String) - name.vb: CreateAttribute(String, String) -- uid: Ubiquity.NET.Llvm.Context.CreateBasicBlock(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.CreateBasicBlock(System.String) - id: CreateBasicBlock(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateBasicBlock(string) - nameWithType: Context.CreateBasicBlock(string) - fullName: Ubiquity.NET.Llvm.Context.CreateBasicBlock(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateBasicBlock - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 178 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a named without inserting it into a function - example: [] - syntax: - content: public BasicBlock CreateBasicBlock(string name) - parameters: - - id: name - type: System.String - description: Name of the block to create - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: created - content.vb: Public Function CreateBasicBlock(name As String) As BasicBlock - overload: Ubiquity.NET.Llvm.Context.CreateBasicBlock* - implements: - - Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String) - nameWithType.vb: Context.CreateBasicBlock(String) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateBasicBlock(String) - name.vb: CreateBasicBlock(String) -- uid: Ubiquity.NET.Llvm.Context.CreateBitcodeModule - commentId: M:Ubiquity.NET.Llvm.Context.CreateBitcodeModule - id: CreateBitcodeModule - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateBitcodeModule() - nameWithType: Context.CreateBitcodeModule() - fullName: Ubiquity.NET.Llvm.Context.CreateBitcodeModule() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateBitcodeModule - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 181 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new instance of the class in this context - example: [] - syntax: - content: public Module CreateBitcodeModule() - return: - type: Ubiquity.NET.Llvm.Module - description: - content.vb: Public Function CreateBitcodeModule() As [Module] - overload: Ubiquity.NET.Llvm.Context.CreateBitcodeModule* - implements: - - Ubiquity.NET.Llvm.IContext.CreateBitcodeModule -- uid: Ubiquity.NET.Llvm.Context.CreateBitcodeModule(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.CreateBitcodeModule(System.String) - id: CreateBitcodeModule(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: CreateBitcodeModule(string) - nameWithType: Context.CreateBitcodeModule(string) - fullName: Ubiquity.NET.Llvm.Context.CreateBitcodeModule(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateBitcodeModule - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 184 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new instance of the class in a given context - example: [] - syntax: - content: public Module CreateBitcodeModule(string moduleId) - parameters: - - id: moduleId - type: System.String - description: ModuleHandle's ID - return: - type: Ubiquity.NET.Llvm.Module - description: - content.vb: Public Function CreateBitcodeModule(moduleId As String) As [Module] - overload: Ubiquity.NET.Llvm.Context.CreateBitcodeModule* - implements: - - Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String) - nameWithType.vb: Context.CreateBitcodeModule(String) - fullName.vb: Ubiquity.NET.Llvm.Context.CreateBitcodeModule(String) - name.vb: CreateBitcodeModule(String) -- uid: Ubiquity.NET.Llvm.Context.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - commentId: M:Ubiquity.NET.Llvm.Context.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - id: ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: ParseModule(LazyEncodedString, LazyEncodedString) - nameWithType: Context.ParseModule(LazyEncodedString, LazyEncodedString) - fullName: Ubiquity.NET.Llvm.Context.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.InteropHelpers.LazyEncodedString) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ParseModule - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 187 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Parse LLVM IR source for a module, into this context - example: [] - syntax: - content: public Module ParseModule(LazyEncodedString src, LazyEncodedString name) - parameters: - - id: src - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: LLVM IR Source code of the module - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Name of the module buffer - return: - type: Ubiquity.NET.Llvm.Module - description: Newly created module parsed from the IR - content.vb: Public Function ParseModule(src As LazyEncodedString, name As LazyEncodedString) As [Module] - overload: Ubiquity.NET.Llvm.Context.ParseModule* - exceptions: - - type: Ubiquity.NET.Llvm.Interop.LlvmException - commentId: T:Ubiquity.NET.Llvm.Interop.LlvmException - description: Any errors parsing the IR - implements: - - Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) -- uid: Ubiquity.NET.Llvm.Context.GetMDKindId(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.GetMDKindId(System.String) - id: GetMDKindId(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: GetMDKindId(string) - nameWithType: Context.GetMDKindId(string) - fullName: Ubiquity.NET.Llvm.Context.GetMDKindId(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetMDKindId - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 190 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets non-zero IrMetadata kind ID for a given name - remarks: These IDs are uniqued across all modules in this context. - example: [] - syntax: - content: public uint GetMDKindId(string name) - parameters: - - id: name - type: System.String - description: name of the metadata kind - return: - type: System.UInt32 - description: integral constant for the ID - content.vb: Public Function GetMDKindId(name As String) As UInteger - overload: Ubiquity.NET.Llvm.Context.GetMDKindId* - implements: - - Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String) - nameWithType.vb: Context.GetMDKindId(String) - fullName.vb: Ubiquity.NET.Llvm.Context.GetMDKindId(String) - name.vb: GetMDKindId(String) -- uid: Ubiquity.NET.Llvm.Context.OpenBinary(System.String) - commentId: M:Ubiquity.NET.Llvm.Context.OpenBinary(System.String) - id: OpenBinary(System.String) - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: OpenBinary(string) - nameWithType: Context.OpenBinary(string) - fullName: Ubiquity.NET.Llvm.Context.OpenBinary(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpenBinary - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 193 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Opens a from a path - example: [] - syntax: - content: public TargetBinary OpenBinary(string path) - parameters: - - id: path - type: System.String - description: path to the object file binary - return: - type: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - description: new object file - content.vb: Public Function OpenBinary(path As String) As TargetBinary - overload: Ubiquity.NET.Llvm.Context.OpenBinary* - exceptions: - - type: System.IO.IOException - commentId: T:System.IO.IOException - description: File IO failures - implements: - - Ubiquity.NET.Llvm.IContext.OpenBinary(System.String) - nameWithType.vb: Context.OpenBinary(String) - fullName.vb: Ubiquity.NET.Llvm.Context.OpenBinary(String) - name.vb: OpenBinary(String) -- uid: Ubiquity.NET.Llvm.Context.VoidType - commentId: P:Ubiquity.NET.Llvm.Context.VoidType - id: VoidType - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: VoidType - nameWithType: Context.VoidType - fullName: Ubiquity.NET.Llvm.Context.VoidType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VoidType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 196 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM void type for this context - example: [] - syntax: - content: public ITypeRef VoidType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property VoidType As ITypeRef - overload: Ubiquity.NET.Llvm.Context.VoidType* - implements: - - Ubiquity.NET.Llvm.IContext.VoidType -- uid: Ubiquity.NET.Llvm.Context.BoolType - commentId: P:Ubiquity.NET.Llvm.Context.BoolType - id: BoolType - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: BoolType - nameWithType: Context.BoolType - fullName: Ubiquity.NET.Llvm.Context.BoolType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BoolType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 199 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM boolean type for this context - example: [] - syntax: - content: public ITypeRef BoolType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property BoolType As ITypeRef - overload: Ubiquity.NET.Llvm.Context.BoolType* - implements: - - Ubiquity.NET.Llvm.IContext.BoolType -- uid: Ubiquity.NET.Llvm.Context.Int8Type - commentId: P:Ubiquity.NET.Llvm.Context.Int8Type - id: Int8Type - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Int8Type - nameWithType: Context.Int8Type - fullName: Ubiquity.NET.Llvm.Context.Int8Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int8Type - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 202 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 8 bit integer type for this context - example: [] - syntax: - content: public ITypeRef Int8Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property Int8Type As ITypeRef - overload: Ubiquity.NET.Llvm.Context.Int8Type* - implements: - - Ubiquity.NET.Llvm.IContext.Int8Type -- uid: Ubiquity.NET.Llvm.Context.Int16Type - commentId: P:Ubiquity.NET.Llvm.Context.Int16Type - id: Int16Type - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Int16Type - nameWithType: Context.Int16Type - fullName: Ubiquity.NET.Llvm.Context.Int16Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int16Type - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 205 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 16 bit integer type for this context - example: [] - syntax: - content: public ITypeRef Int16Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property Int16Type As ITypeRef - overload: Ubiquity.NET.Llvm.Context.Int16Type* - implements: - - Ubiquity.NET.Llvm.IContext.Int16Type -- uid: Ubiquity.NET.Llvm.Context.Int32Type - commentId: P:Ubiquity.NET.Llvm.Context.Int32Type - id: Int32Type - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Int32Type - nameWithType: Context.Int32Type - fullName: Ubiquity.NET.Llvm.Context.Int32Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int32Type - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 208 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 32 bit integer type for this context - example: [] - syntax: - content: public ITypeRef Int32Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property Int32Type As ITypeRef - overload: Ubiquity.NET.Llvm.Context.Int32Type* - implements: - - Ubiquity.NET.Llvm.IContext.Int32Type -- uid: Ubiquity.NET.Llvm.Context.Int64Type - commentId: P:Ubiquity.NET.Llvm.Context.Int64Type - id: Int64Type - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Int64Type - nameWithType: Context.Int64Type - fullName: Ubiquity.NET.Llvm.Context.Int64Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int64Type - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 211 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 64 bit integer type for this context - example: [] - syntax: - content: public ITypeRef Int64Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property Int64Type As ITypeRef - overload: Ubiquity.NET.Llvm.Context.Int64Type* - implements: - - Ubiquity.NET.Llvm.IContext.Int64Type -- uid: Ubiquity.NET.Llvm.Context.Int128Type - commentId: P:Ubiquity.NET.Llvm.Context.Int128Type - id: Int128Type - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Int128Type - nameWithType: Context.Int128Type - fullName: Ubiquity.NET.Llvm.Context.Int128Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int128Type - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 214 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 128 bit integer type for this context - example: [] - syntax: - content: public ITypeRef Int128Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property Int128Type As ITypeRef - overload: Ubiquity.NET.Llvm.Context.Int128Type* - implements: - - Ubiquity.NET.Llvm.IContext.Int128Type -- uid: Ubiquity.NET.Llvm.Context.HalfFloatType - commentId: P:Ubiquity.NET.Llvm.Context.HalfFloatType - id: HalfFloatType - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: HalfFloatType - nameWithType: Context.HalfFloatType - fullName: Ubiquity.NET.Llvm.Context.HalfFloatType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HalfFloatType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 217 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM half precision floating point type for this context - example: [] - syntax: - content: public ITypeRef HalfFloatType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property HalfFloatType As ITypeRef - overload: Ubiquity.NET.Llvm.Context.HalfFloatType* - implements: - - Ubiquity.NET.Llvm.IContext.HalfFloatType -- uid: Ubiquity.NET.Llvm.Context.FloatType - commentId: P:Ubiquity.NET.Llvm.Context.FloatType - id: FloatType - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: FloatType - nameWithType: Context.FloatType - fullName: Ubiquity.NET.Llvm.Context.FloatType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FloatType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 220 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM single precision floating point type for this context - example: [] - syntax: - content: public ITypeRef FloatType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property FloatType As ITypeRef - overload: Ubiquity.NET.Llvm.Context.FloatType* - implements: - - Ubiquity.NET.Llvm.IContext.FloatType -- uid: Ubiquity.NET.Llvm.Context.DoubleType - commentId: P:Ubiquity.NET.Llvm.Context.DoubleType - id: DoubleType - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: DoubleType - nameWithType: Context.DoubleType - fullName: Ubiquity.NET.Llvm.Context.DoubleType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DoubleType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 223 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM double precision floating point type for this context - example: [] - syntax: - content: public ITypeRef DoubleType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property DoubleType As ITypeRef - overload: Ubiquity.NET.Llvm.Context.DoubleType* - implements: - - Ubiquity.NET.Llvm.IContext.DoubleType -- uid: Ubiquity.NET.Llvm.Context.TokenType - commentId: P:Ubiquity.NET.Llvm.Context.TokenType - id: TokenType - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: TokenType - nameWithType: Context.TokenType - fullName: Ubiquity.NET.Llvm.Context.TokenType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TokenType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 226 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM token type for this context - example: [] - syntax: - content: public ITypeRef TokenType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property TokenType As ITypeRef - overload: Ubiquity.NET.Llvm.Context.TokenType* - implements: - - Ubiquity.NET.Llvm.IContext.TokenType -- uid: Ubiquity.NET.Llvm.Context.MetadataType - commentId: P:Ubiquity.NET.Llvm.Context.MetadataType - id: MetadataType - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: MetadataType - nameWithType: Context.MetadataType - fullName: Ubiquity.NET.Llvm.Context.MetadataType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MetadataType - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 229 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM IrMetadata type for this context - example: [] - syntax: - content: public ITypeRef MetadataType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property MetadataType As ITypeRef - overload: Ubiquity.NET.Llvm.Context.MetadataType* - implements: - - Ubiquity.NET.Llvm.IContext.MetadataType -- uid: Ubiquity.NET.Llvm.Context.X86Float80Type - commentId: P:Ubiquity.NET.Llvm.Context.X86Float80Type - id: X86Float80Type - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: X86Float80Type - nameWithType: Context.X86Float80Type - fullName: Ubiquity.NET.Llvm.Context.X86Float80Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86Float80Type - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 232 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM X86 80-bit floating point type for this context - example: [] - syntax: - content: public ITypeRef X86Float80Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property X86Float80Type As ITypeRef - overload: Ubiquity.NET.Llvm.Context.X86Float80Type* - implements: - - Ubiquity.NET.Llvm.IContext.X86Float80Type -- uid: Ubiquity.NET.Llvm.Context.Float128Type - commentId: P:Ubiquity.NET.Llvm.Context.Float128Type - id: Float128Type - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Float128Type - nameWithType: Context.Float128Type - fullName: Ubiquity.NET.Llvm.Context.Float128Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Float128Type - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 235 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 128-Bit floating point type - example: [] - syntax: - content: public ITypeRef Float128Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property Float128Type As ITypeRef - overload: Ubiquity.NET.Llvm.Context.Float128Type* - implements: - - Ubiquity.NET.Llvm.IContext.Float128Type -- uid: Ubiquity.NET.Llvm.Context.PpcFloat128Type - commentId: P:Ubiquity.NET.Llvm.Context.PpcFloat128Type - id: PpcFloat128Type - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: PpcFloat128Type - nameWithType: Context.PpcFloat128Type - fullName: Ubiquity.NET.Llvm.Context.PpcFloat128Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PpcFloat128Type - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 238 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM PPC 128-bit floating point type - example: [] - syntax: - content: public ITypeRef PpcFloat128Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property PpcFloat128Type As ITypeRef - overload: Ubiquity.NET.Llvm.Context.PpcFloat128Type* - implements: - - Ubiquity.NET.Llvm.IContext.PpcFloat128Type -- uid: Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes - commentId: P:Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes - id: OdrUniqueDebugTypes - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: OdrUniqueDebugTypes - nameWithType: Context.OdrUniqueDebugTypes - fullName: Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OdrUniqueDebugTypes - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 241 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets a value indicating whether the context keeps a map for uniqueing debug info identifiers across the context - example: [] - syntax: - content: public bool OdrUniqueDebugTypes { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property OdrUniqueDebugTypes As Boolean - overload: Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes* - implements: - - Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes -- uid: Ubiquity.NET.Llvm.Context.DiscardValueName - commentId: P:Ubiquity.NET.Llvm.Context.DiscardValueName - id: DiscardValueName - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: DiscardValueName - nameWithType: Context.DiscardValueName - fullName: Ubiquity.NET.Llvm.Context.DiscardValueName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DiscardValueName - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 248 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets a value indicating whether this context is configured to discard value names - example: [] - syntax: - content: public bool DiscardValueName { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property DiscardValueName As Boolean - overload: Ubiquity.NET.Llvm.Context.DiscardValueName* - implements: - - Ubiquity.NET.Llvm.IContext.DiscardValueName -- uid: Ubiquity.NET.Llvm.Context.IsDisposed - commentId: P:Ubiquity.NET.Llvm.Context.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: IsDisposed - nameWithType: Context.IsDisposed - fullName: Ubiquity.NET.Llvm.Context.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 256 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this instance is already disposed - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.Context.IsDisposed* -- uid: Ubiquity.NET.Llvm.Context.Dispose - commentId: M:Ubiquity.NET.Llvm.Context.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.Context - langs: - - csharp - - vb - name: Dispose() - nameWithType: Context.Dispose() - fullName: Ubiquity.NET.Llvm.Context.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Context.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/Context.cs - startLine: 259 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.Context.Dispose* - implements: - - System.IDisposable.Dispose -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html - name: DICompileUnit - nameWithType: DICompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.IEquatable{Ubiquity.NET.Llvm.IContext} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.IContext} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IContext) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.IContext) - name.vb: IEquatable(Of IContext) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Context} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Context} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Context) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Context) - name.vb: IEquatable(Of Context) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Context - name: Context - href: Ubiquity.NET.Llvm.Context.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Context - name: Context - href: Ubiquity.NET.Llvm.Context.html - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Context.Equals* - commentId: Overload:Ubiquity.NET.Llvm.Context.Equals - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Equals_Ubiquity_NET_Llvm_IContext_ - name: Equals - nameWithType: Context.Equals - fullName: Ubiquity.NET.Llvm.Context.Equals -- uid: System.IEquatable{Ubiquity.NET.Llvm.IContext}.Equals(Ubiquity.NET.Llvm.IContext) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.IContext}.Equals(Ubiquity.NET.Llvm.IContext) - parent: System.IEquatable{Ubiquity.NET.Llvm.IContext} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(IContext) - nameWithType: IEquatable.Equals(IContext) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.IContext) - nameWithType.vb: IEquatable(Of IContext).Equals(IContext) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.IContext).Equals(Ubiquity.NET.Llvm.IContext) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.IContext}.Equals(Ubiquity.NET.Llvm.IContext) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.IContext}.Equals(Ubiquity.NET.Llvm.IContext) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Context}.Equals(Ubiquity.NET.Llvm.Context) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Context}.Equals(Ubiquity.NET.Llvm.Context) - parent: System.IEquatable{Ubiquity.NET.Llvm.Context} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(Context) - nameWithType: IEquatable.Equals(Context) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Context) - nameWithType.vb: IEquatable(Of Context).Equals(Context) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Context).Equals(Ubiquity.NET.Llvm.Context) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Context}.Equals(Ubiquity.NET.Llvm.Context) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Context - name: Context - href: Ubiquity.NET.Llvm.Context.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Context}.Equals(Ubiquity.NET.Llvm.Context) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Context - name: Context - href: Ubiquity.NET.Llvm.Context.html - - name: ) -- uid: Ubiquity.NET.Llvm.Context - commentId: T:Ubiquity.NET.Llvm.Context - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Context.html - name: Context - nameWithType: Context - fullName: Ubiquity.NET.Llvm.Context -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Context.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.Context.GetHashCode - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_GetHashCode - name: GetHashCode - nameWithType: Context.GetHashCode - fullName: Ubiquity.NET.Llvm.Context.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.Context.Dispose - commentId: M:Ubiquity.NET.Llvm.Context.Dispose - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Dispose - name: Dispose() - nameWithType: Context.Dispose() - fullName: Ubiquity.NET.Llvm.Context.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Context.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Context.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Interop.GlobalHandleBase - commentId: T:Ubiquity.NET.Llvm.Interop.GlobalHandleBase - name: GlobalHandleBase - nameWithType: GlobalHandleBase - fullName: Ubiquity.NET.Llvm.Interop.GlobalHandleBase -- uid: Ubiquity.NET.Llvm.Context.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.Context.#ctor - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context__ctor - name: Context - nameWithType: Context.Context - fullName: Ubiquity.NET.Llvm.Context.Context - nameWithType.vb: Context.New - fullName.vb: Ubiquity.NET.Llvm.Context.New - name.vb: New -- uid: Ubiquity.NET.Llvm.Context.SetDiagnosticHandler* - commentId: Overload:Ubiquity.NET.Llvm.Context.SetDiagnosticHandler - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_SetDiagnosticHandler_Ubiquity_NET_Llvm_DiagnosticInfoCallbackAction_ - name: SetDiagnosticHandler - nameWithType: Context.SetDiagnosticHandler - fullName: Ubiquity.NET.Llvm.Context.SetDiagnosticHandler -- uid: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - commentId: M:Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_SetDiagnosticHandler_Ubiquity_NET_Llvm_DiagnosticInfoCallbackAction_ - name: SetDiagnosticHandler(DiagnosticInfoCallbackAction) - nameWithType: IContext.SetDiagnosticHandler(DiagnosticInfoCallbackAction) - fullName: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - name: SetDiagnosticHandler - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_SetDiagnosticHandler_Ubiquity_NET_Llvm_DiagnosticInfoCallbackAction_ - - name: ( - - uid: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - name: DiagnosticInfoCallbackAction - href: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - name: SetDiagnosticHandler - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_SetDiagnosticHandler_Ubiquity_NET_Llvm_DiagnosticInfoCallbackAction_ - - name: ( - - uid: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - name: DiagnosticInfoCallbackAction - href: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.html - - name: ) -- uid: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - commentId: T:Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.html - name: DiagnosticInfoCallbackAction - nameWithType: DiagnosticInfoCallbackAction - fullName: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.Context.GetPointerTypeFor* - commentId: Overload:Ubiquity.NET.Llvm.Context.GetPointerTypeFor - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_GetPointerTypeFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: GetPointerTypeFor - nameWithType: Context.GetPointerTypeFor - fullName: Ubiquity.NET.Llvm.Context.GetPointerTypeFor -- uid: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetPointerTypeFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: GetPointerTypeFor(ITypeRef) - nameWithType: IContext.GetPointerTypeFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: GetPointerTypeFor - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetPointerTypeFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: GetPointerTypeFor - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetPointerTypeFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.IContext.BoolType - commentId: P:Ubiquity.NET.Llvm.IContext.BoolType - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_BoolType - name: BoolType - nameWithType: IContext.BoolType - fullName: Ubiquity.NET.Llvm.IContext.BoolType -- uid: Ubiquity.NET.Llvm.IContext.Int16Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int16Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int16Type - name: Int16Type - nameWithType: IContext.Int16Type - fullName: Ubiquity.NET.Llvm.IContext.Int16Type -- uid: Ubiquity.NET.Llvm.Context.GetIntType* - commentId: Overload:Ubiquity.NET.Llvm.Context.GetIntType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_GetIntType_System_UInt32_ - name: GetIntType - nameWithType: Context.GetIntType - fullName: Ubiquity.NET.Llvm.Context.GetIntType -- uid: Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetIntType_System_UInt32_ - name: GetIntType(uint) - nameWithType: IContext.GetIntType(uint) - fullName: Ubiquity.NET.Llvm.IContext.GetIntType(uint) - nameWithType.vb: IContext.GetIntType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.IContext.GetIntType(UInteger) - name.vb: GetIntType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32) - name: GetIntType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetIntType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32) - name: GetIntType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetIntType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Context.GetFunctionType* - commentId: Overload:Ubiquity.NET.Llvm.Context.GetFunctionType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_GetFunctionType_Ubiquity_NET_Llvm_Types_ITypeRef_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: GetFunctionType - nameWithType: Context.GetFunctionType - fullName: Ubiquity.NET.Llvm.Context.GetFunctionType -- uid: Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetFunctionType_Ubiquity_NET_Llvm_Types_ITypeRef_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: GetFunctionType(ITypeRef, params IEnumerable) - nameWithType: IContext.GetFunctionType(ITypeRef, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IContext.GetFunctionType(ITypeRef, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: GetFunctionType(ITypeRef, IEnumerable(Of ITypeRef)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: GetFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetFunctionType_Ubiquity_NET_Llvm_Types_ITypeRef_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: GetFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetFunctionType_Ubiquity_NET_Llvm_Types_ITypeRef_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of ITypeRef) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEnumerable(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetFunctionType_System_Boolean_Ubiquity_NET_Llvm_Types_ITypeRef_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: GetFunctionType(bool, ITypeRef, params IEnumerable) - nameWithType: IContext.GetFunctionType(bool, ITypeRef, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.GetFunctionType(bool, Ubiquity.NET.Llvm.Types.ITypeRef, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IContext.GetFunctionType(Boolean, ITypeRef, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.IContext.GetFunctionType(Boolean, Ubiquity.NET.Llvm.Types.ITypeRef, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: GetFunctionType(Boolean, ITypeRef, IEnumerable(Of ITypeRef)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: GetFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetFunctionType_System_Boolean_Ubiquity_NET_Llvm_Types_ITypeRef_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: GetFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetFunctionType_System_Boolean_Ubiquity_NET_Llvm_Types_ITypeRef_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.Context.CreateFunctionType* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateFunctionType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - name: CreateFunctionType - nameWithType: Context.CreateFunctionType - fullName: Ubiquity.NET.Llvm.Context.CreateFunctionType -- uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - name: CreateFunctionType(ref readonly DIBuilder, IDebugType, params IEnumerable>) - nameWithType: IContext.CreateFunctionType(ref readonly DIBuilder, IDebugType, params IEnumerable>) - fullName: Ubiquity.NET.Llvm.IContext.CreateFunctionType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params System.Collections.Generic.IEnumerable>) - nameWithType.vb: IContext.CreateFunctionType(DIBuilder, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunctionType(DIBuilder, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - name: CreateFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - name: CreateFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable> - nameWithType: IEnumerable> - fullName: System.Collections.Generic.IEnumerable> - nameWithType.vb: IEnumerable(Of IDebugType(Of ITypeRef, DIType)) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: IEnumerable(Of IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html - name: DebugFunctionType - nameWithType: DebugFunctionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType -- uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - name: CreateFunctionType(ref readonly DIBuilder, bool, IDebugType, params IEnumerable>) - nameWithType: IContext.CreateFunctionType(ref readonly DIBuilder, bool, IDebugType, params IEnumerable>) - fullName: Ubiquity.NET.Llvm.IContext.CreateFunctionType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params System.Collections.Generic.IEnumerable>) - nameWithType.vb: IContext.CreateFunctionType(DIBuilder, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunctionType(DIBuilder, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - name: CreateFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - name: CreateFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Context.CreateConstantStruct* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateConstantStruct - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateConstantStruct_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - name: CreateConstantStruct - nameWithType: Context.CreateConstantStruct - fullName: Ubiquity.NET.Llvm.Context.CreateConstantStruct -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantStruct_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - name: CreateConstantStruct(bool, params IEnumerable) - nameWithType: IContext.CreateConstantStruct(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantStruct(bool, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IContext.CreateConstantStruct(Boolean, IEnumerable(Of Constant)) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstantStruct(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Constant)) - name.vb: CreateConstantStruct(Boolean, IEnumerable(Of Constant)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - name: CreateConstantStruct - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantStruct_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - name: CreateConstantStruct - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantStruct_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Constant) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Constant) - name.vb: IEnumerable(Of Constant) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateNamedConstantStruct_Ubiquity_NET_Llvm_Types_IStructType_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - name: CreateNamedConstantStruct - nameWithType: Context.CreateNamedConstantStruct - fullName: Ubiquity.NET.Llvm.Context.CreateNamedConstantStruct -- uid: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateNamedConstantStruct_Ubiquity_NET_Llvm_Types_IStructType_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - name: CreateNamedConstantStruct(IStructType, params IEnumerable) - nameWithType: IContext.CreateNamedConstantStruct(IStructType, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IContext.CreateNamedConstantStruct(IStructType, IEnumerable(Of Constant)) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Constant)) - name.vb: CreateNamedConstantStruct(IStructType, IEnumerable(Of Constant)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - name: CreateNamedConstantStruct - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateNamedConstantStruct_Ubiquity_NET_Llvm_Types_IStructType_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - name: CreateNamedConstantStruct - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateNamedConstantStruct_Ubiquity_NET_Llvm_Types_IStructType_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IStructType.html - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType -- uid: System.String.Empty - commentId: F:System.String.Empty - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string.empty - name: Empty - nameWithType: string.Empty - fullName: string.Empty - nameWithType.vb: String.Empty - fullName.vb: String.Empty -- uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.Types.IStructType - isExternal: true - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: SetBody(bool, params IEnumerable) - nameWithType: IStructType.SetBody(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Types.IStructType.SetBody(bool, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IStructType.SetBody(Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.Types.IStructType.SetBody(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: SetBody(Boolean, IEnumerable(Of ITypeRef)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: SetBody - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: SetBody - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Context.CreateStructType* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateStructType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateStructType_System_String_ - name: CreateStructType - nameWithType: Context.CreateStructType - fullName: Ubiquity.NET.Llvm.Context.CreateStructType -- uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateStructType(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_String_ - name: CreateStructType(string) - nameWithType: IContext.CreateStructType(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateStructType(string) - nameWithType.vb: IContext.CreateStructType(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateStructType(String) - name.vb: CreateStructType(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.String) - name: CreateStructType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.String) - name: CreateStructType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: CreateStructType(bool, params IEnumerable) - nameWithType: IContext.CreateStructType(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.CreateStructType(bool, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IContext.CreateStructType(Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateStructType(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: CreateStructType(Boolean, IEnumerable(Of ITypeRef)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: CreateStructType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: CreateStructType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.ContextAlias - commentId: T:Ubiquity.NET.Llvm.ContextAlias - name: ContextAlias - nameWithType: ContextAlias - fullName: Ubiquity.NET.Llvm.ContextAlias -- uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_String_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: CreateStructType(string, bool, params IEnumerable) - nameWithType: IContext.CreateStructType(string, bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.CreateStructType(string, bool, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IContext.CreateStructType(String, Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateStructType(String, Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: CreateStructType(String, Boolean, IEnumerable(Of ITypeRef)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: CreateStructType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_String_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: CreateStructType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_String_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Context.CreateMetadataString* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateMetadataString - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateMetadataString_System_String_ - name: CreateMetadataString - nameWithType: Context.CreateMetadataString - fullName: Ubiquity.NET.Llvm.Context.CreateMetadataString -- uid: Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateMetadataString_System_String_ - name: CreateMetadataString(string) - nameWithType: IContext.CreateMetadataString(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateMetadataString(string) - nameWithType.vb: IContext.CreateMetadataString(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateMetadataString(String) - name.vb: CreateMetadataString(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String) - name: CreateMetadataString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateMetadataString_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String) - name: CreateMetadataString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateMetadataString_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDString - commentId: T:Ubiquity.NET.Llvm.Metadata.MDString - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDString.html - name: MDString - nameWithType: MDString - fullName: Ubiquity.NET.Llvm.Metadata.MDString -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Context.CreateMDNode* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateMDNode - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateMDNode_System_String_ - name: CreateMDNode - nameWithType: Context.CreateMDNode - fullName: Ubiquity.NET.Llvm.Context.CreateMDNode -- uid: Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateMDNode_System_String_ - name: CreateMDNode(string) - nameWithType: IContext.CreateMDNode(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateMDNode(string) - nameWithType.vb: IContext.CreateMDNode(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateMDNode(String) - name.vb: CreateMDNode(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String) - name: CreateMDNode - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateMDNode_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String) - name: CreateMDNode - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateMDNode_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataArray - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantDataArray.html - name: ConstantDataArray - nameWithType: ConstantDataArray - fullName: Ubiquity.NET.Llvm.Values.ConstantDataArray -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_System_Boolean_ - name: CreateConstantString(string, bool) - nameWithType: IContext.CreateConstantString(string, bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantString(string, bool) - nameWithType.vb: IContext.CreateConstantString(String, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstantString(String, Boolean) - name.vb: CreateConstantString(String, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - name: CreateConstantString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_System_Boolean_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - name: CreateConstantString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_System_Boolean_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Context.CreateConstantString* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateConstantString - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateConstantString_System_String_ - name: CreateConstantString - nameWithType: Context.CreateConstantString - fullName: Ubiquity.NET.Llvm.Context.CreateConstantString -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_ - name: CreateConstantString(string) - nameWithType: IContext.CreateConstantString(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantString(string) - nameWithType.vb: IContext.CreateConstantString(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstantString(String) - name.vb: CreateConstantString(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String) - name: CreateConstantString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String) - name: CreateConstantString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantInt - commentId: T:Ubiquity.NET.Llvm.Values.ConstantInt - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - name: ConstantInt - nameWithType: ConstantInt - fullName: Ubiquity.NET.Llvm.Values.ConstantInt -- uid: Ubiquity.NET.Llvm.Context.CreateConstant* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateConstant - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateConstant_System_Boolean_ - name: CreateConstant - nameWithType: Context.CreateConstant - fullName: Ubiquity.NET.Llvm.Context.CreateConstant -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Boolean_ - name: CreateConstant(bool) - nameWithType: IContext.CreateConstant(bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(bool) - nameWithType.vb: IContext.CreateConstant(Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Boolean) - name.vb: CreateConstant(Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Boolean_ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Boolean_ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Byte_ - name: CreateConstant(byte) - nameWithType: IContext.CreateConstant(byte) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(byte) - nameWithType.vb: IContext.CreateConstant(Byte) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Byte) - name.vb: CreateConstant(Byte) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Byte_ - - name: ( - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Byte_ - - name: ( - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_SByte_ - name: CreateConstant(sbyte) - nameWithType: IContext.CreateConstant(sbyte) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(sbyte) - nameWithType.vb: IContext.CreateConstant(SByte) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(SByte) - name.vb: CreateConstant(SByte) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_SByte_ - - name: ( - - uid: System.SByte - name: sbyte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.sbyte - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_SByte_ - - name: ( - - uid: System.SByte - name: SByte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.sbyte - - name: ) -- uid: System.SByte - commentId: T:System.SByte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.sbyte - name: sbyte - nameWithType: sbyte - fullName: sbyte - nameWithType.vb: SByte - fullName.vb: SByte - name.vb: SByte -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int16_ - name: CreateConstant(short) - nameWithType: IContext.CreateConstant(short) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(short) - nameWithType.vb: IContext.CreateConstant(Short) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Short) - name.vb: CreateConstant(Short) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int16_ - - name: ( - - uid: System.Int16 - name: short - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int16 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int16_ - - name: ( - - uid: System.Int16 - name: Short - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int16 - - name: ) -- uid: System.Int16 - commentId: T:System.Int16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int16 - name: short - nameWithType: short - fullName: short - nameWithType.vb: Short - fullName.vb: Short - name.vb: Short -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt16_ - name: CreateConstant(ushort) - nameWithType: IContext.CreateConstant(ushort) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(ushort) - nameWithType.vb: IContext.CreateConstant(UShort) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(UShort) - name.vb: CreateConstant(UShort) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt16_ - - name: ( - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt16_ - - name: ( - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ) -- uid: System.UInt16 - commentId: T:System.UInt16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort - nameWithType: ushort - fullName: ushort - nameWithType.vb: UShort - fullName.vb: UShort - name.vb: UShort -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int32_ - name: CreateConstant(int) - nameWithType: IContext.CreateConstant(int) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(int) - nameWithType.vb: IContext.CreateConstant(Integer) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Integer) - name.vb: CreateConstant(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt32_ - name: CreateConstant(uint) - nameWithType: IContext.CreateConstant(uint) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(uint) - nameWithType.vb: IContext.CreateConstant(UInteger) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(UInteger) - name.vb: CreateConstant(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int64_ - name: CreateConstant(long) - nameWithType: IContext.CreateConstant(long) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(long) - nameWithType.vb: IContext.CreateConstant(Long) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Long) - name.vb: CreateConstant(Long) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int64_ - - name: ( - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Int64_ - - name: ( - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: ) -- uid: System.Int64 - commentId: T:System.Int64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long - nameWithType: long - fullName: long - nameWithType.vb: Long - fullName.vb: Long - name.vb: Long -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt64_ - name: CreateConstant(ulong) - nameWithType: IContext.CreateConstant(ulong) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(ulong) - nameWithType.vb: IContext.CreateConstant(ULong) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(ULong) - name.vb: CreateConstant(ULong) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt64_ - - name: ( - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt64_ - - name: ( - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt32_System_UInt64_System_Boolean_ - name: CreateConstant(uint, ulong, bool) - nameWithType: IContext.CreateConstant(uint, ulong, bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(uint, ulong, bool) - nameWithType.vb: IContext.CreateConstant(UInteger, ULong, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(UInteger, ULong, Boolean) - name.vb: CreateConstant(UInteger, ULong, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt32_System_UInt64_System_Boolean_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_UInt32_System_UInt64_System_Boolean_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_Ubiquity_NET_Llvm_Types_ITypeRef_System_UInt64_System_Boolean_ - name: CreateConstant(ITypeRef, ulong, bool) - nameWithType: IContext.CreateConstant(ITypeRef, ulong, bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef, ulong, bool) - nameWithType.vb: IContext.CreateConstant(ITypeRef, ULong, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef, ULong, Boolean) - name.vb: CreateConstant(ITypeRef, ULong, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_Ubiquity_NET_Llvm_Types_ITypeRef_System_UInt64_System_Boolean_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_Ubiquity_NET_Llvm_Types_ITypeRef_System_UInt64_System_Boolean_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantFP - commentId: T:Ubiquity.NET.Llvm.Values.ConstantFP - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantFP.html - name: ConstantFP - nameWithType: ConstantFP - fullName: Ubiquity.NET.Llvm.Values.ConstantFP -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Single_ - name: CreateConstant(float) - nameWithType: IContext.CreateConstant(float) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(float) - nameWithType.vb: IContext.CreateConstant(Single) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Single) - name.vb: CreateConstant(Single) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Single_ - - name: ( - - uid: System.Single - name: float - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Single_ - - name: ( - - uid: System.Single - name: Single - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - - name: ) -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Double_ - name: CreateConstant(double) - nameWithType: IContext.CreateConstant(double) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(double) - nameWithType.vb: IContext.CreateConstant(Double) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Double) - name.vb: CreateConstant(Double) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Double_ - - name: ( - - uid: System.Double - name: double - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.double - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double) - name: CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Double_ - - name: ( - - uid: System.Double - name: Double - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.double - - name: ) -- uid: System.Double - commentId: T:System.Double - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.double - name: double - nameWithType: double - fullName: double - nameWithType.vb: Double - fullName.vb: Double - name.vb: Double -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Context.CreateAttribute* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateAttribute - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: CreateAttribute - nameWithType: Context.CreateAttribute - fullName: Ubiquity.NET.Llvm.Context.CreateAttribute -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: CreateAttribute(AttributeKind) - nameWithType: IContext.CreateAttribute(AttributeKind) - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - name: CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - name: CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Alignment - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Alignment - href: Ubiquity.NET.Llvm.Values.AttributeKind.html#Ubiquity_NET_Llvm_Values_AttributeKind_Alignment - name: Alignment - nameWithType: AttributeKind.Alignment - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Alignment -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment - href: Ubiquity.NET.Llvm.Values.AttributeKind.html#Ubiquity_NET_Llvm_Values_AttributeKind_StackAlignment - name: StackAlignment - nameWithType: AttributeKind.StackAlignment - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable - href: Ubiquity.NET.Llvm.Values.AttributeKind.html#Ubiquity_NET_Llvm_Values_AttributeKind_Dereferenceable - name: Dereferenceable - nameWithType: AttributeKind.Dereferenceable - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull - href: Ubiquity.NET.Llvm.Values.AttributeKind.html#Ubiquity_NET_Llvm_Values_AttributeKind_DereferenceableOrNull - name: DereferenceableOrNull - nameWithType: AttributeKind.DereferenceableOrNull - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_System_UInt64_ - name: CreateAttribute(AttributeKind, ulong) - nameWithType: IContext.CreateAttribute(AttributeKind, ulong) - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind, ulong) - nameWithType.vb: IContext.CreateAttribute(AttributeKind, ULong) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind, ULong) - name.vb: CreateAttribute(AttributeKind, ULong) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - name: CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_System_UInt64_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - name: CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_System_UInt64_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_System_String_ - name: CreateAttribute(string) - nameWithType: IContext.CreateAttribute(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute(string) - nameWithType.vb: IContext.CreateAttribute(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateAttribute(String) - name.vb: CreateAttribute(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String) - name: CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String) - name: CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_System_String_System_String_ - name: CreateAttribute(string, string) - nameWithType: IContext.CreateAttribute(string, string) - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute(string, string) - nameWithType.vb: IContext.CreateAttribute(String, String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateAttribute(String, String) - name.vb: CreateAttribute(String, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String) - name: CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_System_String_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String) - name: CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_System_String_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Context.CreateBasicBlock* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateBasicBlock - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateBasicBlock_System_String_ - name: CreateBasicBlock - nameWithType: Context.CreateBasicBlock - fullName: Ubiquity.NET.Llvm.Context.CreateBasicBlock -- uid: Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBasicBlock_System_String_ - name: CreateBasicBlock(string) - nameWithType: IContext.CreateBasicBlock(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateBasicBlock(string) - nameWithType.vb: IContext.CreateBasicBlock(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateBasicBlock(String) - name.vb: CreateBasicBlock(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String) - name: CreateBasicBlock - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBasicBlock_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String) - name: CreateBasicBlock - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBasicBlock_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Context.CreateBitcodeModule* - commentId: Overload:Ubiquity.NET.Llvm.Context.CreateBitcodeModule - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_CreateBitcodeModule - name: CreateBitcodeModule - nameWithType: Context.CreateBitcodeModule - fullName: Ubiquity.NET.Llvm.Context.CreateBitcodeModule -- uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule - commentId: M:Ubiquity.NET.Llvm.IContext.CreateBitcodeModule - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBitcodeModule - name: CreateBitcodeModule() - nameWithType: IContext.CreateBitcodeModule() - fullName: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule() - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule - name: CreateBitcodeModule - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBitcodeModule - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule - name: CreateBitcodeModule - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBitcodeModule - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBitcodeModule_System_String_ - name: CreateBitcodeModule(string) - nameWithType: IContext.CreateBitcodeModule(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(string) - nameWithType.vb: IContext.CreateBitcodeModule(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(String) - name.vb: CreateBitcodeModule(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String) - name: CreateBitcodeModule - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBitcodeModule_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String) - name: CreateBitcodeModule - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBitcodeModule_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Interop.LlvmException - commentId: T:Ubiquity.NET.Llvm.Interop.LlvmException - name: LlvmException - nameWithType: LlvmException - fullName: Ubiquity.NET.Llvm.Interop.LlvmException -- uid: Ubiquity.NET.Llvm.Context.ParseModule* - commentId: Overload:Ubiquity.NET.Llvm.Context.ParseModule - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_ParseModule_Ubiquity_NET_InteropHelpers_LazyEncodedString_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - name: ParseModule - nameWithType: Context.ParseModule - fullName: Ubiquity.NET.Llvm.Context.ParseModule -- uid: Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - commentId: M:Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_ParseModule_Ubiquity_NET_InteropHelpers_LazyEncodedString_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - name: ParseModule(LazyEncodedString, LazyEncodedString) - nameWithType: IContext.ParseModule(LazyEncodedString, LazyEncodedString) - fullName: Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.InteropHelpers.LazyEncodedString) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - name: ParseModule - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_ParseModule_Ubiquity_NET_InteropHelpers_LazyEncodedString_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - - name: ( - - uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - name: LazyEncodedString - - name: ',' - - name: " " - - uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - name: LazyEncodedString - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - name: ParseModule - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_ParseModule_Ubiquity_NET_InteropHelpers_LazyEncodedString_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - - name: ( - - uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - name: LazyEncodedString - - name: ',' - - name: " " - - uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - name: LazyEncodedString - - name: ) -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.Context.GetMDKindId* - commentId: Overload:Ubiquity.NET.Llvm.Context.GetMDKindId - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_GetMDKindId_System_String_ - name: GetMDKindId - nameWithType: Context.GetMDKindId - fullName: Ubiquity.NET.Llvm.Context.GetMDKindId -- uid: Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetMDKindId_System_String_ - name: GetMDKindId(string) - nameWithType: IContext.GetMDKindId(string) - fullName: Ubiquity.NET.Llvm.IContext.GetMDKindId(string) - nameWithType.vb: IContext.GetMDKindId(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.GetMDKindId(String) - name.vb: GetMDKindId(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String) - name: GetMDKindId - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetMDKindId_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String) - name: GetMDKindId - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetMDKindId_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - commentId: T:Ubiquity.NET.Llvm.ObjectFile.TargetBinary - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html - name: TargetBinary - nameWithType: TargetBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary -- uid: System.IO.IOException - commentId: T:System.IO.IOException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.io.ioexception - name: IOException - nameWithType: IOException - fullName: System.IO.IOException -- uid: Ubiquity.NET.Llvm.Context.OpenBinary* - commentId: Overload:Ubiquity.NET.Llvm.Context.OpenBinary - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_OpenBinary_System_String_ - name: OpenBinary - nameWithType: Context.OpenBinary - fullName: Ubiquity.NET.Llvm.Context.OpenBinary -- uid: Ubiquity.NET.Llvm.IContext.OpenBinary(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.OpenBinary(System.String) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_OpenBinary_System_String_ - name: OpenBinary(string) - nameWithType: IContext.OpenBinary(string) - fullName: Ubiquity.NET.Llvm.IContext.OpenBinary(string) - nameWithType.vb: IContext.OpenBinary(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.OpenBinary(String) - name.vb: OpenBinary(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.OpenBinary(System.String) - name: OpenBinary - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_OpenBinary_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.OpenBinary(System.String) - name: OpenBinary - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_OpenBinary_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.html - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html -- uid: Ubiquity.NET.Llvm.Context.VoidType* - commentId: Overload:Ubiquity.NET.Llvm.Context.VoidType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_VoidType - name: VoidType - nameWithType: Context.VoidType - fullName: Ubiquity.NET.Llvm.Context.VoidType -- uid: Ubiquity.NET.Llvm.IContext.VoidType - commentId: P:Ubiquity.NET.Llvm.IContext.VoidType - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_VoidType - name: VoidType - nameWithType: IContext.VoidType - fullName: Ubiquity.NET.Llvm.IContext.VoidType -- uid: Ubiquity.NET.Llvm.Context.BoolType* - commentId: Overload:Ubiquity.NET.Llvm.Context.BoolType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_BoolType - name: BoolType - nameWithType: Context.BoolType - fullName: Ubiquity.NET.Llvm.Context.BoolType -- uid: Ubiquity.NET.Llvm.Context.Int8Type* - commentId: Overload:Ubiquity.NET.Llvm.Context.Int8Type - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Int8Type - name: Int8Type - nameWithType: Context.Int8Type - fullName: Ubiquity.NET.Llvm.Context.Int8Type -- uid: Ubiquity.NET.Llvm.IContext.Int8Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int8Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int8Type - name: Int8Type - nameWithType: IContext.Int8Type - fullName: Ubiquity.NET.Llvm.IContext.Int8Type -- uid: Ubiquity.NET.Llvm.Context.Int16Type* - commentId: Overload:Ubiquity.NET.Llvm.Context.Int16Type - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Int16Type - name: Int16Type - nameWithType: Context.Int16Type - fullName: Ubiquity.NET.Llvm.Context.Int16Type -- uid: Ubiquity.NET.Llvm.Context.Int32Type* - commentId: Overload:Ubiquity.NET.Llvm.Context.Int32Type - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Int32Type - name: Int32Type - nameWithType: Context.Int32Type - fullName: Ubiquity.NET.Llvm.Context.Int32Type -- uid: Ubiquity.NET.Llvm.IContext.Int32Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int32Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int32Type - name: Int32Type - nameWithType: IContext.Int32Type - fullName: Ubiquity.NET.Llvm.IContext.Int32Type -- uid: Ubiquity.NET.Llvm.Context.Int64Type* - commentId: Overload:Ubiquity.NET.Llvm.Context.Int64Type - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Int64Type - name: Int64Type - nameWithType: Context.Int64Type - fullName: Ubiquity.NET.Llvm.Context.Int64Type -- uid: Ubiquity.NET.Llvm.IContext.Int64Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int64Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int64Type - name: Int64Type - nameWithType: IContext.Int64Type - fullName: Ubiquity.NET.Llvm.IContext.Int64Type -- uid: Ubiquity.NET.Llvm.Context.Int128Type* - commentId: Overload:Ubiquity.NET.Llvm.Context.Int128Type - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Int128Type - name: Int128Type - nameWithType: Context.Int128Type - fullName: Ubiquity.NET.Llvm.Context.Int128Type -- uid: Ubiquity.NET.Llvm.IContext.Int128Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int128Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int128Type - name: Int128Type - nameWithType: IContext.Int128Type - fullName: Ubiquity.NET.Llvm.IContext.Int128Type -- uid: Ubiquity.NET.Llvm.Context.HalfFloatType* - commentId: Overload:Ubiquity.NET.Llvm.Context.HalfFloatType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_HalfFloatType - name: HalfFloatType - nameWithType: Context.HalfFloatType - fullName: Ubiquity.NET.Llvm.Context.HalfFloatType -- uid: Ubiquity.NET.Llvm.IContext.HalfFloatType - commentId: P:Ubiquity.NET.Llvm.IContext.HalfFloatType - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_HalfFloatType - name: HalfFloatType - nameWithType: IContext.HalfFloatType - fullName: Ubiquity.NET.Llvm.IContext.HalfFloatType -- uid: Ubiquity.NET.Llvm.Context.FloatType* - commentId: Overload:Ubiquity.NET.Llvm.Context.FloatType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_FloatType - name: FloatType - nameWithType: Context.FloatType - fullName: Ubiquity.NET.Llvm.Context.FloatType -- uid: Ubiquity.NET.Llvm.IContext.FloatType - commentId: P:Ubiquity.NET.Llvm.IContext.FloatType - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_FloatType - name: FloatType - nameWithType: IContext.FloatType - fullName: Ubiquity.NET.Llvm.IContext.FloatType -- uid: Ubiquity.NET.Llvm.Context.DoubleType* - commentId: Overload:Ubiquity.NET.Llvm.Context.DoubleType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_DoubleType - name: DoubleType - nameWithType: Context.DoubleType - fullName: Ubiquity.NET.Llvm.Context.DoubleType -- uid: Ubiquity.NET.Llvm.IContext.DoubleType - commentId: P:Ubiquity.NET.Llvm.IContext.DoubleType - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_DoubleType - name: DoubleType - nameWithType: IContext.DoubleType - fullName: Ubiquity.NET.Llvm.IContext.DoubleType -- uid: Ubiquity.NET.Llvm.Context.TokenType* - commentId: Overload:Ubiquity.NET.Llvm.Context.TokenType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_TokenType - name: TokenType - nameWithType: Context.TokenType - fullName: Ubiquity.NET.Llvm.Context.TokenType -- uid: Ubiquity.NET.Llvm.IContext.TokenType - commentId: P:Ubiquity.NET.Llvm.IContext.TokenType - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_TokenType - name: TokenType - nameWithType: IContext.TokenType - fullName: Ubiquity.NET.Llvm.IContext.TokenType -- uid: Ubiquity.NET.Llvm.Context.MetadataType* - commentId: Overload:Ubiquity.NET.Llvm.Context.MetadataType - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_MetadataType - name: MetadataType - nameWithType: Context.MetadataType - fullName: Ubiquity.NET.Llvm.Context.MetadataType -- uid: Ubiquity.NET.Llvm.IContext.MetadataType - commentId: P:Ubiquity.NET.Llvm.IContext.MetadataType - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_MetadataType - name: MetadataType - nameWithType: IContext.MetadataType - fullName: Ubiquity.NET.Llvm.IContext.MetadataType -- uid: Ubiquity.NET.Llvm.Context.X86Float80Type* - commentId: Overload:Ubiquity.NET.Llvm.Context.X86Float80Type - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_X86Float80Type - name: X86Float80Type - nameWithType: Context.X86Float80Type - fullName: Ubiquity.NET.Llvm.Context.X86Float80Type -- uid: Ubiquity.NET.Llvm.IContext.X86Float80Type - commentId: P:Ubiquity.NET.Llvm.IContext.X86Float80Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_X86Float80Type - name: X86Float80Type - nameWithType: IContext.X86Float80Type - fullName: Ubiquity.NET.Llvm.IContext.X86Float80Type -- uid: Ubiquity.NET.Llvm.Context.Float128Type* - commentId: Overload:Ubiquity.NET.Llvm.Context.Float128Type - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Float128Type - name: Float128Type - nameWithType: Context.Float128Type - fullName: Ubiquity.NET.Llvm.Context.Float128Type -- uid: Ubiquity.NET.Llvm.IContext.Float128Type - commentId: P:Ubiquity.NET.Llvm.IContext.Float128Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Float128Type - name: Float128Type - nameWithType: IContext.Float128Type - fullName: Ubiquity.NET.Llvm.IContext.Float128Type -- uid: Ubiquity.NET.Llvm.Context.PpcFloat128Type* - commentId: Overload:Ubiquity.NET.Llvm.Context.PpcFloat128Type - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_PpcFloat128Type - name: PpcFloat128Type - nameWithType: Context.PpcFloat128Type - fullName: Ubiquity.NET.Llvm.Context.PpcFloat128Type -- uid: Ubiquity.NET.Llvm.IContext.PpcFloat128Type - commentId: P:Ubiquity.NET.Llvm.IContext.PpcFloat128Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_PpcFloat128Type - name: PpcFloat128Type - nameWithType: IContext.PpcFloat128Type - fullName: Ubiquity.NET.Llvm.IContext.PpcFloat128Type -- uid: Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes* - commentId: Overload:Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_OdrUniqueDebugTypes - name: OdrUniqueDebugTypes - nameWithType: Context.OdrUniqueDebugTypes - fullName: Ubiquity.NET.Llvm.Context.OdrUniqueDebugTypes -- uid: Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes - commentId: P:Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_OdrUniqueDebugTypes - name: OdrUniqueDebugTypes - nameWithType: IContext.OdrUniqueDebugTypes - fullName: Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes -- uid: Ubiquity.NET.Llvm.Context.DiscardValueName* - commentId: Overload:Ubiquity.NET.Llvm.Context.DiscardValueName - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_DiscardValueName - name: DiscardValueName - nameWithType: Context.DiscardValueName - fullName: Ubiquity.NET.Llvm.Context.DiscardValueName -- uid: Ubiquity.NET.Llvm.IContext.DiscardValueName - commentId: P:Ubiquity.NET.Llvm.IContext.DiscardValueName - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_DiscardValueName - name: DiscardValueName - nameWithType: IContext.DiscardValueName - fullName: Ubiquity.NET.Llvm.IContext.DiscardValueName -- uid: Ubiquity.NET.Llvm.Context.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.Context.IsDisposed - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_IsDisposed - name: IsDisposed - nameWithType: Context.IsDisposed - fullName: Ubiquity.NET.Llvm.Context.IsDisposed -- uid: Ubiquity.NET.Llvm.Context.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.Context.Dispose - href: Ubiquity.NET.Llvm.Context.html#Ubiquity_NET_Llvm_Context_Dispose - name: Dispose - nameWithType: Context.Dispose - fullName: Ubiquity.NET.Llvm.Context.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DataLayout.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DataLayout.yml deleted file mode 100644 index 6b61db5f26..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DataLayout.yml +++ /dev/null @@ -1,2822 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DataLayout - commentId: T:Ubiquity.NET.Llvm.DataLayout - id: DataLayout - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - - Ubiquity.NET.Llvm.DataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.Dispose - - Ubiquity.NET.Llvm.DataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - - Ubiquity.NET.Llvm.DataLayout.Endianness - - Ubiquity.NET.Llvm.DataLayout.Equals(System.Object) - - Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.DataLayout) - - Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.IDataLayout) - - Ubiquity.NET.Llvm.DataLayout.GetHashCode - - Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - - Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - - Ubiquity.NET.Llvm.DataLayout.IsDisposed - - Ubiquity.NET.Llvm.DataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - - Ubiquity.NET.Llvm.DataLayout.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - - Ubiquity.NET.Llvm.DataLayout.PointerSize - - Ubiquity.NET.Llvm.DataLayout.PointerSize(System.UInt32) - - Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString - - Ubiquity.NET.Llvm.DataLayout.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - langs: - - csharp - - vb - name: DataLayout - nameWithType: DataLayout - fullName: Ubiquity.NET.Llvm.DataLayout - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DataLayout - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Owning implementation of - example: [] - syntax: - content: 'public sealed class DataLayout : IDataLayout, IDisposable, IEquatable, IEquatable, IUtf8SpanParsable' - content.vb: Public NotInheritable Class DataLayout Implements IDataLayout, IDisposable, IEquatable(Of DataLayout), IEquatable(Of IDataLayout), IUtf8SpanParsable(Of DataLayout) - inheritance: - - System.Object - implements: - - Ubiquity.NET.Llvm.IDataLayout - - System.IDisposable - - System.IEquatable{Ubiquity.NET.Llvm.DataLayout} - - System.IEquatable{Ubiquity.NET.Llvm.IDataLayout} - - System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout} - inheritedMembers: - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.IDataLayout) - commentId: M:Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.IDataLayout) - id: Equals(Ubiquity.NET.Llvm.IDataLayout) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: Equals(IDataLayout?) - nameWithType: DataLayout.Equals(IDataLayout?) - fullName: Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.IDataLayout?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(IDataLayout? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.IDataLayout - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As IDataLayout) As Boolean - overload: Ubiquity.NET.Llvm.DataLayout.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.IDataLayout}.Equals(Ubiquity.NET.Llvm.IDataLayout) - nameWithType.vb: DataLayout.Equals(IDataLayout) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.IDataLayout) - name.vb: Equals(IDataLayout) -- uid: Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.DataLayout) - commentId: M:Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.DataLayout) - id: Equals(Ubiquity.NET.Llvm.DataLayout) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: Equals(DataLayout?) - nameWithType: DataLayout.Equals(DataLayout?) - fullName: Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.DataLayout?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(DataLayout? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.DataLayout - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As DataLayout) As Boolean - overload: Ubiquity.NET.Llvm.DataLayout.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.DataLayout}.Equals(Ubiquity.NET.Llvm.DataLayout) - nameWithType.vb: DataLayout.Equals(DataLayout) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.Equals(Ubiquity.NET.Llvm.DataLayout) - name.vb: Equals(DataLayout) -- uid: Ubiquity.NET.Llvm.DataLayout.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.DataLayout.Equals(System.Object) - id: Equals(System.Object) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: DataLayout.Equals(object?) - fullName: Ubiquity.NET.Llvm.DataLayout.Equals(object?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Determines whether the specified object is equal to the current object. - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: The object to compare with the current object. - return: - type: System.Boolean - description: true if the specified object is equal to the current object; otherwise, false. - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.Object.Equals(System.Object) - overload: Ubiquity.NET.Llvm.DataLayout.Equals* - nameWithType.vb: DataLayout.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.Equals(Object) - name.vb: Equals(Object) -- uid: Ubiquity.NET.Llvm.DataLayout.GetHashCode - commentId: M:Ubiquity.NET.Llvm.DataLayout.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: DataLayout.GetHashCode() - fullName: Ubiquity.NET.Llvm.DataLayout.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Serves as the default hash function. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A hash code for the current object. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.Object.GetHashCode - overload: Ubiquity.NET.Llvm.DataLayout.GetHashCode* -- uid: Ubiquity.NET.Llvm.DataLayout.PointerSize - commentId: M:Ubiquity.NET.Llvm.DataLayout.PointerSize - id: PointerSize - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: PointerSize() - nameWithType: DataLayout.PointerSize() - fullName: Ubiquity.NET.Llvm.DataLayout.PointerSize() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerSize - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the size of a pointer for the default address space of the target - example: [] - syntax: - content: public uint PointerSize() - return: - type: System.UInt32 - description: Size of a pointer to the default address space - content.vb: Public Function PointerSize() As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.PointerSize* - implements: - - Ubiquity.NET.Llvm.IDataLayout.PointerSize -- uid: Ubiquity.NET.Llvm.DataLayout.PointerSize(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DataLayout.PointerSize(System.UInt32) - id: PointerSize(System.UInt32) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: PointerSize(uint) - nameWithType: DataLayout.PointerSize(uint) - fullName: Ubiquity.NET.Llvm.DataLayout.PointerSize(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerSize - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the size of a pointer for a given address space of the target - example: [] - syntax: - content: public uint PointerSize(uint addressSpace) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: System.UInt32 - description: Size of a pointer - content.vb: Public Function PointerSize(addressSpace As UInteger) As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.PointerSize* - implements: - - Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32) - nameWithType.vb: DataLayout.PointerSize(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.PointerSize(UInteger) - name.vb: PointerSize(UInteger) -- uid: Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - id: IntPtrType(Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: IntPtrType(IContext) - nameWithType: DataLayout.IntPtrType(IContext) - fullName: Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntPtrType - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves an LLVM integer type with the same bit width as a pointer for the default address space of the target - example: [] - syntax: - content: public ITypeRef IntPtrType(IContext context) - parameters: - - id: context - type: Ubiquity.NET.Llvm.IContext - description: LLVM that owns the definition of the pointer type to retrieve - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer type matching the bit width of a native pointer in the target's default address space - content.vb: Public Function IntPtrType(context As IContext) As ITypeRef - overload: Ubiquity.NET.Llvm.DataLayout.IntPtrType* - implements: - - Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) -- uid: Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - id: IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: IntPtrType(IContext, uint) - nameWithType: DataLayout.IntPtrType(IContext, uint) - fullName: Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntPtrType - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: >- - Retrieves an LLVM integer type with the same bit width as - a pointer for the given address space of the target - example: [] - syntax: - content: public ITypeRef IntPtrType(IContext context, uint addressSpace) - parameters: - - id: context - type: Ubiquity.NET.Llvm.IContext - description: LLVM that owns the definition of the pointer type to retrieve - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer type matching the bit width of a native pointer in the target's address space - content.vb: Public Function IntPtrType(context As IContext, addressSpace As UInteger) As ITypeRef - overload: Ubiquity.NET.Llvm.DataLayout.IntPtrType* - implements: - - Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - nameWithType.vb: DataLayout.IntPtrType(IContext, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext, UInteger) - name.vb: IntPtrType(IContext, UInteger) -- uid: Ubiquity.NET.Llvm.DataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: BitSizeOf(ITypeRef) - nameWithType: DataLayout.BitSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitSizeOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Returns the number of bits necessary to hold the specified type. - remarks: >- -

This method determines the bit size of a type (e.g. the minimum number of - - bits required to represent any value of the given type.) This is distinct from the storage - - and stack size due to various target alignment requirements.

- example: [] - syntax: - content: public ulong BitSizeOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to retrieve the size of - return: - type: System.UInt64 - description: Size of the type in bits - content.vb: Public Function BitSizeOf(typeRef As ITypeRef) As ULong - overload: Ubiquity.NET.Llvm.DataLayout.BitSizeOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: StoreSizeOf(ITypeRef) - nameWithType: DataLayout.StoreSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StoreSizeOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the number of bits required to store a value of the given type - remarks: >- - This method retrieves the storage size in bits of a given type. The storage size - includes any trailing padding bits that may be needed if the target requires reading a wider - word size. (e.g. most systems can't write a single bit value for an LLVM i1, thus the - storage size is whatever the minimum number of bits that the target requires to store a value - of the given type) - example: [] - syntax: - content: public ulong StoreSizeOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to retrieve the storage size of - return: - type: System.UInt64 - description: Number of bits required to store a value of the given type in the target - content.vb: Public Function StoreSizeOf(typeRef As ITypeRef) As ULong - overload: Ubiquity.NET.Llvm.DataLayout.StoreSizeOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: AbiSizeOf(ITypeRef) - nameWithType: DataLayout.AbiSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AbiSizeOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the ABI specified size of the given type - remarks: >- - Returns the offset in bytes between successive objects of the - - specified type, including alignment padding - example: [] - syntax: - content: public ulong AbiSizeOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the size from - return: - type: System.UInt64 - description: Size of the type - content.vb: Public Function AbiSizeOf(typeRef As ITypeRef) As ULong - overload: Ubiquity.NET.Llvm.DataLayout.AbiSizeOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: AbiAlignmentOf(ITypeRef) - nameWithType: DataLayout.AbiAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AbiAlignmentOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the ABI specified alignment, in bytes, for a specified type - example: [] - syntax: - content: public uint AbiAlignmentOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the alignment for - return: - type: System.UInt32 - description: ABI specified alignment - content.vb: Public Function AbiAlignmentOf(typeRef As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: CallFrameAlignmentOf(ITypeRef) - nameWithType: DataLayout.CallFrameAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallFrameAlignmentOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the call frame alignment for a given type - example: [] - syntax: - content: public uint CallFrameAlignmentOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: type to get the alignment of - return: - type: System.UInt32 - description: Alignment for the type - content.vb: Public Function CallFrameAlignmentOf(typeRef As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: PreferredAlignmentOf(ITypeRef) - nameWithType: DataLayout.PreferredAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreferredAlignmentOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the preferred alignment for an LLVM type - example: [] - syntax: - content: public uint PreferredAlignmentOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the alignment of - return: - type: System.UInt32 - description: Preferred alignment - content.vb: Public Function PreferredAlignmentOf(typeRef As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - id: PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: PreferredAlignmentOf(Value) - nameWithType: DataLayout.PreferredAlignmentOf(Value) - fullName: Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreferredAlignmentOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the preferred alignment for a - example: [] - syntax: - content: public uint PreferredAlignmentOf(Value value) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: Value to get the alignment of - return: - type: System.UInt32 - description: Preferred alignment - content.vb: Public Function PreferredAlignmentOf(value As Value) As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) -- uid: Ubiquity.NET.Llvm.DataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - commentId: M:Ubiquity.NET.Llvm.DataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - id: ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: ElementAtOffset(IStructType, ulong) - nameWithType: DataLayout.ElementAtOffset(IStructType, ulong) - fullName: Ubiquity.NET.Llvm.DataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType, ulong) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ElementAtOffset - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the element index for a specific offset in a given structure - example: [] - syntax: - content: public uint ElementAtOffset(IStructType structType, ulong offset) - parameters: - - id: structType - type: Ubiquity.NET.Llvm.Types.IStructType - description: Type of the structure - - id: offset - type: System.UInt64 - description: Offset to determine the index of - return: - type: System.UInt32 - description: Index of the element - content.vb: Public Function ElementAtOffset(structType As IStructType, offset As ULong) As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.ElementAtOffset* - implements: - - Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - nameWithType.vb: DataLayout.ElementAtOffset(IStructType, ULong) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType, ULong) - name.vb: ElementAtOffset(IStructType, ULong) -- uid: Ubiquity.NET.Llvm.DataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - id: OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: OffsetOfElement(IStructType, uint) - nameWithType: DataLayout.OffsetOfElement(IStructType, uint) - fullName: Ubiquity.NET.Llvm.DataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OffsetOfElement - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the offset of an element in a structure - example: [] - syntax: - content: public ulong OffsetOfElement(IStructType structType, uint element) - parameters: - - id: structType - type: Ubiquity.NET.Llvm.Types.IStructType - description: Type of the structure - - id: element - type: System.UInt32 - description: index of the element in the structure - return: - type: System.UInt64 - description: Offset of the element from the beginning of the structure - content.vb: Public Function OffsetOfElement(structType As IStructType, element As UInteger) As ULong - overload: Ubiquity.NET.Llvm.DataLayout.OffsetOfElement* - implements: - - Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - nameWithType.vb: DataLayout.OffsetOfElement(IStructType, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, UInteger) - name.vb: OffsetOfElement(IStructType, UInteger) -- uid: Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString - commentId: M:Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString - id: ToLazyEncodedString - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: ToLazyEncodedString() - nameWithType: DataLayout.ToLazyEncodedString() - fullName: Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToLazyEncodedString - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the string representation of this data layout as a - remarks: >- - The returned retains a copy of the native code form of the string. - - This value is ONLY marshalled to a managed string when needed (and only once, it is cached). This - - behavior allows for lower overhead re-use of this string in additional APIs as NO marshalling - - needs to occur. This does have the overhead of making a copy of the strings contents as the - - lifetime of the underlying native string is generally unknown and thus not reliable. - example: [] - syntax: - content: public LazyEncodedString ToLazyEncodedString() - return: - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Representation of the data layout - content.vb: Public Function ToLazyEncodedString() As LazyEncodedString - overload: Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString* - implements: - - Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString -- uid: Ubiquity.NET.Llvm.DataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: ByteSizeOf(ITypeRef) - nameWithType: DataLayout.ByteSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ByteSizeOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the byte size of a type - example: [] - syntax: - content: public ulong ByteSizeOf(ITypeRef llvmType) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to determine the size of - return: - type: System.UInt64 - description: Size of the type in bytes - content.vb: Public Function ByteSizeOf(llvmType As ITypeRef) As ULong - overload: Ubiquity.NET.Llvm.DataLayout.ByteSizeOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: PreferredBitAlignmentOf(ITypeRef) - nameWithType: DataLayout.PreferredBitAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreferredBitAlignmentOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the preferred alignment of the type in bits - example: [] - syntax: - content: public uint PreferredBitAlignmentOf(ITypeRef llvmType) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the alignment of - return: - type: System.UInt32 - description: Alignment of the type - content.vb: Public Function PreferredBitAlignmentOf(llvmType As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: AbiBitAlignmentOf(ITypeRef) - nameWithType: DataLayout.AbiBitAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AbiBitAlignmentOf - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the ABI alignment of the type in bits - example: [] - syntax: - content: public uint AbiBitAlignmentOf(ITypeRef llvmType) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the alignment of - return: - type: System.UInt32 - description: Alignment of the type - content.vb: Public Function AbiBitAlignmentOf(llvmType As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf* - implements: - - Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - id: BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: BitOffsetOfElement(IStructType, uint) - nameWithType: DataLayout.BitOffsetOfElement(IStructType, uint) - fullName: Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitOffsetOfElement - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the offset of a structure element in bits - example: [] - syntax: - content: public ulong BitOffsetOfElement(IStructType llvmType, uint element) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.IStructType - description: Structure type to get the element offset of - - id: element - type: System.UInt32 - description: Index of the element in the structure - return: - type: System.UInt64 - description: Offset of the element in bits - content.vb: Public Function BitOffsetOfElement(llvmType As IStructType, element As UInteger) As ULong - overload: Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement* - implements: - - Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - nameWithType.vb: DataLayout.BitOffsetOfElement(IStructType, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, UInteger) - name.vb: BitOffsetOfElement(IStructType, UInteger) -- uid: Ubiquity.NET.Llvm.DataLayout.Endianness - commentId: P:Ubiquity.NET.Llvm.DataLayout.Endianness - id: Endianness - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: Endianness - nameWithType: DataLayout.Endianness - fullName: Ubiquity.NET.Llvm.DataLayout.Endianness - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Endianness - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 97 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the byte ordering for this target - example: [] - syntax: - content: public ByteOrdering Endianness { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ByteOrdering - content.vb: Public ReadOnly Property Endianness As ByteOrdering - overload: Ubiquity.NET.Llvm.DataLayout.Endianness* - implements: - - Ubiquity.NET.Llvm.IDataLayout.Endianness -- uid: Ubiquity.NET.Llvm.DataLayout.IsDisposed - commentId: P:Ubiquity.NET.Llvm.DataLayout.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: IsDisposed - nameWithType: DataLayout.IsDisposed - fullName: Ubiquity.NET.Llvm.DataLayout.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 101 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this instance is already disposed - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.DataLayout.IsDisposed* -- uid: Ubiquity.NET.Llvm.DataLayout.Dispose - commentId: M:Ubiquity.NET.Llvm.DataLayout.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: Dispose() - nameWithType: DataLayout.Dispose() - fullName: Ubiquity.NET.Llvm.DataLayout.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.DataLayout.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.DataLayout.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - commentId: M:Ubiquity.NET.Llvm.DataLayout.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - id: Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: Parse(ReadOnlySpan, IFormatProvider?) - nameWithType: DataLayout.Parse(ReadOnlySpan, IFormatProvider?) - fullName: Ubiquity.NET.Llvm.DataLayout.Parse(System.ReadOnlySpan, System.IFormatProvider?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Parse - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 110 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Parses a span of UTF-8 characters into a value. - example: [] - syntax: - content: public static DataLayout Parse(ReadOnlySpan utf8Text, IFormatProvider? provider) - parameters: - - id: utf8Text - type: System.ReadOnlySpan{System.Byte} - description: The span of UTF-8 characters to parse. - - id: provider - type: System.IFormatProvider - description: An object that provides culture-specific formatting information about utf8Text. - return: - type: Ubiquity.NET.Llvm.DataLayout - description: The result of parsing utf8Text. - content.vb: Public Shared Function Parse(utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider) As DataLayout - overload: Ubiquity.NET.Llvm.DataLayout.Parse* - exceptions: - - type: System.FormatException - commentId: T:System.FormatException - description: utf8Text is not in the correct format. - - type: System.OverflowException - commentId: T:System.OverflowException - description: utf8Text is not representable by . - implements: - - System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - nameWithType.vb: DataLayout.Parse(ReadOnlySpan(Of Byte), IFormatProvider) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.Parse(System.ReadOnlySpan(Of Byte), System.IFormatProvider) - name.vb: Parse(ReadOnlySpan(Of Byte), IFormatProvider) -- uid: Ubiquity.NET.Llvm.DataLayout.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - commentId: M:Ubiquity.NET.Llvm.DataLayout.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - id: TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - parent: Ubiquity.NET.Llvm.DataLayout - langs: - - csharp - - vb - name: TryParse(ReadOnlySpan, IFormatProvider?, out DataLayout) - nameWithType: DataLayout.TryParse(ReadOnlySpan, IFormatProvider?, out DataLayout) - fullName: Ubiquity.NET.Llvm.DataLayout.TryParse(System.ReadOnlySpan, System.IFormatProvider?, out Ubiquity.NET.Llvm.DataLayout) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryParse - path: ../src/Ubiquity.NET.Llvm/DataLayout.cs - startLine: 125 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Tries to parse a span of UTF-8 characters into a value. - example: [] - syntax: - content: public static bool TryParse(ReadOnlySpan utf8Text, IFormatProvider? provider, out DataLayout result) - parameters: - - id: utf8Text - type: System.ReadOnlySpan{System.Byte} - description: The span of UTF-8 characters to parse. - - id: provider - type: System.IFormatProvider - description: An object that provides culture-specific formatting information about utf8Text. - - id: result - type: Ubiquity.NET.Llvm.DataLayout - description: On return, contains the result of successfully parsing utf8Text or an undefined value on failure. - return: - type: System.Boolean - description: true if utf8Text was successfully parsed; otherwise, false. - content.vb: Public Shared Function TryParse(utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider, result As DataLayout) As Boolean - overload: Ubiquity.NET.Llvm.DataLayout.TryParse* - implements: - - System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - nameWithType.vb: DataLayout.TryParse(ReadOnlySpan(Of Byte), IFormatProvider, DataLayout) - fullName.vb: Ubiquity.NET.Llvm.DataLayout.TryParse(System.ReadOnlySpan(Of Byte), System.IFormatProvider, Ubiquity.NET.Llvm.DataLayout) - name.vb: TryParse(ReadOnlySpan(Of Byte), IFormatProvider, DataLayout) -references: -- uid: Ubiquity.NET.Llvm.IDataLayout - commentId: T:Ubiquity.NET.Llvm.IDataLayout - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IDataLayout.html - name: IDataLayout - nameWithType: IDataLayout - fullName: Ubiquity.NET.Llvm.IDataLayout -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.IEquatable{Ubiquity.NET.Llvm.DataLayout} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.DataLayout} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of DataLayout) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.DataLayout) - name.vb: IEquatable(Of DataLayout) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - href: Ubiquity.NET.Llvm.DataLayout.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - href: Ubiquity.NET.Llvm.DataLayout.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.IDataLayout} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.IDataLayout} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IDataLayout) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.IDataLayout) - name.vb: IEquatable(Of IDataLayout) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.IDataLayout - name: IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.IDataLayout - name: IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html - - name: ) -- uid: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout} - commentId: T:System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout} - parent: System - definition: System.IUtf8SpanParsable`1 - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1 - name: IUtf8SpanParsable - nameWithType: IUtf8SpanParsable - fullName: System.IUtf8SpanParsable - nameWithType.vb: IUtf8SpanParsable(Of DataLayout) - fullName.vb: System.IUtf8SpanParsable(Of Ubiquity.NET.Llvm.DataLayout) - name.vb: IUtf8SpanParsable(Of DataLayout) - spec.csharp: - - uid: System.IUtf8SpanParsable`1 - name: IUtf8SpanParsable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - href: Ubiquity.NET.Llvm.DataLayout.html - - name: '>' - spec.vb: - - uid: System.IUtf8SpanParsable`1 - name: IUtf8SpanParsable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - href: Ubiquity.NET.Llvm.DataLayout.html - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.IUtf8SpanParsable`1 - commentId: T:System.IUtf8SpanParsable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1 - name: IUtf8SpanParsable - nameWithType: IUtf8SpanParsable - fullName: System.IUtf8SpanParsable - nameWithType.vb: IUtf8SpanParsable(Of TSelf) - fullName.vb: System.IUtf8SpanParsable(Of TSelf) - name.vb: IUtf8SpanParsable(Of TSelf) - spec.csharp: - - uid: System.IUtf8SpanParsable`1 - name: IUtf8SpanParsable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1 - - name: < - - name: TSelf - - name: '>' - spec.vb: - - uid: System.IUtf8SpanParsable`1 - name: IUtf8SpanParsable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1 - - name: ( - - name: Of - - name: " " - - name: TSelf - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.Equals* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.Equals - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_Equals_Ubiquity_NET_Llvm_IDataLayout_ - name: Equals - nameWithType: DataLayout.Equals - fullName: Ubiquity.NET.Llvm.DataLayout.Equals -- uid: System.IEquatable{Ubiquity.NET.Llvm.IDataLayout}.Equals(Ubiquity.NET.Llvm.IDataLayout) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.IDataLayout}.Equals(Ubiquity.NET.Llvm.IDataLayout) - parent: System.IEquatable{Ubiquity.NET.Llvm.IDataLayout} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(IDataLayout) - nameWithType: IEquatable.Equals(IDataLayout) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.IDataLayout) - nameWithType.vb: IEquatable(Of IDataLayout).Equals(IDataLayout) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.IDataLayout).Equals(Ubiquity.NET.Llvm.IDataLayout) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.IDataLayout}.Equals(Ubiquity.NET.Llvm.IDataLayout) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.IDataLayout - name: IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.IDataLayout}.Equals(Ubiquity.NET.Llvm.IDataLayout) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.IDataLayout - name: IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.DataLayout}.Equals(Ubiquity.NET.Llvm.DataLayout) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.DataLayout}.Equals(Ubiquity.NET.Llvm.DataLayout) - parent: System.IEquatable{Ubiquity.NET.Llvm.DataLayout} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(DataLayout) - nameWithType: IEquatable.Equals(DataLayout) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.DataLayout) - nameWithType.vb: IEquatable(Of DataLayout).Equals(DataLayout) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.DataLayout).Equals(Ubiquity.NET.Llvm.DataLayout) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.DataLayout}.Equals(Ubiquity.NET.Llvm.DataLayout) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - href: Ubiquity.NET.Llvm.DataLayout.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.DataLayout}.Equals(Ubiquity.NET.Llvm.DataLayout) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - href: Ubiquity.NET.Llvm.DataLayout.html - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout - commentId: T:Ubiquity.NET.Llvm.DataLayout - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DataLayout.html - name: DataLayout - nameWithType: DataLayout - fullName: Ubiquity.NET.Llvm.DataLayout -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.GetHashCode - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_GetHashCode - name: GetHashCode - nameWithType: DataLayout.GetHashCode - fullName: Ubiquity.NET.Llvm.DataLayout.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.DataLayout.PointerSize* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.PointerSize - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_PointerSize - name: PointerSize - nameWithType: DataLayout.PointerSize - fullName: Ubiquity.NET.Llvm.DataLayout.PointerSize -- uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PointerSize - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PointerSize - name: PointerSize() - nameWithType: IDataLayout.PointerSize() - fullName: Ubiquity.NET.Llvm.IDataLayout.PointerSize() - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize - name: PointerSize - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PointerSize - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize - name: PointerSize - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PointerSize - - name: ( - - name: ) -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32) - parent: Ubiquity.NET.Llvm.IDataLayout - isExternal: true - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PointerSize_System_UInt32_ - name: PointerSize(uint) - nameWithType: IDataLayout.PointerSize(uint) - fullName: Ubiquity.NET.Llvm.IDataLayout.PointerSize(uint) - nameWithType.vb: IDataLayout.PointerSize(UInteger) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.PointerSize(UInteger) - name.vb: PointerSize(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32) - name: PointerSize - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PointerSize_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32) - name: PointerSize - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PointerSize_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm.DataLayout.IntPtrType* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.IntPtrType - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_IntPtrType_Ubiquity_NET_Llvm_IContext_ - name: IntPtrType - nameWithType: DataLayout.IntPtrType - fullName: Ubiquity.NET.Llvm.DataLayout.IntPtrType -- uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_IntPtrType_Ubiquity_NET_Llvm_IContext_ - name: IntPtrType(IContext) - nameWithType: IDataLayout.IntPtrType(IContext) - fullName: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - name: IntPtrType - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_IntPtrType_Ubiquity_NET_Llvm_IContext_ - - name: ( - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - name: IntPtrType - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_IntPtrType_Ubiquity_NET_Llvm_IContext_ - - name: ( - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - parent: Ubiquity.NET.Llvm.IDataLayout - isExternal: true - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_IntPtrType_Ubiquity_NET_Llvm_IContext_System_UInt32_ - name: IntPtrType(IContext, uint) - nameWithType: IDataLayout.IntPtrType(IContext, uint) - fullName: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext, uint) - nameWithType.vb: IDataLayout.IntPtrType(IContext, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext, UInteger) - name.vb: IntPtrType(IContext, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - name: IntPtrType - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_IntPtrType_Ubiquity_NET_Llvm_IContext_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - name: IntPtrType - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_IntPtrType_Ubiquity_NET_Llvm_IContext_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.BitSizeOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.BitSizeOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_BitSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: BitSizeOf - nameWithType: DataLayout.BitSizeOf - fullName: Ubiquity.NET.Llvm.DataLayout.BitSizeOf -- uid: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_BitSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: BitSizeOf(ITypeRef) - nameWithType: IDataLayout.BitSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: BitSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_BitSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: BitSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_BitSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.DataLayout.StoreSizeOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.StoreSizeOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_StoreSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: StoreSizeOf - nameWithType: DataLayout.StoreSizeOf - fullName: Ubiquity.NET.Llvm.DataLayout.StoreSizeOf -- uid: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_StoreSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: StoreSizeOf(ITypeRef) - nameWithType: IDataLayout.StoreSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: StoreSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_StoreSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: StoreSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_StoreSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.AbiSizeOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.AbiSizeOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_AbiSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiSizeOf - nameWithType: DataLayout.AbiSizeOf - fullName: Ubiquity.NET.Llvm.DataLayout.AbiSizeOf -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiSizeOf(ITypeRef) - nameWithType: IDataLayout.AbiSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AbiSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AbiSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_AbiAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiAlignmentOf - nameWithType: DataLayout.AbiAlignmentOf - fullName: Ubiquity.NET.Llvm.DataLayout.AbiAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiAlignmentOf(ITypeRef) - nameWithType: IDataLayout.AbiAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AbiAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AbiAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_CallFrameAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: CallFrameAlignmentOf - nameWithType: DataLayout.CallFrameAlignmentOf - fullName: Ubiquity.NET.Llvm.DataLayout.CallFrameAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_CallFrameAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: CallFrameAlignmentOf(ITypeRef) - nameWithType: IDataLayout.CallFrameAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: CallFrameAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_CallFrameAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: CallFrameAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_CallFrameAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_PreferredAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: PreferredAlignmentOf - nameWithType: DataLayout.PreferredAlignmentOf - fullName: Ubiquity.NET.Llvm.DataLayout.PreferredAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: PreferredAlignmentOf(ITypeRef) - nameWithType: IDataLayout.PreferredAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: PreferredAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: PreferredAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredAlignmentOf_Ubiquity_NET_Llvm_Values_Value_ - name: PreferredAlignmentOf(Value) - nameWithType: IDataLayout.PreferredAlignmentOf(Value) - fullName: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - name: PreferredAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredAlignmentOf_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - name: PreferredAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredAlignmentOf_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.DataLayout.ElementAtOffset* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.ElementAtOffset - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_ElementAtOffset_Ubiquity_NET_Llvm_Types_IStructType_System_UInt64_ - name: ElementAtOffset - nameWithType: DataLayout.ElementAtOffset - fullName: Ubiquity.NET.Llvm.DataLayout.ElementAtOffset -- uid: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - parent: Ubiquity.NET.Llvm.IDataLayout - isExternal: true - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ElementAtOffset_Ubiquity_NET_Llvm_Types_IStructType_System_UInt64_ - name: ElementAtOffset(IStructType, ulong) - nameWithType: IDataLayout.ElementAtOffset(IStructType, ulong) - fullName: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType, ulong) - nameWithType.vb: IDataLayout.ElementAtOffset(IStructType, ULong) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType, ULong) - name.vb: ElementAtOffset(IStructType, ULong) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - name: ElementAtOffset - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ElementAtOffset_Ubiquity_NET_Llvm_Types_IStructType_System_UInt64_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - name: ElementAtOffset - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ElementAtOffset_Ubiquity_NET_Llvm_Types_IStructType_System_UInt64_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IStructType.html - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType -- uid: Ubiquity.NET.Llvm.DataLayout.OffsetOfElement* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.OffsetOfElement - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_OffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - name: OffsetOfElement - nameWithType: DataLayout.OffsetOfElement - fullName: Ubiquity.NET.Llvm.DataLayout.OffsetOfElement -- uid: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - parent: Ubiquity.NET.Llvm.IDataLayout - isExternal: true - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_OffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - name: OffsetOfElement(IStructType, uint) - nameWithType: IDataLayout.OffsetOfElement(IStructType, uint) - fullName: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, uint) - nameWithType.vb: IDataLayout.OffsetOfElement(IStructType, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, UInteger) - name.vb: OffsetOfElement(IStructType, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - name: OffsetOfElement - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_OffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - name: OffsetOfElement - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_OffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_ToLazyEncodedString - name: ToLazyEncodedString - nameWithType: DataLayout.ToLazyEncodedString - fullName: Ubiquity.NET.Llvm.DataLayout.ToLazyEncodedString -- uid: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString - commentId: M:Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ToLazyEncodedString - name: ToLazyEncodedString() - nameWithType: IDataLayout.ToLazyEncodedString() - fullName: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString - name: ToLazyEncodedString - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ToLazyEncodedString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString - name: ToLazyEncodedString - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ToLazyEncodedString - - name: ( - - name: ) -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.DataLayout.ByteSizeOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.ByteSizeOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_ByteSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ByteSizeOf - nameWithType: DataLayout.ByteSizeOf - fullName: Ubiquity.NET.Llvm.DataLayout.ByteSizeOf -- uid: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ByteSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ByteSizeOf(ITypeRef) - nameWithType: IDataLayout.ByteSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ByteSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ByteSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ByteSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ByteSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_PreferredBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: PreferredBitAlignmentOf - nameWithType: DataLayout.PreferredBitAlignmentOf - fullName: Ubiquity.NET.Llvm.DataLayout.PreferredBitAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: PreferredBitAlignmentOf(ITypeRef) - nameWithType: IDataLayout.PreferredBitAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: PreferredBitAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: PreferredBitAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_AbiBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiBitAlignmentOf - nameWithType: DataLayout.AbiBitAlignmentOf - fullName: Ubiquity.NET.Llvm.DataLayout.AbiBitAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiBitAlignmentOf(ITypeRef) - nameWithType: IDataLayout.AbiBitAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AbiBitAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AbiBitAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_BitOffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - name: BitOffsetOfElement - nameWithType: DataLayout.BitOffsetOfElement - fullName: Ubiquity.NET.Llvm.DataLayout.BitOffsetOfElement -- uid: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - parent: Ubiquity.NET.Llvm.IDataLayout - isExternal: true - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_BitOffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - name: BitOffsetOfElement(IStructType, uint) - nameWithType: IDataLayout.BitOffsetOfElement(IStructType, uint) - fullName: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, uint) - nameWithType.vb: IDataLayout.BitOffsetOfElement(IStructType, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, UInteger) - name.vb: BitOffsetOfElement(IStructType, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - name: BitOffsetOfElement - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_BitOffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - name: BitOffsetOfElement - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_BitOffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.Endianness* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.Endianness - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_Endianness - name: Endianness - nameWithType: DataLayout.Endianness - fullName: Ubiquity.NET.Llvm.DataLayout.Endianness -- uid: Ubiquity.NET.Llvm.IDataLayout.Endianness - commentId: P:Ubiquity.NET.Llvm.IDataLayout.Endianness - parent: Ubiquity.NET.Llvm.IDataLayout - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_Endianness - name: Endianness - nameWithType: IDataLayout.Endianness - fullName: Ubiquity.NET.Llvm.IDataLayout.Endianness -- uid: Ubiquity.NET.Llvm.ByteOrdering - commentId: T:Ubiquity.NET.Llvm.ByteOrdering - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ByteOrdering.html - name: ByteOrdering - nameWithType: ByteOrdering - fullName: Ubiquity.NET.Llvm.ByteOrdering -- uid: Ubiquity.NET.Llvm.DataLayout.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.IsDisposed - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_IsDisposed - name: IsDisposed - nameWithType: DataLayout.IsDisposed - fullName: Ubiquity.NET.Llvm.DataLayout.IsDisposed -- uid: Ubiquity.NET.Llvm.DataLayout.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.Dispose - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_Dispose - name: Dispose - nameWithType: DataLayout.Dispose - fullName: Ubiquity.NET.Llvm.DataLayout.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: System.FormatException - commentId: T:System.FormatException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.formatexception - name: FormatException - nameWithType: FormatException - fullName: System.FormatException -- uid: System.OverflowException - commentId: T:System.OverflowException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.overflowexception - name: OverflowException - nameWithType: OverflowException - fullName: System.OverflowException -- uid: Ubiquity.NET.Llvm.DataLayout.Parse* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.Parse - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_Parse_System_ReadOnlySpan_System_Byte__System_IFormatProvider_ - name: Parse - nameWithType: DataLayout.Parse - fullName: Ubiquity.NET.Llvm.DataLayout.Parse -- uid: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - commentId: M:System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - parent: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout} - definition: System.IUtf8SpanParsable`1.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.parse - name: Parse(ReadOnlySpan, IFormatProvider) - nameWithType: IUtf8SpanParsable.Parse(ReadOnlySpan, IFormatProvider) - fullName: System.IUtf8SpanParsable.Parse(System.ReadOnlySpan, System.IFormatProvider) - nameWithType.vb: IUtf8SpanParsable(Of DataLayout).Parse(ReadOnlySpan(Of Byte), IFormatProvider) - fullName.vb: System.IUtf8SpanParsable(Of Ubiquity.NET.Llvm.DataLayout).Parse(System.ReadOnlySpan(Of Byte), System.IFormatProvider) - name.vb: Parse(ReadOnlySpan(Of Byte), IFormatProvider) - spec.csharp: - - uid: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - name: Parse - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.parse - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ',' - - name: " " - - uid: System.IFormatProvider - name: IFormatProvider - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - - name: ) - spec.vb: - - uid: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - name: Parse - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.parse - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ',' - - name: " " - - uid: System.IFormatProvider - name: IFormatProvider - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - - name: ) -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.IFormatProvider - commentId: T:System.IFormatProvider - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - name: IFormatProvider - nameWithType: IFormatProvider - fullName: System.IFormatProvider -- uid: System.IUtf8SpanParsable`1.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - commentId: M:System.IUtf8SpanParsable`1.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.parse - name: Parse(ReadOnlySpan, IFormatProvider) - nameWithType: IUtf8SpanParsable.Parse(ReadOnlySpan, IFormatProvider) - fullName: System.IUtf8SpanParsable.Parse(System.ReadOnlySpan, System.IFormatProvider) - nameWithType.vb: IUtf8SpanParsable(Of TSelf).Parse(ReadOnlySpan(Of Byte), IFormatProvider) - fullName.vb: System.IUtf8SpanParsable(Of TSelf).Parse(System.ReadOnlySpan(Of Byte), System.IFormatProvider) - name.vb: Parse(ReadOnlySpan(Of Byte), IFormatProvider) - spec.csharp: - - uid: System.IUtf8SpanParsable`1.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - name: Parse - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.parse - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ',' - - name: " " - - uid: System.IFormatProvider - name: IFormatProvider - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - - name: ) - spec.vb: - - uid: System.IUtf8SpanParsable`1.Parse(System.ReadOnlySpan{System.Byte},System.IFormatProvider) - name: Parse - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.parse - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ',' - - name: " " - - uid: System.IFormatProvider - name: IFormatProvider - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DataLayout.TryParse* - commentId: Overload:Ubiquity.NET.Llvm.DataLayout.TryParse - href: Ubiquity.NET.Llvm.DataLayout.html#Ubiquity_NET_Llvm_DataLayout_TryParse_System_ReadOnlySpan_System_Byte__System_IFormatProvider_Ubiquity_NET_Llvm_DataLayout__ - name: TryParse - nameWithType: DataLayout.TryParse - fullName: Ubiquity.NET.Llvm.DataLayout.TryParse -- uid: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - commentId: M:System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - parent: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout} - definition: System.IUtf8SpanParsable`1.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,`0@) - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.tryparse - name: TryParse(ReadOnlySpan, IFormatProvider, out DataLayout) - nameWithType: IUtf8SpanParsable.TryParse(ReadOnlySpan, IFormatProvider, out DataLayout) - fullName: System.IUtf8SpanParsable.TryParse(System.ReadOnlySpan, System.IFormatProvider, out Ubiquity.NET.Llvm.DataLayout) - nameWithType.vb: IUtf8SpanParsable(Of DataLayout).TryParse(ReadOnlySpan(Of Byte), IFormatProvider, DataLayout) - fullName.vb: System.IUtf8SpanParsable(Of Ubiquity.NET.Llvm.DataLayout).TryParse(System.ReadOnlySpan(Of Byte), System.IFormatProvider, Ubiquity.NET.Llvm.DataLayout) - name.vb: TryParse(ReadOnlySpan(Of Byte), IFormatProvider, DataLayout) - spec.csharp: - - uid: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - name: TryParse - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.tryparse - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ',' - - name: " " - - uid: System.IFormatProvider - name: IFormatProvider - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - - name: ',' - - name: " " - - name: out - - name: " " - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - href: Ubiquity.NET.Llvm.DataLayout.html - - name: ) - spec.vb: - - uid: System.IUtf8SpanParsable{Ubiquity.NET.Llvm.DataLayout}.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,Ubiquity.NET.Llvm.DataLayout@) - name: TryParse - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.tryparse - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ',' - - name: " " - - uid: System.IFormatProvider - name: IFormatProvider - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - href: Ubiquity.NET.Llvm.DataLayout.html - - name: ) -- uid: System.IUtf8SpanParsable`1.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,`0@) - commentId: M:System.IUtf8SpanParsable`1.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,`0@) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.tryparse - name: TryParse(ReadOnlySpan, IFormatProvider, out TSelf) - nameWithType: IUtf8SpanParsable.TryParse(ReadOnlySpan, IFormatProvider, out TSelf) - fullName: System.IUtf8SpanParsable.TryParse(System.ReadOnlySpan, System.IFormatProvider, out TSelf) - nameWithType.vb: IUtf8SpanParsable(Of TSelf).TryParse(ReadOnlySpan(Of Byte), IFormatProvider, TSelf) - fullName.vb: System.IUtf8SpanParsable(Of TSelf).TryParse(System.ReadOnlySpan(Of Byte), System.IFormatProvider, TSelf) - name.vb: TryParse(ReadOnlySpan(Of Byte), IFormatProvider, TSelf) - spec.csharp: - - uid: System.IUtf8SpanParsable`1.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,`0@) - name: TryParse - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.tryparse - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ',' - - name: " " - - uid: System.IFormatProvider - name: IFormatProvider - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - - name: ',' - - name: " " - - name: out - - name: " " - - name: TSelf - - name: ) - spec.vb: - - uid: System.IUtf8SpanParsable`1.TryParse(System.ReadOnlySpan{System.Byte},System.IFormatProvider,`0@) - name: TryParse - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iutf8spanparsable-1.tryparse - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ',' - - name: " " - - uid: System.IFormatProvider - name: IFormatProvider - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - - name: ',' - - name: " " - - name: TSelf - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIBasicType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIBasicType.yml deleted file mode 100644 index 62bad42f0e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIBasicType.yml +++ /dev/null @@ -1,826 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBasicType - id: DIBasicType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding - langs: - - csharp - - vb - name: DIBasicType - nameWithType: DIBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBasicType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIBasicType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBasicType.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a basic type - example: [] - syntax: - content: 'public class DIBasicType : DIType, IEquatable' - content.vb: Public Class DIBasicType Inherits DIType Implements IEquatable(Of IrMetadata) - seealso: - - linkId: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - - linkType: HRef - linkId: xref:llvm_langref#dibasictype - altText: LLVM DIBasicType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DIType - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIType.Name - - Ubiquity.NET.Llvm.DebugInfo.DIType.Line - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - - Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding - id: Encoding - parent: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - langs: - - csharp - - vb - name: Encoding - nameWithType: DIBasicType.Encoding - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBasicType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Encoding - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBasicType.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the encoding for the type - example: [] - syntax: - content: public DiTypeKind Encoding { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - content.vb: Public ReadOnly Property Encoding As DiTypeKind - overload: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateBasicType_System_String_System_UInt64_Ubiquity_NET_Llvm_DebugInfo_DiTypeKind_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_ - name: CreateBasicType(string, ulong, DiTypeKind, DebugInfoFlags) - nameWithType: DIBuilder.CreateBasicType(string, ulong, DiTypeKind, DebugInfoFlags) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(string, ulong, Ubiquity.NET.Llvm.DebugInfo.DiTypeKind, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - nameWithType.vb: DIBuilder.CreateBasicType(String, ULong, DiTypeKind, DebugInfoFlags) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(String, ULong, Ubiquity.NET.Llvm.DebugInfo.DiTypeKind, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - name.vb: CreateBasicType(String, ULong, DiTypeKind, DebugInfoFlags) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - name: CreateBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateBasicType_System_String_System_UInt64_Ubiquity_NET_Llvm_DebugInfo_DiTypeKind_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - name: DiTypeKind - href: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - name: DebugInfoFlags - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - name: CreateBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateBasicType_System_String_System_UInt64_Ubiquity_NET_Llvm_DebugInfo_DiTypeKind_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - name: DiTypeKind - href: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - name: DebugInfoFlags - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Scope - name: Scope - nameWithType: DIType.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Name - name: Name - nameWithType: DIType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Line - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Line - name: Line - nameWithType: DIType.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Line -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitSize - name: BitSize - nameWithType: DIType.BitSize - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitAlignment - name: BitAlignment - nameWithType: DIType.BitAlignment - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitOffset - name: BitOffset - nameWithType: DIType.BitOffset - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_DebugInfoFlags - name: DebugInfoFlags - nameWithType: DIType.DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding - href: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.html#Ubiquity_NET_Llvm_DebugInfo_DIBasicType_Encoding - name: Encoding - nameWithType: DIBasicType.Encoding - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.Encoding -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.html - name: DiTypeKind - nameWithType: DiTypeKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml deleted file mode 100644 index 5f56e44ab8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIBuilder.yml +++ /dev/null @@ -1,4437 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - id: DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.#ctor(Ubiquity.NET.Llvm.Module) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.Boolean,System.String,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.String,System.Boolean,System.String,System.UInt32,System.String,System.String) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression(System.UInt64) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIEnumerator},Ubiquity.NET.Llvm.DebugInfo.DIType) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue(System.String,System.Int64,System.Boolean) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.ExpressionOp}) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[]) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(System.String) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(System.String,System.String) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean,Ubiquity.NET.Llvm.Values.Function) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression(Ubiquity.NET.Llvm.DebugInfo.DINode,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.Boolean) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt64,System.UInt32,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType(Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType(Ubiquity.NET.Llvm.DebugInfo.Tag,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.String) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange(System.Int64,System.Int64) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType[]) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIFile) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[]) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,System.String) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish(Ubiquity.NET.Llvm.DebugInfo.DISubProgram) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[]) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule - langs: - - csharp - - vb - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIBuilder - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: DIBuilder is a factory class for creating DebugInformation for an LLVM - remarks: >- - Many Debug information metadata nodes are created with unresolved references to additional - - metadata. To ensure such metadata is resolved applications should call the - - method to resolve and finalize the metadata. After this point only fully resolved nodes may - - be added to ensure that the data remains valid. - example: [] - syntax: - content: public ref struct DIBuilder - content.vb: Public Structure DIBuilder - seealso: - - linkType: HRef - linkId: xref:llvm_sourceleveldebugging - altText: LLVM Source Level Debugging - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.#ctor(Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.#ctor(Ubiquity.NET.Llvm.Module) - id: '#ctor(Ubiquity.NET.Llvm.Module)' - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: DIBuilder(Module) - nameWithType: DIBuilder.DIBuilder(Module) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.DIBuilder(Ubiquity.NET.Llvm.Module) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the struct. - example: [] - syntax: - content: public DIBuilder(Module owningModule) - parameters: - - id: owningModule - type: Ubiquity.NET.Llvm.Module - description: Module that owns this builder - content.vb: Public Sub New(owningModule As [Module]) - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.#ctor* - nameWithType.vb: DIBuilder.New(Module) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.New(Ubiquity.NET.Llvm.Module) - name.vb: New(Module) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: Dispose() - nameWithType: DIBuilder.Dispose() - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Dispose this builder instance - example: [] - syntax: - content: public readonly void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule - id: OwningModule - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: OwningModule - nameWithType: DIBuilder.OwningModule - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OwningModule - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the module that owns this builder - example: [] - syntax: - content: public readonly IModule OwningModule { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IModule - content.vb: Public ReadOnly Property OwningModule As IModule - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit - id: CompileUnit - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CompileUnit - nameWithType: DIBuilder.CompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CompileUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the compile unit created by this builder - example: [] - syntax: - content: public readonly DICompileUnit? CompileUnit { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - content.vb: Public Property CompileUnit As DICompileUnit - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.Boolean,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.Boolean,System.String,System.UInt32) - id: CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.Boolean,System.String,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateCompileUnit(SourceLanguage, string, string?, bool, string?, uint) - nameWithType: DIBuilder.CreateCompileUnit(SourceLanguage, string, string?, bool, string?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage, string, string?, bool, string?, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateCompileUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 68 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a new - example: [] - syntax: - content: public DICompileUnit CreateCompileUnit(SourceLanguage language, string sourceFilePath, string? producer, bool optimized = false, string? compilationFlags = null, uint runtimeVersion = 0) - parameters: - - id: language - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - description: for the compilation unit - - id: sourceFilePath - type: System.String - description: Full path to the source file of this compilation unit - - id: producer - type: System.String - description: Name of the application processing the compilation unit - - id: optimized - type: System.Boolean - description: Flag to indicate if the code in this compilation unit is optimized - - id: compilationFlags - type: System.String - description: Additional tool specific flags - - id: runtimeVersion - type: System.UInt32 - description: Runtime version - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - description: - content.vb: Public Function CreateCompileUnit(language As SourceLanguage, sourceFilePath As String, producer As String, optimized As Boolean = False, compilationFlags As String = Nothing, runtimeVersion As UInteger = 0) As DICompileUnit - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit* - nameWithType.vb: DIBuilder.CreateCompileUnit(SourceLanguage, String, String, Boolean, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage, String, String, Boolean, String, UInteger) - name.vb: CreateCompileUnit(SourceLanguage, String, String, Boolean, String, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.String,System.Boolean,System.String,System.UInt32,System.String,System.String) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.String,System.Boolean,System.String,System.UInt32,System.String,System.String) - id: CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage,System.String,System.String,System.String,System.Boolean,System.String,System.UInt32,System.String,System.String) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateCompileUnit(SourceLanguage, string, string, string?, bool, string?, uint, string?, string?) - nameWithType: DIBuilder.CreateCompileUnit(SourceLanguage, string, string, string?, bool, string?, uint, string?, string?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage, string, string, string?, bool, string?, uint, string?, string?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateCompileUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 99 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a new - example: [] - syntax: - content: public DICompileUnit CreateCompileUnit(SourceLanguage language, string fileName, string fileDirectory, string? producer, bool optimized, string? compilationFlags, uint runtimeVersion, string? sysRoot = null, string? sdk = null) - parameters: - - id: language - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - description: for the compilation unit - - id: fileName - type: System.String - description: Name of the source file of this compilation unit (without any path) - - id: fileDirectory - type: System.String - description: Path of the directory containing the file - - id: producer - type: System.String - description: Name of the application processing the compilation unit - - id: optimized - type: System.Boolean - description: Flag to indicate if the code in this compilation unit is optimized - - id: compilationFlags - type: System.String - description: Additional tool specific flags - - id: runtimeVersion - type: System.UInt32 - description: Runtime version - - id: sysRoot - type: System.String - description: System root for the debug info to use [Default:] - - id: sdk - type: System.String - description: SDK name for the debug record [Default:] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - description: - content.vb: Public Function CreateCompileUnit(language As SourceLanguage, fileName As String, fileDirectory As String, producer As String, optimized As Boolean, compilationFlags As String, runtimeVersion As UInteger, sysRoot As String = Nothing, sdk As String = Nothing) As DICompileUnit - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit* - nameWithType.vb: DIBuilder.CreateCompileUnit(SourceLanguage, String, String, String, Boolean, String, UInteger, String, String) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit(Ubiquity.NET.Llvm.DebugInfo.SourceLanguage, String, String, String, Boolean, String, UInteger, String, String) - name.vb: CreateCompileUnit(SourceLanguage, String, String, String, Boolean, String, UInteger, String, String) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIFile) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIFile) - id: CreateTempMacroFile(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIFile) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateTempMacroFile(DIMacroFile?, uint, DIFile?) - nameWithType: DIBuilder.CreateTempMacroFile(DIMacroFile?, uint, DIFile?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DIFile?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateTempMacroFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 157 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a debugging information temporary entry for a macro file - remarks: >- - The list of macro node direct children is calculated by the use of the - - functions parentFile parameter. - example: [] - syntax: - content: public readonly DIMacroFile CreateTempMacroFile(DIMacroFile? parent, uint line, DIFile? file) - parameters: - - id: parent - type: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - description: Macro file parent, if any - - id: line - type: System.UInt32 - description: Source line where the macro file is included - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File information for the file containing the macro - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - description: Newly created - content.vb: Public Function CreateTempMacroFile(parent As DIMacroFile, line As UInteger, file As DIFile) As DIMacroFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile* - nameWithType.vb: DIBuilder.CreateTempMacroFile(DIMacroFile, UInteger, DIFile) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIFile) - name.vb: CreateTempMacroFile(DIMacroFile, UInteger, DIFile) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String) - id: CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateMacro(DIMacroFile?, uint, MacroKind, string, string) - nameWithType: DIBuilder.CreateMacro(DIMacroFile?, uint, MacroKind, string, string) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile?, uint, Ubiquity.NET.Llvm.DebugInfo.MacroKind, string, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateMacro - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 175 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Create a macro - example: [] - syntax: - content: public readonly DIMacro CreateMacro(DIMacroFile? parentFile, uint line, MacroKind kind, string name, string value) - parameters: - - id: parentFile - type: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - description: Parent file containing the macro - - id: line - type: System.UInt32 - description: Source line number where the macro is defined - - id: kind - type: Ubiquity.NET.Llvm.DebugInfo.MacroKind - description: Id of macro - - id: name - type: System.String - description: Name of the macro - - id: value - type: System.String - description: Value of the macro (use String.Empty for ) - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIMacro - description: Newly created macro node - content.vb: Public Function CreateMacro(parentFile As DIMacroFile, line As UInteger, kind As MacroKind, name As String, value As String) As DIMacro - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro* - nameWithType.vb: DIBuilder.CreateMacro(DIMacroFile, UInteger, MacroKind, String, String) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.MacroKind, String, String) - name.vb: CreateMacro(DIMacroFile, UInteger, MacroKind, String, String) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.Boolean) - id: CreateNamespace(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.Boolean) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateNamespace(DIScope?, string, bool) - nameWithType: DIBuilder.CreateNamespace(DIScope?, string, bool) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateNamespace - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 208 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a - example: [] - syntax: - content: public readonly DINamespace CreateNamespace(DIScope? scope, string name, bool exportSymbols) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Containing scope for the namespace or null if the namespace is a global one - - id: name - type: System.String - description: Name of the namespace - - id: exportSymbols - type: System.Boolean - description: export symbols - return: - type: Ubiquity.NET.Llvm.DebugInfo.DINamespace - description: Debug namespace - content.vb: Public Function CreateNamespace(scope As DIScope, name As String, exportSymbols As Boolean) As DINamespace - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace* - nameWithType.vb: DIBuilder.CreateNamespace(DIScope, String, Boolean) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Boolean) - name.vb: CreateNamespace(DIScope, String, Boolean) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(System.String) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(System.String) - id: CreateFile(System.String) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateFile(string?) - nameWithType: DIBuilder.CreateFile(string?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(string?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 229 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a - example: [] - syntax: - content: public readonly DIFile CreateFile(string? path) - parameters: - - id: path - type: System.String - description: Path of the file (may be null or empty) - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: >- - or null if path - - is null empty, or all whitespace - content.vb: Public Function CreateFile(path As String) As DIFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile* - nameWithType.vb: DIBuilder.CreateFile(String) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(String) - name.vb: CreateFile(String) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(System.String,System.String) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(System.String,System.String) - id: CreateFile(System.String,System.String) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateFile(string?, string?) - nameWithType: DIBuilder.CreateFile(string?, string?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(string?, string?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 240 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a - example: [] - syntax: - content: public readonly DIFile CreateFile(string? fileName, string? directory) - parameters: - - id: fileName - type: System.String - description: Name of the file (may be null or empty) - - id: directory - type: System.String - description: Path of the directory containing the file (may be null or empty) - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: created - content.vb: Public Function CreateFile(fileName As String, directory As String) As DIFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile* - nameWithType.vb: DIBuilder.CreateFile(String, String) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile(String, String) - name.vb: CreateFile(String, String) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32) - id: CreateLexicalBlock(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateLexicalBlock(DIScope?, DIFile?, uint, uint) - nameWithType: DIBuilder.CreateLexicalBlock(DIScope?, DIFile?, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock(Ubiquity.NET.Llvm.DebugInfo.DIScope?, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateLexicalBlock - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 262 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a new - example: [] - syntax: - content: public readonly DILexicalBlock CreateLexicalBlock(DIScope? scope, DIFile? file, uint line, uint column) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: for the block - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: containing the block - - id: line - type: System.UInt32 - description: Starting line number for the block - - id: column - type: System.UInt32 - description: Starting column for the block - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - description: created from the parameters - content.vb: Public Function CreateLexicalBlock(scope As DIScope, file As DIFile, line As UInteger, column As UInteger) As DILexicalBlock - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock* - nameWithType.vb: DIBuilder.CreateLexicalBlock(DIScope, DIFile, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock(Ubiquity.NET.Llvm.DebugInfo.DIScope, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, UInteger) - name.vb: CreateLexicalBlock(DIScope, DIFile, UInteger, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - id: CreateLexicalBlockFile(Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateLexicalBlockFile(DIScope?, DIFile?, uint) - nameWithType: DIBuilder.CreateLexicalBlockFile(DIScope?, DIFile?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile(Ubiquity.NET.Llvm.DebugInfo.DIScope?, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateLexicalBlockFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 282 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a - example: [] - syntax: - content: public readonly DILexicalBlockFile CreateLexicalBlockFile(DIScope? scope, DIFile? file, uint discriminator) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: for the block - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: - - id: discriminator - type: System.UInt32 - description: Discriminator to disambiguate lexical blocks with the same file info - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - description: constructed from the parameters - content.vb: Public Function CreateLexicalBlockFile(scope As DIScope, file As DIFile, discriminator As UInteger) As DILexicalBlockFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile* - nameWithType.vb: DIBuilder.CreateLexicalBlockFile(DIScope, DIFile, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile(Ubiquity.NET.Llvm.DebugInfo.DIScope, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger) - name.vb: CreateLexicalBlockFile(DIScope, DIFile, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean,Ubiquity.NET.Llvm.Values.Function) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean,Ubiquity.NET.Llvm.Values.Function) - id: CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean,Ubiquity.NET.Llvm.Values.Function) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateFunction(DIScope?, string, string, DIFile?, uint, DISubroutineType?, bool, bool, uint, DebugInfoFlags, bool, Function) - nameWithType: DIBuilder.CreateFunction(DIScope?, string, string, DIFile?, uint, DISubroutineType?, bool, bool, uint, DebugInfoFlags, bool, Function) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType?, bool, bool, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, bool, Ubiquity.NET.Llvm.Values.Function) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 308 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Factory method to create a with debug information - example: [] - syntax: - content: public readonly DISubProgram CreateFunction(DIScope? scope, string name, string mangledName, DIFile? file, uint line, DISubroutineType? signatureType, bool isLocalToUnit, bool isDefinition, uint scopeLine, DebugInfoFlags debugFlags, bool isOptimized, Function function) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: for the function - - id: name - type: System.String - description: Name of the function as it appears in the source language - - id: mangledName - type: System.String - description: Linkage (mangled) name of the function - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: containing the function - - id: line - type: System.UInt32 - description: starting line of the function definition - - id: signatureType - type: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - description: for the function's signature type - - id: isLocalToUnit - type: System.Boolean - description: Flag to indicate if this function is local to the compilation unit or available externally - - id: isDefinition - type: System.Boolean - description: Flag to indicate if this is a definition or a declaration only - - id: scopeLine - type: System.UInt32 - description: starting line of the first scope of the function's body - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for this function - - id: isOptimized - type: System.Boolean - description: Flag to indicate if this function is optimized - - id: function - type: Ubiquity.NET.Llvm.Values.Function - description: Underlying LLVM to attach debug info to - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - description: created based on the input parameters - content.vb: Public Function CreateFunction(scope As DIScope, name As String, mangledName As String, file As DIFile, line As UInteger, signatureType As DISubroutineType, isLocalToUnit As Boolean, isDefinition As Boolean, scopeLine As UInteger, debugFlags As DebugInfoFlags, isOptimized As Boolean, [function] As [Function]) As DISubProgram - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction* - nameWithType.vb: DIBuilder.CreateFunction(DIScope, String, String, DIFile, UInteger, DISubroutineType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean, Function) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType, Boolean, Boolean, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Boolean, Ubiquity.NET.Llvm.Values.Function) - name.vb: CreateFunction(DIScope, String, String, DIFile, UInteger, DISubroutineType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean, Function) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - id: ForwardDeclareFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: ForwardDeclareFunction(DIScope?, string, string, DIFile?, uint, DISubroutineType, bool, bool, uint, DebugInfoFlags, bool) - nameWithType: DIBuilder.ForwardDeclareFunction(DIScope?, string, string, DIFile?, uint, DISubroutineType, bool, bool, uint, DebugInfoFlags, bool) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType, bool, bool, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ForwardDeclareFunction - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 375 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a new forward declaration to a function - example: [] - syntax: - content: public readonly DISubProgram ForwardDeclareFunction(DIScope? scope, string name, string mangledName, DIFile? file, uint line, DISubroutineType subroutineType, bool isLocalToUnit, bool isDefinition, uint scopeLine, DebugInfoFlags debugFlags, bool isOptimized) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: for the declaration - - id: name - type: System.String - description: Name of the function as it appears in source - - id: mangledName - type: System.String - description: mangled name of the function (for linker) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: Source file location for the function - - id: line - type: System.UInt32 - description: starting line of the declaration - - id: subroutineType - type: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - description: Signature for the function - - id: isLocalToUnit - type: System.Boolean - description: Flag to indicate if this declaration is local to the compilation unit - - id: isDefinition - type: System.Boolean - description: Flag to indicate if this is a definition - - id: scopeLine - type: System.UInt32 - description: Line of the first scope block - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the function - - id: isOptimized - type: System.Boolean - description: Flag to indicate if the function is optimized - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - description: Subprogram as a forward declaration - content.vb: Public Function ForwardDeclareFunction(scope As DIScope, name As String, mangledName As String, file As DIFile, line As UInteger, subroutineType As DISubroutineType, isLocalToUnit As Boolean, isDefinition As Boolean, scopeLine As UInteger, debugFlags As DebugInfoFlags, isOptimized As Boolean) As DISubProgram - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction* - nameWithType.vb: DIBuilder.ForwardDeclareFunction(DIScope, String, String, DIFile, UInteger, DISubroutineType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType, Boolean, Boolean, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Boolean) - name.vb: ForwardDeclareFunction(DIScope, String, String, DIFile, UInteger, DISubroutineType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt32) - id: CreateLocalVariable(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateLocalVariable(DIScope?, string, DIFile?, uint, DIType?, bool, DebugInfoFlags, uint) - nameWithType: DIBuilder.CreateLocalVariable(DIScope?, string, DIFile?, uint, DIType?, bool, DebugInfoFlags, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DIType?, bool, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateLocalVariable - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 430 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a for a given scope - example: [] - syntax: - content: public readonly DILocalVariable CreateLocalVariable(DIScope? scope, string name, DIFile? file, uint line, DIType? type, bool alwaysPreserve, DebugInfoFlags debugFlags, uint alignInBits = 0) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope the variable belongs to - - id: name - type: System.String - description: Name of the variable - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File where the variable is declared - - id: line - type: System.UInt32 - description: Line where the variable is declared - - id: type - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Type of the variable - - id: alwaysPreserve - type: System.Boolean - description: Flag to indicate if this variable's debug information should always be preserved - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: Flags for the variable - - id: alignInBits - type: System.UInt32 - description: Variable alignment (in Bits) - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: - content.vb: Public Function CreateLocalVariable(scope As DIScope, name As String, file As DIFile, line As UInteger, type As DIType, alwaysPreserve As Boolean, debugFlags As DebugInfoFlags, alignInBits As UInteger = 0) As DILocalVariable - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable* - nameWithType.vb: DIBuilder.CreateLocalVariable(DIScope, String, DIFile, UInteger, DIType, Boolean, DebugInfoFlags, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, Boolean, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, UInteger) - name.vb: CreateLocalVariable(DIScope, String, DIFile, UInteger, DIType, Boolean, DebugInfoFlags, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16) - id: CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateArgument(DIScope?, string, DIFile?, uint, DIType?, bool, DebugInfoFlags, ushort) - nameWithType: DIBuilder.CreateArgument(DIScope?, string, DIFile?, uint, DIType?, bool, DebugInfoFlags, ushort) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DIType?, bool, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, ushort) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateArgument - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 468 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates an argument for a function as a - example: [] - syntax: - content: public readonly DILocalVariable CreateArgument(DIScope? scope, string name, DIFile? file, uint line, DIType? type, bool alwaysPreserve, DebugInfoFlags debugFlags, ushort argNo) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope for the argument - - id: name - type: System.String - description: Name of the argument - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: containing the function this argument is declared in - - id: line - type: System.UInt32 - description: Line number fort his argument - - id: type - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Debug type for this argument - - id: alwaysPreserve - type: System.Boolean - description: Flag to indicate if this argument is always preserved for debug view even if optimization would remove it - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for this argument - - id: argNo - type: System.UInt16 - description: One based argument index on the method (e.g the first argument is 1 not 0 ) - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: representing the function argument - content.vb: Public Function CreateArgument(scope As DIScope, name As String, file As DIFile, line As UInteger, type As DIType, alwaysPreserve As Boolean, debugFlags As DebugInfoFlags, argNo As UShort) As DILocalVariable - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument* - nameWithType.vb: DIBuilder.CreateArgument(DIScope, String, DIFile, UInteger, DIType, Boolean, DebugInfoFlags, UShort) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, Boolean, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, UShort) - name.vb: CreateArgument(DIScope, String, DIFile, UInteger, DIType, Boolean, DebugInfoFlags, UShort) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - id: CreateBasicType(System.String,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateBasicType(string, ulong, DiTypeKind, DebugInfoFlags) - nameWithType: DIBuilder.CreateBasicType(string, ulong, DiTypeKind, DebugInfoFlags) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(string, ulong, Ubiquity.NET.Llvm.DebugInfo.DiTypeKind, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateBasicType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 502 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Construct debug information for a basic type (a.k.a. primitive type) - example: [] - syntax: - content: public readonly DIBasicType CreateBasicType(string name, ulong bitSize, DiTypeKind encoding, DebugInfoFlags diFlags = DebugInfoFlags.None) - parameters: - - id: name - type: System.String - description: Name of the type - - id: bitSize - type: System.UInt64 - description: Bit size for the type - - id: encoding - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - description: encoding for the type - - id: diFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the type - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - description: Basic type debugging information - content.vb: Public Function CreateBasicType(name As String, bitSize As ULong, encoding As DiTypeKind, diFlags As DebugInfoFlags = DebugInfoFlags.None) As DIBasicType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType* - nameWithType.vb: DIBuilder.CreateBasicType(String, ULong, DiTypeKind, DebugInfoFlags) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType(String, ULong, Ubiquity.NET.Llvm.DebugInfo.DiTypeKind, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - name.vb: CreateBasicType(String, ULong, DiTypeKind, DebugInfoFlags) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt64,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt64,System.UInt32,System.UInt32) - id: CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt64,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreatePointerType(DIType?, string?, ulong, uint, uint) - nameWithType: DIBuilder.CreatePointerType(DIType?, string?, ulong, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIType?, string?, ulong, uint, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreatePointerType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 517 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a pointer type with debug information - example: [] - syntax: - content: public readonly DIDerivedType CreatePointerType(DIType? pointeeType, string? name, ulong bitSize, uint bitAlign = 0, uint addressSpace = 0) - parameters: - - id: pointeeType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: base type of the pointer (null => void) - - id: name - type: System.String - description: Name of the type - - id: bitSize - type: System.UInt64 - description: Bit size of the type - - id: bitAlign - type: System.UInt32 - description: But alignment of the type - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - description: Pointer type - content.vb: Public Function CreatePointerType(pointeeType As DIType, name As String, bitSize As ULong, bitAlign As UInteger = 0, addressSpace As UInteger = 0) As DIDerivedType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType* - nameWithType.vb: DIBuilder.CreatePointerType(DIType, String, ULong, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIType, String, ULong, UInteger, UInteger) - name.vb: CreatePointerType(DIType, String, ULong, UInteger, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType(Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType(Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag) - id: CreateQualifiedType(Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateQualifiedType(DIType?, QualifiedTypeTag) - nameWithType: DIBuilder.CreateQualifiedType(DIType?, QualifiedTypeTag) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType(Ubiquity.NET.Llvm.DebugInfo.DIType?, Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateQualifiedType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 537 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a qualified type - example: [] - syntax: - content: public readonly DIDerivedType CreateQualifiedType(DIType? baseType, QualifiedTypeTag tag) - parameters: - - id: baseType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Base type to add the qualifier to - - id: tag - type: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - description: Qualifier to apply - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - description: Qualified type - content.vb: Public Function CreateQualifiedType(baseType As DIType, tag As QualifiedTypeTag) As DIDerivedType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType* - exceptions: - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: tag is - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: baseType is null - nameWithType.vb: DIBuilder.CreateQualifiedType(DIType, QualifiedTypeTag) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType(Ubiquity.NET.Llvm.DebugInfo.DIType, Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag) - name.vb: CreateQualifiedType(DIType, QualifiedTypeTag) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[]) - id: CreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[]) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateTypeArray(params DIType?[]) - nameWithType: DIBuilder.CreateTypeArray(params DIType?[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(params Ubiquity.NET.Llvm.DebugInfo.DIType?[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateTypeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 547 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Create a debug metadata array of debug types - example: [] - syntax: - content: public readonly DITypeArray CreateTypeArray(params DIType?[] types) - parameters: - - id: types - type: Ubiquity.NET.Llvm.DebugInfo.DIType[] - description: Types to include in the array - return: - type: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - description: Array containing the types - content.vb: Public Function CreateTypeArray(ParamArray types As DIType()) As DITypeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray* - nameWithType.vb: DIBuilder.CreateTypeArray(ParamArray DIType()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(ParamArray Ubiquity.NET.Llvm.DebugInfo.DIType()) - name.vb: CreateTypeArray(ParamArray DIType()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - id: CreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateTypeArray(IEnumerable) - nameWithType: DIBuilder.CreateTypeArray(IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateTypeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 552 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Create a debug metadata array of debug types - example: [] - syntax: - content: public readonly DITypeArray CreateTypeArray(IEnumerable types) - parameters: - - id: types - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Types to include in the array - return: - type: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - description: Array containing the types - content.vb: Public Function CreateTypeArray(types As IEnumerable(Of DIType)) As DITypeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray* - nameWithType.vb: DIBuilder.CreateTypeArray(IEnumerable(Of DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray(System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: CreateTypeArray(IEnumerable(Of DIType)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType[]) - id: CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType[]) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateSubroutineType(DebugInfoFlags, params DIType?[]) - nameWithType: DIBuilder.CreateSubroutineType(DebugInfoFlags, params DIType?[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, params Ubiquity.NET.Llvm.DebugInfo.DIType?[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateSubroutineType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 563 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a to provide debug information for a function/procedure signature - example: [] - syntax: - content: public readonly DISubroutineType CreateSubroutineType(DebugInfoFlags debugFlags, params DIType?[] types) - parameters: - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for this signature - - id: types - type: Ubiquity.NET.Llvm.DebugInfo.DIType[] - description: Parameter types - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - description: - content.vb: Public Function CreateSubroutineType(debugFlags As DebugInfoFlags, ParamArray types As DIType()) As DISubroutineType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType* - nameWithType.vb: DIBuilder.CreateSubroutineType(DebugInfoFlags, ParamArray DIType()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, ParamArray Ubiquity.NET.Llvm.DebugInfo.DIType()) - name.vb: CreateSubroutineType(DebugInfoFlags, ParamArray DIType()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - id: CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateSubroutineType(DebugInfoFlags, IEnumerable) - nameWithType: DIBuilder.CreateSubroutineType(DebugInfoFlags, IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateSubroutineType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 572 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a to provide debug information for a function/procedure signature - example: [] - syntax: - content: public readonly DISubroutineType CreateSubroutineType(DebugInfoFlags debugFlags, IEnumerable types) - parameters: - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for this signature - - id: types - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Parameter types - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - description: - content.vb: Public Function CreateSubroutineType(debugFlags As DebugInfoFlags, types As IEnumerable(Of DIType)) As DISubroutineType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType* - nameWithType.vb: DIBuilder.CreateSubroutineType(DebugInfoFlags, IEnumerable(Of DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: CreateSubroutineType(DebugInfoFlags, IEnumerable(Of DIType)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - id: CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateSubroutineType(DebugInfoFlags) - nameWithType: DIBuilder.CreateSubroutineType(DebugInfoFlags) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateSubroutineType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 590 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a to provide debug information for a function/procedure signature - example: [] - syntax: - content: public readonly DISubroutineType CreateSubroutineType(DebugInfoFlags debugFlags) - parameters: - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for this signature - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - description: - content.vb: Public Function CreateSubroutineType(debugFlags As DebugInfoFlags) As DISubroutineType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - id: CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateSubroutineType(DebugInfoFlags, DIType?, IEnumerable) - nameWithType: DIBuilder.CreateSubroutineType(DebugInfoFlags, DIType?, IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType?, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateSubroutineType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 600 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a to provide debug information for a function/procedure signature - example: [] - syntax: - content: public readonly DISubroutineType CreateSubroutineType(DebugInfoFlags debugFlags, DIType? returnType, IEnumerable types) - parameters: - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for this signature - - id: returnType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Return type of the signature - - id: types - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Parameters for the function - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - description: - content.vb: Public Function CreateSubroutineType(debugFlags As DebugInfoFlags, returnType As DIType, types As IEnumerable(Of DIType)) As DISubroutineType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType* - nameWithType.vb: DIBuilder.CreateSubroutineType(DebugInfoFlags, DIType, IEnumerable(Of DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType(Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: CreateSubroutineType(DebugInfoFlags, DIType, IEnumerable(Of DIType)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - id: CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateStructType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, DIType?, params DINode[]) - nameWithType: DIBuilder.CreateStructType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, DIType?, params DINode[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType?, params Ubiquity.NET.Llvm.DebugInfo.DINode[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateStructType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 616 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug description of a structure type - example: [] - syntax: - content: public readonly DICompositeType CreateStructType(DIScope? scope, string name, DIFile? file, uint line, ulong bitSize, uint bitAlign, DebugInfoFlags debugFlags, DIType? derivedFrom, params DINode[] elements) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing the structure - - id: name - type: System.String - description: Name of the type (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the type - - id: line - type: System.UInt32 - description: Line of the start of the type - - id: bitSize - type: System.UInt64 - description: Size of the type in bits - - id: bitAlign - type: System.UInt32 - description: Bit alignment of the type - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the structure - - id: derivedFrom - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: this type is derived from, if any - - id: elements - type: Ubiquity.NET.Llvm.DebugInfo.DINode[] - description: Node array describing the elements of the structure - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: - content.vb: Public Function CreateStructType(scope As DIScope, name As String, file As DIFile, line As UInteger, bitSize As ULong, bitAlign As UInteger, debugFlags As DebugInfoFlags, derivedFrom As DIType, ParamArray elements As DINode()) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType* - nameWithType.vb: DIBuilder.CreateStructType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, DIType, ParamArray DINode()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType, ParamArray Ubiquity.NET.Llvm.DebugInfo.DINode()) - name.vb: CreateStructType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, DIType, ParamArray DINode()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String) - id: CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateStructType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, DIType?, IEnumerable, uint, DIType?, string) - nameWithType: DIBuilder.CreateStructType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, DIType?, IEnumerable, uint, DIType?, string) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType?, System.Collections.Generic.IEnumerable, uint, Ubiquity.NET.Llvm.DebugInfo.DIType?, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateStructType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 644 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug description of a structure type - example: [] - syntax: - content: public readonly DICompositeType CreateStructType(DIScope? scope, string name, DIFile? file, uint line, ulong bitSize, uint bitAlign, DebugInfoFlags debugFlags, DIType? derivedFrom, IEnumerable elements, uint runTimeLang = 0, DIType? vTableHolder = null, string uniqueId = "") - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing the structure - - id: name - type: System.String - description: Name of the type (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the type - - id: line - type: System.UInt32 - description: Line of the start of the type - - id: bitSize - type: System.UInt64 - description: Size of the type in bits - - id: bitAlign - type: System.UInt32 - description: Bit alignment of the type - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the structure - - id: derivedFrom - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: this type is derived from, if any - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - description: Node array describing the elements of the structure - - id: runTimeLang - type: System.UInt32 - description: runtime language for the type - - id: vTableHolder - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: VTable holder for the type - - id: uniqueId - type: System.String - description: Unique ID for the type - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: - content.vb: Public Function CreateStructType(scope As DIScope, name As String, file As DIFile, line As UInteger, bitSize As ULong, bitAlign As UInteger, debugFlags As DebugInfoFlags, derivedFrom As DIType, elements As IEnumerable(Of DINode), runTimeLang As UInteger = 0, vTableHolder As DIType = Nothing, uniqueId As String = "") As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType* - nameWithType.vb: DIBuilder.CreateStructType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, DIType, IEnumerable(Of DINode), UInteger, DIType, String) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode), UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, String) - name.vb: CreateStructType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, DIType, IEnumerable(Of DINode), UInteger, DIType, String) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - id: CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateUnionType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, DINodeArray) - nameWithType: DIBuilder.CreateUnionType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, DINodeArray) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateUnionType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 693 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug description of a union type - example: [] - syntax: - content: public readonly DICompositeType CreateUnionType(DIScope? scope, string name, DIFile? file, uint line, ulong bitSize, uint bitAlign, DebugInfoFlags debugFlags, DINodeArray elements) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing the union - - id: name - type: System.String - description: Name of the type (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the union - - id: line - type: System.UInt32 - description: Line of the start of the union - - id: bitSize - type: System.UInt64 - description: Size of the union in bits - - id: bitAlign - type: System.UInt32 - description: Bit alignment of the union - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the union - - id: elements - type: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - description: Node array describing the elements of the union - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: - content.vb: Public Function CreateUnionType(scope As DIScope, name As String, file As DIFile, line As UInteger, bitSize As ULong, bitAlign As UInteger, debugFlags As DebugInfoFlags, elements As DINodeArray) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType* - nameWithType.vb: DIBuilder.CreateUnionType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, DINodeArray) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - name.vb: CreateUnionType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, DINodeArray) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - id: CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateUnionType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, params DINode[]) - nameWithType: DIBuilder.CreateUnionType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, params DINode[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, params Ubiquity.NET.Llvm.DebugInfo.DINode[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateUnionType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 717 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug description of a union type - example: [] - syntax: - content: public readonly DICompositeType CreateUnionType(DIScope? scope, string name, DIFile? file, uint line, ulong bitSize, uint bitAlign, DebugInfoFlags debugFlags, params DINode[] elements) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing the union - - id: name - type: System.String - description: Name of the type (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the union - - id: line - type: System.UInt32 - description: Line of the start of the union - - id: bitSize - type: System.UInt64 - description: Size of the union in bits - - id: bitAlign - type: System.UInt32 - description: Bit alignment of the union - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the union - - id: elements - type: Ubiquity.NET.Llvm.DebugInfo.DINode[] - description: Node array describing the elements of the union - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: - content.vb: Public Function CreateUnionType(scope As DIScope, name As String, file As DIFile, line As UInteger, bitSize As ULong, bitAlign As UInteger, debugFlags As DebugInfoFlags, ParamArray elements As DINode()) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType* - nameWithType.vb: DIBuilder.CreateUnionType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, ParamArray DINode()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, ParamArray Ubiquity.NET.Llvm.DebugInfo.DINode()) - name.vb: CreateUnionType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, ParamArray DINode()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,System.String) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,System.String) - id: CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode},System.UInt32,System.String) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateUnionType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, IEnumerable, uint, string) - nameWithType: DIBuilder.CreateUnionType(DIScope?, string, DIFile?, uint, ulong, uint, DebugInfoFlags, IEnumerable, uint, string) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable, uint, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateUnionType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 742 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug description of a union type - example: [] - syntax: - content: public readonly DICompositeType CreateUnionType(DIScope? scope, string name, DIFile? file, uint line, ulong bitSize, uint bitAlign, DebugInfoFlags debugFlags, IEnumerable elements, uint runTimeLang = 0, string uniqueId = "") - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing the union - - id: name - type: System.String - description: Name of the type (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the union - - id: line - type: System.UInt32 - description: Line of the start of the union - - id: bitSize - type: System.UInt64 - description: Size of the union in bits - - id: bitAlign - type: System.UInt32 - description: Bit alignment of the union - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the union - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - description: Node array describing the elements of the union - - id: runTimeLang - type: System.UInt32 - description: Objective-C runtime version [Default=0] - - id: uniqueId - type: System.String - description: A unique identifier for the type - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: - content.vb: Public Function CreateUnionType(scope As DIScope, name As String, file As DIFile, line As UInteger, bitSize As ULong, bitAlign As UInteger, debugFlags As DebugInfoFlags, elements As IEnumerable(Of DINode), runTimeLang As UInteger = 0, uniqueId As String = "") As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType* - nameWithType.vb: DIBuilder.CreateUnionType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, IEnumerable(Of DINode), UInteger, String) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode), UInteger, String) - name.vb: CreateUnionType(DIScope, String, DIFile, UInteger, ULong, UInteger, DebugInfoFlags, IEnumerable(Of DINode), UInteger, String) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType) - id: CreateMemberType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.UInt64,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateMemberType(DIScope?, string, DIFile?, uint, ulong, uint, ulong, DebugInfoFlags, DIType?) - nameWithType: DIBuilder.CreateMemberType(DIScope?, string, DIFile?, uint, ulong, uint, ulong, DebugInfoFlags, DIType?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, ulong, uint, ulong, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateMemberType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 788 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a for a member of a type - example: [] - syntax: - content: public readonly DIDerivedType CreateMemberType(DIScope? scope, string name, DIFile? file, uint line, ulong bitSize, uint bitAlign, ulong bitOffset, DebugInfoFlags debugFlags, DIType? type) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing the member type - - id: name - type: System.String - description: Name of the member type - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the member type - - id: line - type: System.UInt32 - description: Line of the start of the member type - - id: bitSize - type: System.UInt64 - description: Size of the member type in bits - - id: bitAlign - type: System.UInt32 - description: Bit alignment of the member - - id: bitOffset - type: System.UInt64 - description: Bit offset of the member - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the type - - id: type - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: LLVM native type for the member type - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - description: - content.vb: Public Function CreateMemberType(scope As DIScope, name As String, file As DIFile, line As UInteger, bitSize As ULong, bitAlign As UInteger, bitOffset As ULong, debugFlags As DebugInfoFlags, type As DIType) As DIDerivedType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType* - nameWithType.vb: DIBuilder.CreateMemberType(DIScope, String, DIFile, UInteger, ULong, UInteger, ULong, DebugInfoFlags, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, ULong, UInteger, ULong, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: CreateMemberType(DIScope, String, DIFile, UInteger, ULong, UInteger, ULong, DebugInfoFlags, DIType) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - id: CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateArrayType(ulong, uint, DIType, DINodeArray) - nameWithType: DIBuilder.CreateArrayType(ulong, uint, DIType, DINodeArray) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DIType, Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 824 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug information for an array type - example: [] - syntax: - content: public readonly DICompositeType CreateArrayType(ulong bitSize, uint bitAlign, DIType elementType, DINodeArray subscripts) - parameters: - - id: bitSize - type: System.UInt64 - description: Size, in bits for the type - - id: bitAlign - type: System.UInt32 - description: Alignment in bits for the type - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Type of elements in the array - - id: subscripts - type: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - description: Dimensions for the array - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: for the array - content.vb: Public Function CreateArrayType(bitSize As ULong, bitAlign As UInteger, elementType As DIType, subscripts As DINodeArray) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType* - nameWithType.vb: DIBuilder.CreateArrayType(ULong, UInteger, DIType, DINodeArray) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - name.vb: CreateArrayType(ULong, UInteger, DIType, DINodeArray) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - id: CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateArrayType(ulong, uint, DIType, params DINode[]) - nameWithType: DIBuilder.CreateArrayType(ulong, uint, DIType, params DINode[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DIType, params Ubiquity.NET.Llvm.DebugInfo.DINode[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 836 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug information for an array type - example: [] - syntax: - content: public readonly DICompositeType CreateArrayType(ulong bitSize, uint bitAlign, DIType elementType, params DINode[] subscripts) - parameters: - - id: bitSize - type: System.UInt64 - description: Size, in bits for the type - - id: bitAlign - type: System.UInt32 - description: Alignment in bits for the type - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Type of elements in the array - - id: subscripts - type: Ubiquity.NET.Llvm.DebugInfo.DINode[] - description: Dimensions for the array - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: for the array - content.vb: Public Function CreateArrayType(bitSize As ULong, bitAlign As UInteger, elementType As DIType, ParamArray subscripts As DINode()) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType* - nameWithType.vb: DIBuilder.CreateArrayType(ULong, UInteger, DIType, ParamArray DINode()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, ParamArray Ubiquity.NET.Llvm.DebugInfo.DINode()) - name.vb: CreateArrayType(ULong, UInteger, DIType, ParamArray DINode()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - id: CreateArrayType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateArrayType(ulong, uint, DIType, IEnumerable) - nameWithType: DIBuilder.CreateArrayType(ulong, uint, DIType, IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DIType, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 847 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug information for an array type - example: [] - syntax: - content: public readonly DICompositeType CreateArrayType(ulong bitSize, uint bitAlign, DIType elementType, IEnumerable subscripts) - parameters: - - id: bitSize - type: System.UInt64 - description: Size, in bits for the type - - id: bitAlign - type: System.UInt32 - description: Alignment in bits for the type - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Type of elements in the array - - id: subscripts - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - description: Dimensions for the array - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: for the array - content.vb: Public Function CreateArrayType(bitSize As ULong, bitAlign As UInteger, elementType As DIType, subscripts As IEnumerable(Of DINode)) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType* - nameWithType.vb: DIBuilder.CreateArrayType(ULong, UInteger, DIType, IEnumerable(Of DINode)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType(ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode)) - name.vb: CreateArrayType(ULong, UInteger, DIType, IEnumerable(Of DINode)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - id: CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateVectorType(ulong, uint, DIType, DINodeArray) - nameWithType: DIBuilder.CreateVectorType(ulong, uint, DIType, DINodeArray) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DIType, Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateVectorType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 863 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug information for a vector type - example: [] - syntax: - content: public readonly DICompositeType CreateVectorType(ulong bitSize, uint bitAlign, DIType elementType, DINodeArray subscripts) - parameters: - - id: bitSize - type: System.UInt64 - description: Size, in bits for the type - - id: bitAlign - type: System.UInt32 - description: Alignment in bits for the type - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Type of elements in the Vector - - id: subscripts - type: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - description: Dimensions for the Vector - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: for the Vector - content.vb: Public Function CreateVectorType(bitSize As ULong, bitAlign As UInteger, elementType As DIType, subscripts As DINodeArray) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType* - nameWithType.vb: DIBuilder.CreateVectorType(ULong, UInteger, DIType, DINodeArray) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, Ubiquity.NET.Llvm.DebugInfo.DINodeArray) - name.vb: CreateVectorType(ULong, UInteger, DIType, DINodeArray) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - id: CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,Ubiquity.NET.Llvm.DebugInfo.DINode[]) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateVectorType(ulong, uint, DIType, params DINode[]) - nameWithType: DIBuilder.CreateVectorType(ulong, uint, DIType, params DINode[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DIType, params Ubiquity.NET.Llvm.DebugInfo.DINode[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateVectorType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 875 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug information for a vector type - example: [] - syntax: - content: public readonly DICompositeType CreateVectorType(ulong bitSize, uint bitAlign, DIType elementType, params DINode[] subscripts) - parameters: - - id: bitSize - type: System.UInt64 - description: Size, in bits for the type - - id: bitAlign - type: System.UInt32 - description: Alignment in bits for the type - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Type of elements in the Vector - - id: subscripts - type: Ubiquity.NET.Llvm.DebugInfo.DINode[] - description: Dimensions for the Vector - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: for the Vector - content.vb: Public Function CreateVectorType(bitSize As ULong, bitAlign As UInteger, elementType As DIType, ParamArray subscripts As DINode()) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType* - nameWithType.vb: DIBuilder.CreateVectorType(ULong, UInteger, DIType, ParamArray DINode()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, ParamArray Ubiquity.NET.Llvm.DebugInfo.DINode()) - name.vb: CreateVectorType(ULong, UInteger, DIType, ParamArray DINode()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - id: CreateVectorType(System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateVectorType(ulong, uint, DIType, IEnumerable) - nameWithType: DIBuilder.CreateVectorType(ulong, uint, DIType, IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DIType, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateVectorType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 886 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug information for a vector type - example: [] - syntax: - content: public readonly DICompositeType CreateVectorType(ulong bitSize, uint bitAlign, DIType elementType, IEnumerable subscripts) - parameters: - - id: bitSize - type: System.UInt64 - description: Size, in bits for the type - - id: bitAlign - type: System.UInt32 - description: Alignment in bits for the type - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Type of elements in the Vector - - id: subscripts - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - description: Dimensions for the Vector - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: for the Vector - content.vb: Public Function CreateVectorType(bitSize As ULong, bitAlign As UInteger, elementType As DIType, subscripts As IEnumerable(Of DINode)) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType* - nameWithType.vb: DIBuilder.CreateVectorType(ULong, UInteger, DIType, IEnumerable(Of DINode)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType(ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode)) - name.vb: CreateVectorType(ULong, UInteger, DIType, IEnumerable(Of DINode)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32) - id: CreateTypedef(Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateTypedef(DIType?, string, DIFile?, uint, DINode?, uint) - nameWithType: DIBuilder.CreateTypedef(DIType?, string, DIFile?, uint, DINode?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef(Ubiquity.NET.Llvm.DebugInfo.DIType?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DINode?, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateTypedef - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 904 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates debug information for a type definition (e.g. type alias) - example: [] - syntax: - content: public readonly DIDerivedType CreateTypedef(DIType? type, string name, DIFile? file, uint line, DINode? context, uint alignInBits) - parameters: - - id: type - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Debug information for the aliased type - - id: name - type: System.String - description: Name of the alias - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File for the declaration of the typedef - - id: line - type: System.UInt32 - description: line for the typedef - - id: context - type: Ubiquity.NET.Llvm.DebugInfo.DINode - description: ContextAlias for creating the typedef - - id: alignInBits - type: System.UInt32 - description: Bit alignment for the type - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - description: for the alias - content.vb: Public Function CreateTypedef(type As DIType, name As String, file As DIFile, line As UInteger, context As DINode, alignInBits As UInteger) As DIDerivedType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef* - nameWithType.vb: DIBuilder.CreateTypedef(DIType, String, DIFile, UInteger, DINode, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef(Ubiquity.NET.Llvm.DebugInfo.DIType, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DINode, UInteger) - name.vb: CreateTypedef(DIType, String, DIFile, UInteger, DINode, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange(System.Int64,System.Int64) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange(System.Int64,System.Int64) - id: CreateSubRange(System.Int64,System.Int64) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateSubRange(long, long) - nameWithType: DIBuilder.CreateSubRange(long, long) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange(long, long) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateSubRange - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 926 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a new - example: [] - syntax: - content: public readonly DISubRange CreateSubRange(long lowerBound, long count) - parameters: - - id: lowerBound - type: System.Int64 - description: Lower bounds of the - - id: count - type: System.Int64 - description: Count of elements in the sub range - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubRange - description: - content.vb: Public Function CreateSubRange(lowerBound As Long, count As Long) As DISubRange - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange* - nameWithType.vb: DIBuilder.CreateSubRange(Long, Long) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange(Long, Long) - name.vb: CreateSubRange(Long, Long) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - id: GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: GetOrCreateArray(IEnumerable) - nameWithType: DIBuilder.GetOrCreateArray(IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetOrCreateArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 941 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets or creates a node array with the specified elements - remarks: >- -
Note

- - As of LLVM 8.0 there's not much reason to manually construct a - - since use as an "in" parameter were superseded by overloads taking an actual array. - -

- example: [] - syntax: - content: public readonly DINodeArray GetOrCreateArray(IEnumerable elements) - parameters: - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - description: Elements of the array - return: - type: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - description: - content.vb: Public Function GetOrCreateArray(elements As IEnumerable(Of DINode)) As DINodeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray* - nameWithType.vb: DIBuilder.GetOrCreateArray(IEnumerable(Of DINode)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode)) - name.vb: GetOrCreateArray(IEnumerable(Of DINode)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[]) - id: GetOrCreateTypeArray(Ubiquity.NET.Llvm.DebugInfo.DIType[]) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: GetOrCreateTypeArray(params DIType[]) - nameWithType: DIBuilder.GetOrCreateTypeArray(params DIType[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(params Ubiquity.NET.Llvm.DebugInfo.DIType[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetOrCreateTypeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 956 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets or creates a Type array with the specified types - example: [] - syntax: - content: public readonly DITypeArray GetOrCreateTypeArray(params DIType[] types) - parameters: - - id: types - type: Ubiquity.NET.Llvm.DebugInfo.DIType[] - description: Types - return: - type: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - description: - content.vb: Public Function GetOrCreateTypeArray(ParamArray types As DIType()) As DITypeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray* - nameWithType.vb: DIBuilder.GetOrCreateTypeArray(ParamArray DIType()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(ParamArray Ubiquity.NET.Llvm.DebugInfo.DIType()) - name.vb: GetOrCreateTypeArray(ParamArray DIType()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - id: GetOrCreateTypeArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: GetOrCreateTypeArray(IEnumerable) - nameWithType: DIBuilder.GetOrCreateTypeArray(IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetOrCreateTypeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 961 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets or creates a Type array with the specified types - example: [] - syntax: - content: public readonly DITypeArray GetOrCreateTypeArray(IEnumerable types) - parameters: - - id: types - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Types - return: - type: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - description: - content.vb: Public Function GetOrCreateTypeArray(types As IEnumerable(Of DIType)) As DITypeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray* - nameWithType.vb: DIBuilder.GetOrCreateTypeArray(IEnumerable(Of DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray(System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: GetOrCreateTypeArray(IEnumerable(Of DIType)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue(System.String,System.Int64,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue(System.String,System.Int64,System.Boolean) - id: CreateEnumeratorValue(System.String,System.Int64,System.Boolean) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateEnumeratorValue(string, long, bool) - nameWithType: DIBuilder.CreateEnumeratorValue(string, long, bool) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue(string, long, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateEnumeratorValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 973 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a value for an enumeration - example: [] - syntax: - content: public readonly DIEnumerator CreateEnumeratorValue(string name, long value, bool isUnsigned = false) - parameters: - - id: name - type: System.String - description: Name of the value - - id: value - type: System.Int64 - description: Value of the enumerated value - - id: isUnsigned - type: System.Boolean - description: 'Indicates if the value is unsigned [Default: false]' - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - description: for the name, value pair - content.vb: Public Function CreateEnumeratorValue(name As String, value As Long, isUnsigned As Boolean = False) As DIEnumerator - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue* - nameWithType.vb: DIBuilder.CreateEnumeratorValue(String, Long, Boolean) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue(String, Long, Boolean) - name.vb: CreateEnumeratorValue(String, Long, Boolean) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIEnumerator},Ubiquity.NET.Llvm.DebugInfo.DIType) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIEnumerator},Ubiquity.NET.Llvm.DebugInfo.DIType) - id: CreateEnumerationType(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt64,System.UInt32,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIEnumerator},Ubiquity.NET.Llvm.DebugInfo.DIType) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateEnumerationType(DIScope?, string, DIFile?, uint, ulong, uint, IEnumerable, DIType?) - nameWithType: DIBuilder.CreateEnumerationType(DIScope?, string, DIFile?, uint, ulong, uint, IEnumerable, DIType?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType(Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, ulong, uint, System.Collections.Generic.IEnumerable, Ubiquity.NET.Llvm.DebugInfo.DIType?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateEnumerationType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 990 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates an enumeration type - example: [] - syntax: - content: public readonly DICompositeType CreateEnumerationType(DIScope? scope, string name, DIFile? file, uint lineNumber, ulong sizeInBits, uint alignInBits, IEnumerable elements, DIType? underlyingType) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Containing scope for the type - - id: name - type: System.String - description: source language name of the type (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: Source file containing the type - - id: lineNumber - type: System.UInt32 - description: Source file line number for the type - - id: sizeInBits - type: System.UInt64 - description: Size, in bits, for the type - - id: alignInBits - type: System.UInt32 - description: Alignment, in bits for the type - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIEnumerator} - description: elements for the type - - id: underlyingType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Underlying type for the enumerated type - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: for the enumerated type - content.vb: Public Function CreateEnumerationType(scope As DIScope, name As String, file As DIFile, lineNumber As UInteger, sizeInBits As ULong, alignInBits As UInteger, elements As IEnumerable(Of DIEnumerator), underlyingType As DIType) As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType* - nameWithType.vb: DIBuilder.CreateEnumerationType(DIScope, String, DIFile, UInteger, ULong, UInteger, IEnumerable(Of DIEnumerator), DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, ULong, UInteger, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIEnumerator), Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: CreateEnumerationType(DIScope, String, DIFile, UInteger, ULong, UInteger, IEnumerable(Of DIEnumerator), DIType) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression(Ubiquity.NET.Llvm.DebugInfo.DINode,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression(Ubiquity.NET.Llvm.DebugInfo.DINode,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32) - id: CreateGlobalVariableExpression(Ubiquity.NET.Llvm.DebugInfo.DINode,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DINode,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateGlobalVariableExpression(DINode?, string, string, DIFile?, uint, DIType?, bool, DIExpression?, DINode?, uint) - nameWithType: DIBuilder.CreateGlobalVariableExpression(DINode?, string, string, DIFile?, uint, DIType?, bool, DIExpression?, DINode?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression(Ubiquity.NET.Llvm.DebugInfo.DINode?, string, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DIType?, bool, Ubiquity.NET.Llvm.DebugInfo.DIExpression?, Ubiquity.NET.Llvm.DebugInfo.DINode?, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateGlobalVariableExpression - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1032 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a new - example: [] - syntax: - content: public readonly DIGlobalVariableExpression CreateGlobalVariableExpression(DINode? scope, string name, string linkageName, DIFile? file, uint lineNo, DIType? type, bool isLocalToUnit, DIExpression? value, DINode? declaration = null, uint bitAlign = 0) - parameters: - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DINode - description: Scope for the expression - - id: name - type: System.String - description: Source language name of the expression - - id: linkageName - type: System.String - description: Linkage name of the expression - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: Source file for the expression - - id: lineNo - type: System.UInt32 - description: Source Line number for the expression - - id: type - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: of the expression - - id: isLocalToUnit - type: System.Boolean - description: Flag to indicate if this is local to the compilation unit (e.g. static in C) - - id: value - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - description: for the variable - - id: declaration - type: Ubiquity.NET.Llvm.DebugInfo.DINode - description: for the declaration of the variable - - id: bitAlign - type: System.UInt32 - description: Bit alignment for the expression - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - description: from the parameters - content.vb: Public Function CreateGlobalVariableExpression(scope As DINode, name As String, linkageName As String, file As DIFile, lineNo As UInteger, type As DIType, isLocalToUnit As Boolean, value As DIExpression, declaration As DINode = Nothing, bitAlign As UInteger = 0) As DIGlobalVariableExpression - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression* - nameWithType.vb: DIBuilder.CreateGlobalVariableExpression(DINode, String, String, DIFile, UInteger, DIType, Boolean, DIExpression, DINode, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression(Ubiquity.NET.Llvm.DebugInfo.DINode, String, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, Boolean, Ubiquity.NET.Llvm.DebugInfo.DIExpression, Ubiquity.NET.Llvm.DebugInfo.DINode, UInteger) - name.vb: CreateGlobalVariableExpression(DINode, String, String, DIFile, UInteger, DIType, Boolean, DIExpression, DINode, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish(Ubiquity.NET.Llvm.DebugInfo.DISubProgram) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish(Ubiquity.NET.Llvm.DebugInfo.DISubProgram) - id: Finish(Ubiquity.NET.Llvm.DebugInfo.DISubProgram) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: Finish(DISubProgram) - nameWithType: DIBuilder.Finish(DISubProgram) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish(Ubiquity.NET.Llvm.DebugInfo.DISubProgram) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Finish - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1071 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Finalizes debug information for a single - example: [] - syntax: - content: public readonly void Finish(DISubProgram subProgram) - parameters: - - id: subProgram - type: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - description: to finalize debug information for - content.vb: Public Sub Finish(subProgram As DISubProgram) - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish - id: Finish - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: Finish() - nameWithType: DIBuilder.Finish() - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Finish - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1085 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Finalizes debug information for all items built by this builder - remarks: >- -
note

- The term "finalize" here is in the context of LLVM rather than the .NET concept of Finalization. - In particular this will trigger resolving temporaries and will complete the list of locals for - any functions. So, the only nodes allowed after this is called are those that are fully resolved. -

- example: [] - syntax: - content: public readonly void Finish() - content.vb: Public Sub Finish() - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - id: InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: InsertDeclare(Value, DILocalVariable, DILocation, Instruction) - nameWithType: DIBuilder.InsertDeclare(Value, DILocalVariable, DILocation, Instruction) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Instructions.Instruction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertDeclare - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Inserts an llvm.dbg.declare instruction before the given instruction - remarks: >- - This adds a call to the llvm.dbg.declare intrinsic. - - The call has no impact on the actual machine code generated, as it is removed or ignored for actual target instruction - - selection. Instead this provides a means to bind the LLVM Debug information metadata to a particular LLVM - - that allows the transformation and optimization passes to track the debug information. Thus, even with optimized code - - the actual debug information is retained. - example: [] - syntax: - content: public readonly DebugRecord InsertDeclare(Value storage, DILocalVariable varInfo, DILocation location, Instruction insertBefore) - parameters: - - id: storage - type: Ubiquity.NET.Llvm.Values.Value - description: Value the declaration is bound to - - id: varInfo - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: for storage - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: for the variable - - id: insertBefore - type: Ubiquity.NET.Llvm.Instructions.Instruction - description: to insert the declaration before - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - description: for the call to llvm.dbg.declare - content.vb: Public Function InsertDeclare(storage As Value, varInfo As DILocalVariable, location As DILocation, insertBefore As Instruction) As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare* - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#lvm-dbg-declare - altText: 'LLVM: llvm.dbg.declare' - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#source-level-debugging-with-llvm - altText: 'LLVM: Source Level Debugging with LLVM' -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - id: InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: InsertDeclare(Value, DILocalVariable, DIExpression, DILocation, Instruction) - nameWithType: DIBuilder.InsertDeclare(Value, DILocalVariable, DIExpression, DILocation, Instruction) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DIExpression, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Instructions.Instruction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertDeclare - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1150 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Inserts an llvm.dbg.declare instruction before the given instruction - remarks: >- - This adds a call to the llvm.dbg.declare intrinsic. - - The call has no impact on the actual machine code generated, as it is removed or ignored for actual target instruction - - selection. Instead this provides a means to bind the LLVM Debug information metadata to a particular LLVM - - that allows the transformation and optimization passes to track the debug information. Thus, even with optimized code - - the actual debug information is retained. - example: [] - syntax: - content: public readonly DebugRecord InsertDeclare(Value storage, DILocalVariable varInfo, DIExpression expression, DILocation location, Instruction insertBefore) - parameters: - - id: storage - type: Ubiquity.NET.Llvm.Values.Value - description: Value the declaration is bound to - - id: varInfo - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: for storage - - id: expression - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - description: for a debugger to use when extracting the value - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: for the variable - - id: insertBefore - type: Ubiquity.NET.Llvm.Instructions.Instruction - description: to insert the declaration before - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - description: for the call to llvm.dbg.declare - content.vb: Public Function InsertDeclare(storage As Value, varInfo As DILocalVariable, expression As DIExpression, location As DILocation, insertBefore As Instruction) As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare* - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#lvm-dbg-declare - altText: 'LLVM: llvm.dbg.declare' - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#source-level-debugging-with-llvm - altText: 'LLVM: Source Level Debugging with LLVM' -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - id: InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: InsertDeclare(Value, DILocalVariable, DILocation, BasicBlock) - nameWithType: DIBuilder.InsertDeclare(Value, DILocalVariable, DILocation, BasicBlock) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertDeclare - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1189 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Inserts a DebugRecord before the given instruction - remarks: >- - This adds a call to the llvm.dbg.declare intrinsic. - - The call has no impact on the actual machine code generated, as it is removed or ignored for actual target instruction - - selection. Instead this provides a means to bind the LLVM Debug information metadata to a particular LLVM - - that allows the transformation and optimization passes to track the debug information. Thus, even with optimized code - - the actual debug information is retained. - example: [] - syntax: - content: public readonly DebugRecord InsertDeclare(Value storage, DILocalVariable varInfo, DILocation location, BasicBlock insertAtEnd) - parameters: - - id: storage - type: Ubiquity.NET.Llvm.Values.Value - description: Value the declaration is bound to - - id: varInfo - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: for storage - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: for the variable - - id: insertAtEnd - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: to insert the declaration at the end of - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - description: for the call to llvm.dbg.declare - content.vb: Public Function InsertDeclare(storage As Value, varInfo As DILocalVariable, location As DILocation, insertAtEnd As BasicBlock) As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare* - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#lvm-dbg-declare - altText: 'LLVM: llvm.dbg.declare' - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#source-level-debugging-with-llvm - altText: 'LLVM: Source Level Debugging with LLVM' -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - id: InsertDeclare(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: InsertDeclare(Value, DILocalVariable, DIExpression, DILocation, BasicBlock) - nameWithType: DIBuilder.InsertDeclare(Value, DILocalVariable, DIExpression, DILocation, BasicBlock) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DIExpression, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertDeclare - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1212 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Inserts a debug record before the given instruction - remarks: >- - This adds a call to the llvm.dbg.declare intrinsic. - -
note

- - The call has no impact on the actual machine code generated, as it is removed or ignored for actual target instruction - - selection. Instead this provides a means to bind the LLVM Debug information metadata to a particular LLVM - - that allows the transformation and optimization passes to track the debug information. Thus, even with optimized code - - the actual debug information is retained. - -

- example: [] - syntax: - content: public readonly DebugRecord InsertDeclare(Value storage, DILocalVariable varInfo, DIExpression expression, DILocation location, BasicBlock insertAtEnd) - parameters: - - id: storage - type: Ubiquity.NET.Llvm.Values.Value - description: Value the declaration is bound to - - id: varInfo - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: for storage - - id: expression - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - description: for a debugger to use when extracting the value - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: for the variable - - id: insertAtEnd - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: to insert the declaration at the end of - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - description: for the call to llvm.dbg.declare - content.vb: Public Function InsertDeclare(storage As Value, varInfo As DILocalVariable, expression As DIExpression, location As DILocation, insertAtEnd As BasicBlock) As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare* - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#lvm-dbg-declare - altText: 'LLVM: llvm.dbg.declare' - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#source-level-debugging-with-llvm - altText: 'LLVM: Source Level Debugging with LLVM' -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - id: InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: InsertValue(Value, DILocalVariable, DILocation, Instruction) - nameWithType: DIBuilder.InsertValue(Value, DILocalVariable, DILocation, Instruction) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Instructions.Instruction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1254 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Inserts a debug record before the specified instruction - remarks: >- - This intrinsic provides information when a user source variable is set to a new value. - -
note

- - The call has no impact on the actual machine code generated, as it is removed or ignored for actual target instruction - - selection. Instead this provides a means to bind the LLVM Debug information metadata to a particular LLVM - - that allows the transformation and optimization passes to track the debug information. Thus, even with optimized code - - the actual debug information is retained. - -

- example: [] - syntax: - content: public readonly DebugRecord InsertValue(Value value, DILocalVariable varInfo, DILocation location, Instruction insertBefore) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: New value - - id: varInfo - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: describing the variable - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: for the assignment - - id: insertBefore - type: Ubiquity.NET.Llvm.Instructions.Instruction - description: Location to insert the intrinsic - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - description: for the intrinsic - content.vb: Public Function InsertValue(value As Value, varInfo As DILocalVariable, location As DILocation, insertBefore As Instruction) As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue* - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#lvm-dbg-value - altText: 'LLVM: llvm.dbg.value' - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#source-level-debugging-with-llvm - altText: 'LLVM: Source Level Debugging with LLVM' -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - id: InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Instructions.Instruction) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: InsertValue(Value, DILocalVariable, DIExpression?, DILocation, Instruction) - nameWithType: DIBuilder.InsertValue(Value, DILocalVariable, DIExpression?, DILocation, Instruction) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DIExpression?, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Instructions.Instruction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1281 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Inserts a call to the llvm.dbg.value intrinsic before the specified instruction - remarks: >- - This intrinsic provides information when a user source variable is set to a new value. - -
note

- - The call has no impact on the actual machine code generated, as it is removed or ignored for actual target instruction - - selection. Instead this provides a means to bind the LLVM Debug information metadata to a particular LLVM - - that allows the transformation and optimization passes to track the debug information. Thus, even with optimized code - - the actual debug information is retained. - -

- example: [] - syntax: - content: public readonly DebugRecord InsertValue(Value value, DILocalVariable varInfo, DIExpression? expression, DILocation location, Instruction insertBefore) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: New value - - id: varInfo - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: describing the variable - - id: expression - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - description: for the variable - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: for the assignment - - id: insertBefore - type: Ubiquity.NET.Llvm.Instructions.Instruction - description: Location to insert the intrinsic - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - description: for the intrinsic - content.vb: Public Function InsertValue(value As Value, varInfo As DILocalVariable, expression As DIExpression, location As DILocation, insertBefore As Instruction) As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue* - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#lvm-dbg-value - altText: 'LLVM: llvm.dbg.value' - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#source-level-debugging-with-llvm - altText: 'LLVM: Source Level Debugging with LLVM' - nameWithType.vb: DIBuilder.InsertValue(Value, DILocalVariable, DIExpression, DILocation, Instruction) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DIExpression, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Instructions.Instruction) - name.vb: InsertValue(Value, DILocalVariable, DIExpression, DILocation, Instruction) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - id: InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: InsertValue(Value, DILocalVariable, DILocation, BasicBlock) - nameWithType: DIBuilder.InsertValue(Value, DILocalVariable, DILocation, BasicBlock) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1322 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Inserts a call to the llvm.dbg.value intrinsic at the end of a basic block - remarks: >- - This intrinsic provides information when a user source variable is set to a new value. - -
note

- - The call has no impact on the actual machine code generated, as it is removed or ignored for actual target instruction - - selection. Instead this provides a means to bind the LLVM Debug information metadata to a particular LLVM - - that allows the transformation and optimization passes to track the debug information. Thus, even with optimized code - - the actual debug information is retained. - -

- example: [] - syntax: - content: public readonly DebugRecord InsertValue(Value value, DILocalVariable varInfo, DILocation location, BasicBlock insertAtEnd) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: New value - - id: varInfo - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: describing the variable - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: for the assignment - - id: insertAtEnd - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Block to append the intrinsic to the end of - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - description: The debug record - content.vb: Public Function InsertValue(value As Value, varInfo As DILocalVariable, location As DILocation, insertAtEnd As BasicBlock) As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue* - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#lvm-dbg-value - altText: 'LLVM: llvm.dbg.value' - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#source-level-debugging-with-llvm - altText: 'LLVM: Source Level Debugging with LLVM' -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - id: InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.DebugInfo.DILocalVariable,Ubiquity.NET.Llvm.DebugInfo.DIExpression,Ubiquity.NET.Llvm.DebugInfo.DILocation,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: InsertValue(Value, DILocalVariable, DIExpression?, DILocation, BasicBlock) - nameWithType: DIBuilder.InsertValue(Value, DILocalVariable, DIExpression?, DILocation, BasicBlock) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DIExpression?, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1349 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Inserts a DebugRecord at the end of a basic block - remarks: >- - This intrinsic provides information when a user source variable is set to a new value. - -
note

- - The call has no impact on the actual machine code generated, as it is removed or ignored for actual target instruction - - selection. Instead, this provides a means to bind the LLVM Debug information metadata to a particular LLVM - - that allows the transformation and optimization passes to track the debug information. Thus, even with optimized code - - the actual debug information is retained. - -

- example: [] - syntax: - content: public readonly DebugRecord InsertValue(Value value, DILocalVariable varInfo, DIExpression? expression, DILocation location, BasicBlock insertAtEnd) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: New value - - id: varInfo - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - description: describing the variable - - id: expression - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - description: for the variable - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: for the assignment - - id: insertAtEnd - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Block to append the intrinsic to the end of - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - description: The Debug record - content.vb: Public Function InsertValue(value As Value, varInfo As DILocalVariable, expression As DIExpression, location As DILocation, insertAtEnd As BasicBlock) As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue* - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#lvm-dbg-value - altText: 'LLVM: llvm.dbg.value' - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#source-level-debugging-with-llvm - altText: 'LLVM: Source Level Debugging with LLVM' - nameWithType.vb: DIBuilder.InsertValue(Value, DILocalVariable, DIExpression, DILocation, BasicBlock) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.DebugInfo.DILocalVariable, Ubiquity.NET.Llvm.DebugInfo.DIExpression, Ubiquity.NET.Llvm.DebugInfo.DILocation, Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: InsertValue(Value, DILocalVariable, DIExpression, DILocation, BasicBlock) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[]) - id: CreateExpression(Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[]) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateExpression(params ExpressionOp[]) - nameWithType: DIBuilder.CreateExpression(params ExpressionOp[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(params Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateExpression - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1386 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a from the provided s - example: [] - syntax: - content: public readonly DIExpression CreateExpression(params ExpressionOp[] operations) - parameters: - - id: operations - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[] - description: Operation sequence for the expression - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - description: - content.vb: Public Function CreateExpression(ParamArray operations As ExpressionOp()) As DIExpression - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression* - nameWithType.vb: DIBuilder.CreateExpression(ParamArray ExpressionOp()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(ParamArray Ubiquity.NET.Llvm.DebugInfo.ExpressionOp()) - name.vb: CreateExpression(ParamArray ExpressionOp()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.ExpressionOp}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.ExpressionOp}) - id: CreateExpression(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.ExpressionOp}) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateExpression(IEnumerable) - nameWithType: DIBuilder.CreateExpression(IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateExpression - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1394 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a from the provided s - example: [] - syntax: - content: public readonly DIExpression CreateExpression(IEnumerable operations) - parameters: - - id: operations - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.ExpressionOp} - description: Operation sequence for the expression - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - description: - content.vb: Public Function CreateExpression(operations As IEnumerable(Of ExpressionOp)) As DIExpression - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression* - nameWithType.vb: DIBuilder.CreateExpression(IEnumerable(Of ExpressionOp)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression(System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.ExpressionOp)) - name.vb: CreateExpression(IEnumerable(Of ExpressionOp)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression(System.UInt64) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression(System.UInt64) - id: CreateConstantValueExpression(System.UInt64) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateConstantValueExpression(ulong) - nameWithType: DIBuilder.CreateConstantValueExpression(ulong) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression(ulong) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstantValueExpression - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1404 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a for a constant value - example: [] - syntax: - content: public readonly DIExpression CreateConstantValueExpression(ulong value) - parameters: - - id: value - type: System.UInt64 - description: Value of the expression - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - description: - content.vb: Public Function CreateConstantValueExpression(value As ULong) As DIExpression - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression* - nameWithType.vb: DIBuilder.CreateConstantValueExpression(ULong) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression(ULong) - name.vb: CreateConstantValueExpression(ULong) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType(Ubiquity.NET.Llvm.DebugInfo.Tag,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.String) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType(Ubiquity.NET.Llvm.DebugInfo.Tag,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.String) - id: CreateReplaceableCompositeType(Ubiquity.NET.Llvm.DebugInfo.Tag,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,System.UInt32,System.UInt64,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.String) - parent: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - langs: - - csharp - - vb - name: CreateReplaceableCompositeType(Tag, string, DIScope?, DIFile?, uint, uint, ulong, uint, DebugInfoFlags, string) - nameWithType: DIBuilder.CreateReplaceableCompositeType(Tag, string, DIScope?, DIFile?, uint, uint, ulong, uint, DebugInfoFlags, string) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType(Ubiquity.NET.Llvm.DebugInfo.Tag, string, Ubiquity.NET.Llvm.DebugInfo.DIScope?, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, uint, ulong, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateReplaceableCompositeType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 1422 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a replaceable composite type - example: [] - syntax: - content: public readonly DICompositeType CreateReplaceableCompositeType(Tag tag, string name, DIScope? scope, DIFile? file, uint line, uint lang = 0, ulong sizeInBits = 0, uint alignBits = 0, DebugInfoFlags flags = DebugInfoFlags.None, string uniqueId = "") - parameters: - - id: tag - type: Ubiquity.NET.Llvm.DebugInfo.Tag - description: Debug information for the composite type (only values for a composite type are allowed) - - id: name - type: System.String - description: Name of the type (use for anonymous types) - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope of the type - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: Source file for the type - - id: line - type: System.UInt32 - description: Source line for the type - - id: lang - type: System.UInt32 - description: Source language the type is defined in - - id: sizeInBits - type: System.UInt64 - description: size of the type in bits - - id: alignBits - type: System.UInt32 - description: alignment of the type in bits - - id: flags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for the type - - id: uniqueId - type: System.String - description: Unique identifier for the type - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - description: - content.vb: Public Function CreateReplaceableCompositeType(tag As Tag, name As String, scope As DIScope, file As DIFile, line As UInteger, lang As UInteger = 0, sizeInBits As ULong = 0, alignBits As UInteger = 0, flags As DebugInfoFlags = DebugInfoFlags.None, uniqueId As String = "") As DICompositeType - overload: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType* - nameWithType.vb: DIBuilder.CreateReplaceableCompositeType(Tag, String, DIScope, DIFile, UInteger, UInteger, ULong, UInteger, DebugInfoFlags, String) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType(Ubiquity.NET.Llvm.DebugInfo.Tag, String, Ubiquity.NET.Llvm.DebugInfo.DIScope, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, UInteger, ULong, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, String) - name.vb: CreateReplaceableCompositeType(Tag, String, DIScope, DIFile, UInteger, UInteger, ULong, UInteger, DebugInfoFlags, String) -references: -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_Finish - name: Finish() - nameWithType: DIBuilder.Finish() - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish - name: Finish - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_Finish - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish - name: Finish - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_Finish - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder__ctor_Ubiquity_NET_Llvm_Module_ - name: DIBuilder - nameWithType: DIBuilder.DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.DIBuilder - nameWithType.vb: DIBuilder.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.New - name.vb: New -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_Dispose - name: Dispose - nameWithType: DIBuilder.Dispose - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Dispose -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_OwningModule - name: OwningModule - nameWithType: DIBuilder.OwningModule - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.OwningModule -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IModule.html - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CompileUnit - name: CompileUnit - nameWithType: DIBuilder.CompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CompileUnit -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html - name: DICompileUnit - nameWithType: DICompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - commentId: T:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.html - name: SourceLanguage - nameWithType: SourceLanguage - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateCompileUnit_Ubiquity_NET_Llvm_DebugInfo_SourceLanguage_System_String_System_String_System_Boolean_System_String_System_UInt32_ - name: CreateCompileUnit - nameWithType: DIBuilder.CreateCompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateCompileUnit -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.String.Empty - commentId: F:System.String.Empty - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string.empty - name: Empty - nameWithType: string.Empty - fullName: string.Empty - nameWithType.vb: String.Empty - fullName.vb: String.Empty -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.html - name: DIMacroFile - nameWithType: DIMacroFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateMacro_Ubiquity_NET_Llvm_DebugInfo_DIMacroFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_MacroKind_System_String_System_String_ - name: CreateMacro(DIMacroFile, uint, MacroKind, string, string) - nameWithType: DIBuilder.CreateMacro(DIMacroFile, uint, MacroKind, string, string) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile, uint, Ubiquity.NET.Llvm.DebugInfo.MacroKind, string, string) - nameWithType.vb: DIBuilder.CreateMacro(DIMacroFile, UInteger, MacroKind, String, String) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.MacroKind, String, String) - name.vb: CreateMacro(DIMacroFile, UInteger, MacroKind, String, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String) - name: CreateMacro - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateMacro_Ubiquity_NET_Llvm_DebugInfo_DIMacroFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_MacroKind_System_String_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - name: DIMacroFile - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind - name: MacroKind - href: Ubiquity.NET.Llvm.DebugInfo.MacroKind.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro(Ubiquity.NET.Llvm.DebugInfo.DIMacroFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.MacroKind,System.String,System.String) - name: CreateMacro - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateMacro_Ubiquity_NET_Llvm_DebugInfo_DIMacroFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_MacroKind_System_String_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - name: DIMacroFile - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind - name: MacroKind - href: Ubiquity.NET.Llvm.DebugInfo.MacroKind.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateTempMacroFile_Ubiquity_NET_Llvm_DebugInfo_DIMacroFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIFile_ - name: CreateTempMacroFile - nameWithType: DIBuilder.CreateTempMacroFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTempMacroFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind.Undefine - commentId: F:Ubiquity.NET.Llvm.DebugInfo.MacroKind.Undefine - href: Ubiquity.NET.Llvm.DebugInfo.MacroKind.html#Ubiquity_NET_Llvm_DebugInfo_MacroKind_Undefine - name: Undefine - nameWithType: MacroKind.Undefine - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind.Undefine -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateMacro_Ubiquity_NET_Llvm_DebugInfo_DIMacroFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_MacroKind_System_String_System_String_ - name: CreateMacro - nameWithType: DIBuilder.CreateMacro - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMacro -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.MacroKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.MacroKind.html - name: MacroKind - nameWithType: MacroKind - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacro - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacro - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacro.html - name: DIMacro - nameWithType: DIMacro - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacro -- uid: Ubiquity.NET.Llvm.DebugInfo.DINamespace - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINamespace - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINamespace.html - name: DINamespace - nameWithType: DINamespace - fullName: Ubiquity.NET.Llvm.DebugInfo.DINamespace -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateNamespace_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_System_Boolean_ - name: CreateNamespace - nameWithType: DIBuilder.CreateNamespace - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateNamespace -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateFile_System_String_ - name: CreateFile - nameWithType: DIBuilder.CreateFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock.html - name: DILexicalBlock - nameWithType: DILexicalBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateLexicalBlock_Ubiquity_NET_Llvm_DebugInfo_DIScope_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_System_UInt32_ - name: CreateLexicalBlock - nameWithType: DIBuilder.CreateLexicalBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlock -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile.html - name: DILexicalBlockFile - nameWithType: DILexicalBlockFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateLexicalBlockFile_Ubiquity_NET_Llvm_DebugInfo_DIScope_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_ - name: CreateLexicalBlockFile - nameWithType: DIBuilder.CreateLexicalBlockFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLexicalBlockFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubProgram - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html - name: DISubProgram - nameWithType: DISubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html - name: DISubroutineType - nameWithType: DISubroutineType - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DISubroutineType_System_Boolean_System_Boolean_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_Boolean_Ubiquity_NET_Llvm_Values_Function_ - name: CreateFunction - nameWithType: DIBuilder.CreateFunction - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateFunction -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_ForwardDeclareFunction_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DISubroutineType_System_Boolean_System_Boolean_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_Boolean_ - name: ForwardDeclareFunction - nameWithType: DIBuilder.ForwardDeclareFunction - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.ForwardDeclareFunction -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - name: DILocalVariable - nameWithType: DILocalVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateLocalVariable_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIType_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_UInt32_ - name: CreateLocalVariable - nameWithType: DIBuilder.CreateLocalVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateLocalVariable -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateArgument_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIType_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_UInt16_ - name: CreateArgument - nameWithType: DIBuilder.CreateArgument - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument -- uid: System.UInt16 - commentId: T:System.UInt16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort - nameWithType: ushort - fullName: ushort - nameWithType.vb: UShort - fullName.vb: UShort - name.vb: UShort -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.html - name: DiTypeKind - nameWithType: DiTypeKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateBasicType_System_String_System_UInt64_Ubiquity_NET_Llvm_DebugInfo_DiTypeKind_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_ - name: CreateBasicType - nameWithType: DIBuilder.CreateBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateBasicType -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBasicType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.html - name: DIBasicType - nameWithType: DIBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBasicType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIType_System_String_System_UInt64_System_UInt32_System_UInt32_ - name: CreatePointerType - nameWithType: DIBuilder.CreatePointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreatePointerType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html - name: DIDerivedType - nameWithType: DIDerivedType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType -- uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.None - commentId: F:Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.None - href: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.html#Ubiquity_NET_Llvm_DebugInfo_QualifiedTypeTag_None - name: None - nameWithType: QualifiedTypeTag.None - fullName: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.None -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateQualifiedType_Ubiquity_NET_Llvm_DebugInfo_DIType_Ubiquity_NET_Llvm_DebugInfo_QualifiedTypeTag_ - name: CreateQualifiedType - nameWithType: DIBuilder.CreateQualifiedType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateQualifiedType -- uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.html - name: QualifiedTypeTag - nameWithType: QualifiedTypeTag - fullName: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateTypeArray_Ubiquity_NET_Llvm_DebugInfo_DIType___ - name: CreateTypeArray - nameWithType: DIBuilder.CreateTypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType[] - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType[] - nameWithType: DIType[] - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType[] - nameWithType.vb: DIType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIType() - name.vb: DIType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITypeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITypeArray.html - name: DITypeArray - nameWithType: DITypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITypeArray -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DIType) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IEnumerable(Of DIType) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateSubroutineType_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_Ubiquity_NET_Llvm_DebugInfo_DIType___ - name: CreateSubroutineType - nameWithType: DIBuilder.CreateSubroutineType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubroutineType -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - name: DICompositeType - nameWithType: DICompositeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateStructType_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_System_UInt64_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_Ubiquity_NET_Llvm_DebugInfo_DIType_Ubiquity_NET_Llvm_DebugInfo_DINode___ - name: CreateStructType - nameWithType: DIBuilder.CreateStructType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateStructType -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode[] - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode[] - nameWithType: DINode[] - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode[] - nameWithType.vb: DINode() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DINode() - name.vb: DINode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DINode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IEnumerable(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateUnionType_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_System_UInt64_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_Ubiquity_NET_Llvm_DebugInfo_DINodeArray_ - name: CreateUnionType - nameWithType: DIBuilder.CreateUnionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateUnionType -- uid: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINodeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINodeArray.html - name: DINodeArray - nameWithType: DINodeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DINodeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateMemberType_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_System_UInt64_System_UInt32_System_UInt64_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_Ubiquity_NET_Llvm_DebugInfo_DIType_ - name: CreateMemberType - nameWithType: DIBuilder.CreateMemberType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateMemberType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateArrayType_System_UInt64_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIType_Ubiquity_NET_Llvm_DebugInfo_DINodeArray_ - name: CreateArrayType - nameWithType: DIBuilder.CreateArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArrayType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateVectorType_System_UInt64_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIType_Ubiquity_NET_Llvm_DebugInfo_DINodeArray_ - name: CreateVectorType - nameWithType: DIBuilder.CreateVectorType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateVectorType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateTypedef_Ubiquity_NET_Llvm_DebugInfo_DIType_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DINode_System_UInt32_ - name: CreateTypedef - nameWithType: DIBuilder.CreateTypedef - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateTypedef -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubRange - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubRange.html - name: DISubRange - nameWithType: DISubRange - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateSubRange_System_Int64_System_Int64_ - name: CreateSubRange - nameWithType: DIBuilder.CreateSubRange - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateSubRange -- uid: System.Int64 - commentId: T:System.Int64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long - nameWithType: long - fullName: long - nameWithType.vb: Long - fullName.vb: Long - name.vb: Long -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_GetOrCreateArray_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_DINode__ - name: GetOrCreateArray - nameWithType: DIBuilder.GetOrCreateArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_GetOrCreateTypeArray_Ubiquity_NET_Llvm_DebugInfo_DIType___ - name: GetOrCreateTypeArray - nameWithType: DIBuilder.GetOrCreateTypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateTypeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.html - name: DIEnumerator - nameWithType: DIEnumerator - fullName: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateEnumeratorValue_System_String_System_Int64_System_Boolean_ - name: CreateEnumeratorValue - nameWithType: DIBuilder.CreateEnumeratorValue - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumeratorValue -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateEnumerationType_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_System_UInt64_System_UInt32_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_DIEnumerator__Ubiquity_NET_Llvm_DebugInfo_DIType_ - name: CreateEnumerationType - nameWithType: DIBuilder.CreateEnumerationType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateEnumerationType -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIEnumerator} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIEnumerator} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DIEnumerator) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIEnumerator) - name.vb: IEnumerable(Of DIEnumerator) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - name: DIEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - name: DIEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.html - name: DIGlobalVariableExpression - nameWithType: DIGlobalVariableExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateGlobalVariableExpression_Ubiquity_NET_Llvm_DebugInfo_DINode_System_String_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIType_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_DIExpression_Ubiquity_NET_Llvm_DebugInfo_DINode_System_UInt32_ - name: CreateGlobalVariableExpression - nameWithType: DIBuilder.CreateGlobalVariableExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateGlobalVariableExpression -- uid: Ubiquity.NET.Llvm.DebugInfo.DIExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIExpression - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIExpression.html - name: DIExpression - nameWithType: DIExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIExpression -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_Finish_Ubiquity_NET_Llvm_DebugInfo_DISubProgram_ - name: Finish - nameWithType: DIBuilder.Finish - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.Finish -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocation - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html - name: DILocation - nameWithType: DILocation - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_InsertDeclare_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_DebugInfo_DILocalVariable_Ubiquity_NET_Llvm_DebugInfo_DILocation_Ubiquity_NET_Llvm_Instructions_Instruction_ - name: InsertDeclare - nameWithType: DIBuilder.InsertDeclare - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugRecord - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html - name: DebugRecord - nameWithType: DebugRecord - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_InsertValue_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_DebugInfo_DILocalVariable_Ubiquity_NET_Llvm_DebugInfo_DILocation_Ubiquity_NET_Llvm_Instructions_Instruction_ - name: InsertValue - nameWithType: DIBuilder.InsertValue - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertValue -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - commentId: T:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.html - name: ExpressionOp - nameWithType: ExpressionOp - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateExpression_Ubiquity_NET_Llvm_DebugInfo_ExpressionOp___ - name: CreateExpression - nameWithType: DIBuilder.CreateExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateExpression -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[] - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.html - name: ExpressionOp[] - nameWithType: ExpressionOp[] - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp[] - nameWithType.vb: ExpressionOp() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp() - name.vb: ExpressionOp() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - name: ExpressionOp - href: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - name: ExpressionOp - href: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.html - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.ExpressionOp} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.ExpressionOp} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of ExpressionOp) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.ExpressionOp) - name.vb: IEnumerable(Of ExpressionOp) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - name: ExpressionOp - href: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - name: ExpressionOp - href: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateConstantValueExpression_System_UInt64_ - name: CreateConstantValueExpression - nameWithType: DIBuilder.CreateConstantValueExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateConstantValueExpression -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.Tag - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.Tag.html - name: Tag - nameWithType: Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateReplaceableCompositeType_Ubiquity_NET_Llvm_DebugInfo_Tag_System_String_Ubiquity_NET_Llvm_DebugInfo_DIScope_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_System_UInt32_System_UInt64_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_String_ - name: CreateReplaceableCompositeType - nameWithType: DIBuilder.CreateReplaceableCompositeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateReplaceableCompositeType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml deleted file mode 100644 index 9819a16962..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.yml +++ /dev/null @@ -1,1064 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - id: DICompileUnit - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName - langs: - - csharp - - vb - name: DICompileUnit - nameWithType: DICompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DICompileUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug Information Compile Unit, which acts as the containing parent for debug information in a module - example: [] - syntax: - content: 'public class DICompileUnit : DIScope, IEquatable' - content.vb: Public Class DICompileUnit Inherits DIScope Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dicompileunit - altText: LLVM DICompileUnit - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind - id: EmissionKind - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: EmissionKind - nameWithType: DICompileUnit.EmissionKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EmissionKind - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the emission kind for this compile unit - example: [] - syntax: - content: public DwarfEmissionKind EmissionKind { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - content.vb: Public ReadOnly Property EmissionKind As DwarfEmissionKind - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer - id: Producer - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: Producer - nameWithType: DICompileUnit.Producer - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Producer - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the producer of this unit - example: [] - syntax: - content: public string Producer { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Producer As String - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags - id: Flags - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: Flags - nameWithType: DICompileUnit.Flags - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Flags - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the compilation flags for this unit - example: [] - syntax: - content: public string Flags { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Flags As String - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName - id: SplitDebugFileName - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: SplitDebugFileName - nameWithType: DICompileUnit.SplitDebugFileName - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SplitDebugFileName - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the split debug file name for this unit - example: [] - syntax: - content: public string SplitDebugFileName { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property SplitDebugFileName As String - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes - id: EnumTypes - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: EnumTypes - nameWithType: DICompileUnit.EnumTypes - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EnumTypes - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the enum types in this unit - example: [] - syntax: - content: public DICompositeTypeArray EnumTypes { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - content.vb: Public ReadOnly Property EnumTypes As DICompositeTypeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes - id: RetainedTypes - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: RetainedTypes - nameWithType: DICompileUnit.RetainedTypes - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RetainedTypes - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the retained types for this unit - example: [] - syntax: - content: public DIScopeArray RetainedTypes { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - content.vb: Public ReadOnly Property RetainedTypes As DIScopeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables - id: GlobalVariables - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: GlobalVariables - nameWithType: DICompileUnit.GlobalVariables - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalVariables - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the global variable expressions for this unit - example: [] - syntax: - content: public DIGlobalVariableExpressionArray GlobalVariables { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - content.vb: Public ReadOnly Property GlobalVariables As DIGlobalVariableExpressionArray - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities - id: ImportedEntities - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: ImportedEntities - nameWithType: DICompileUnit.ImportedEntities - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImportedEntities - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the imported entities for this unit - example: [] - syntax: - content: public DIImportedEntityArray ImportedEntities { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - content.vb: Public ReadOnly Property ImportedEntities As DIImportedEntityArray - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros - id: Macros - parent: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - langs: - - csharp - - vb - name: Macros - nameWithType: DICompileUnit.Macros - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Macros - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the macro information for the compile unit - example: [] - syntax: - content: public DIMacroNodeArray Macros { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - content.vb: Public ReadOnly Property Macros As DIMacroNodeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_EmissionKind - name: EmissionKind - nameWithType: DICompileUnit.EmissionKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EmissionKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.html - name: DwarfEmissionKind - nameWithType: DwarfEmissionKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_Producer - name: Producer - nameWithType: DICompileUnit.Producer - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Producer -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_Flags - name: Flags - nameWithType: DICompileUnit.Flags - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Flags -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_SplitDebugFileName - name: SplitDebugFileName - nameWithType: DICompileUnit.SplitDebugFileName - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.SplitDebugFileName -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_EnumTypes - name: EnumTypes - nameWithType: DICompileUnit.EnumTypes - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.EnumTypes -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray.html - name: DICompositeTypeArray - nameWithType: DICompositeTypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_RetainedTypes - name: RetainedTypes - nameWithType: DICompileUnit.RetainedTypes - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.RetainedTypes -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray.html - name: DIScopeArray - nameWithType: DIScopeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_GlobalVariables - name: GlobalVariables - nameWithType: DICompileUnit.GlobalVariables - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.GlobalVariables -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray.html - name: DIGlobalVariableExpressionArray - nameWithType: DIGlobalVariableExpressionArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_ImportedEntities - name: ImportedEntities - nameWithType: DICompileUnit.ImportedEntities - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.ImportedEntities -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray.html - name: DIImportedEntityArray - nameWithType: DIImportedEntityArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html#Ubiquity_NET_Llvm_DebugInfo_DICompileUnit_Macros - name: Macros - nameWithType: DICompileUnit.Macros - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.Macros -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray.html - name: DIMacroNodeArray - nameWithType: DIMacroNodeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml deleted file mode 100644 index 940f91b2d6..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompositeType.yml +++ /dev/null @@ -1,984 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeType - id: DICompositeType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType - - Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator - - Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements - - Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier - - Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters - - Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder - langs: - - csharp - - vb - name: DICompositeType - nameWithType: DICompositeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DICompositeType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a composite type - example: [] - syntax: - content: 'public class DICompositeType : DIType, IEquatable' - content.vb: Public Class DICompositeType Inherits DIType Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dicompositetype - altText: LLVM DICompositeType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DIType - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIType.Name - - Ubiquity.NET.Llvm.DebugInfo.DIType.Line - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - - Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType - id: BaseType - parent: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - langs: - - csharp - - vb - name: BaseType - nameWithType: DICompositeType.BaseType - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BaseType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the base type for this type, if any - example: [] - syntax: - content: public DIType? BaseType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIType - content.vb: Public ReadOnly Property BaseType As DIType - overload: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements - id: Elements - parent: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - langs: - - csharp - - vb - name: Elements - nameWithType: DICompositeType.Elements - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Elements - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the elements of this - example: [] - syntax: - content: public DINodeArray Elements { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - content.vb: Public ReadOnly Property Elements As DINodeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder - id: VTableHolder - parent: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - langs: - - csharp - - vb - name: VTableHolder - nameWithType: DICompositeType.VTableHolder - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VTableHolder - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the type that holds the VTable for this type, if any - example: [] - syntax: - content: public DIType? VTableHolder { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIType - content.vb: Public ReadOnly Property VTableHolder As DIType - overload: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters - id: TemplateParameters - parent: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - langs: - - csharp - - vb - name: TemplateParameters - nameWithType: DICompositeType.TemplateParameters - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TemplateParameters - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the template parameters for this type, if any - example: [] - syntax: - content: public DITemplateParameterArray? TemplateParameters { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - content.vb: Public ReadOnly Property TemplateParameters As DITemplateParameterArray - overload: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier - id: Identifier - parent: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - langs: - - csharp - - vb - name: Identifier - nameWithType: DICompositeType.Identifier - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Identifier - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the identifier for this type - example: [] - syntax: - content: public string Identifier { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Identifier As String - overload: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier* -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator - id: Discriminator - parent: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - langs: - - csharp - - vb - name: Discriminator - nameWithType: DICompositeType.Discriminator - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Discriminator - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompositeType.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Discriminator for the composite type - example: [] - syntax: - content: public DIDerivedType? Discriminator { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - content.vb: Public ReadOnly Property Discriminator As DIDerivedType - overload: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Scope - name: Scope - nameWithType: DIType.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Name - name: Name - nameWithType: DIType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Line - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Line - name: Line - nameWithType: DIType.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Line -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitSize - name: BitSize - nameWithType: DIType.BitSize - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitAlignment - name: BitAlignment - nameWithType: DIType.BitAlignment - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitOffset - name: BitOffset - nameWithType: DIType.BitOffset - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_DebugInfoFlags - name: DebugInfoFlags - nameWithType: DIType.DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html#Ubiquity_NET_Llvm_DebugInfo_DICompositeType_BaseType - name: BaseType - nameWithType: DICompositeType.BaseType - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.BaseType -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - name: DICompositeType - nameWithType: DICompositeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html#Ubiquity_NET_Llvm_DebugInfo_DICompositeType_Elements - name: Elements - nameWithType: DICompositeType.Elements - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Elements -- uid: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINodeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINodeArray.html - name: DINodeArray - nameWithType: DINodeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DINodeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html#Ubiquity_NET_Llvm_DebugInfo_DICompositeType_VTableHolder - name: VTableHolder - nameWithType: DICompositeType.VTableHolder - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.VTableHolder -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html#Ubiquity_NET_Llvm_DebugInfo_DICompositeType_TemplateParameters - name: TemplateParameters - nameWithType: DICompositeType.TemplateParameters - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.TemplateParameters -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray.html - name: DITemplateParameterArray - nameWithType: DITemplateParameterArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html#Ubiquity_NET_Llvm_DebugInfo_DICompositeType_Identifier - name: Identifier - nameWithType: DICompositeType.Identifier - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Identifier -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html#Ubiquity_NET_Llvm_DebugInfo_DICompositeType_Discriminator - name: Discriminator - nameWithType: DICompositeType.Discriminator - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.Discriminator -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html - name: DIDerivedType - nameWithType: DIDerivedType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray.yml deleted file mode 100644 index 4d170f3a16..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray.yml +++ /dev/null @@ -1,786 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - id: DICompositeTypeArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DICompositeTypeArray - nameWithType: DICompositeTypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompositeTypeArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DICompositeTypeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompositeTypeArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of debug information nodes for use with methods - example: [] - syntax: - content: 'public class DICompositeTypeArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DICompositeTypeArray Inherits TupleTypedArrayWrapper(Of DINode) Implements IReadOnlyList(Of DINode), IReadOnlyCollection(Of DINode), IEnumerable(Of DINode), IEnumerable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - name: DICompositeType - nameWithType: DICompositeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DINode) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: TupleTypedArrayWrapper(Of DINode) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyList(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyCollection(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DINode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IEnumerable(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml deleted file mode 100644 index 970c504ea2..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.yml +++ /dev/null @@ -1,1014 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - id: DIDerivedType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType - - Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType - - Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant - - Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData - - Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty - - Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits - langs: - - csharp - - vb - name: DIDerivedType - nameWithType: DIDerivedType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIDerivedType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Derived type - remarks: Debug information for a type derived from an existing type - example: [] - syntax: - content: 'public class DIDerivedType : DIType, IEquatable' - content.vb: Public Class DIDerivedType Inherits DIType Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#diderivedtype - altText: LLVM DIDerivedType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DIType - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIType.Name - - Ubiquity.NET.Llvm.DebugInfo.DIType.Line - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - - Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType - id: BaseType - parent: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - langs: - - csharp - - vb - name: BaseType - nameWithType: DIDerivedType.BaseType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BaseType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the base type of this type - example: [] - syntax: - content: public DIType BaseType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIType - content.vb: Public ReadOnly Property BaseType As DIType - overload: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData - id: ExtraData - parent: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - langs: - - csharp - - vb - name: ExtraData - nameWithType: DIDerivedType.ExtraData - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExtraData - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the extra data, if any, attached to this derived type - example: [] - syntax: - content: public IrMetadata? ExtraData { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - content.vb: Public ReadOnly Property ExtraData As IrMetadata - overload: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType - id: ClassType - parent: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - langs: - - csharp - - vb - name: ClassType - nameWithType: DIDerivedType.ClassType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ClassType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Class type extra data for a pointer to member type, if any - example: [] - syntax: - content: public DIType? ClassType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIType - content.vb: Public ReadOnly Property ClassType As DIType - overload: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty - id: ObjCProperty - parent: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - langs: - - csharp - - vb - name: ObjCProperty - nameWithType: DIDerivedType.ObjCProperty - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ObjCProperty - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the ObjCProperty extra data - example: [] - syntax: - content: public DIObjCProperty? ObjCProperty { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - content.vb: Public ReadOnly Property ObjCProperty As DIObjCProperty - overload: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits - id: StorageOffsetInBits - parent: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - langs: - - csharp - - vb - name: StorageOffsetInBits - nameWithType: DIDerivedType.StorageOffsetInBits - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StorageOffsetInBits - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the storage offset of the type in bits - remarks: >- - This provides the bit offset for a bit field and is null - if is not set in - example: [] - syntax: - content: public Constant? StorageOffsetInBits { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Constant - content.vb: Public ReadOnly Property StorageOffsetInBits As Constant - overload: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant - id: Constant - parent: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - langs: - - csharp - - vb - name: Constant - nameWithType: DIDerivedType.Constant - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Constant - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIDerivedType.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the constant for a static member - example: [] - syntax: - content: public Constant? Constant { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Constant - content.vb: Public ReadOnly Property Constant As Constant - overload: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Scope - name: Scope - nameWithType: DIType.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Name - name: Name - nameWithType: DIType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Line - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Line - name: Line - nameWithType: DIType.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Line -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitSize - name: BitSize - nameWithType: DIType.BitSize - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitAlignment - name: BitAlignment - nameWithType: DIType.BitAlignment - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitOffset - name: BitOffset - nameWithType: DIType.BitOffset - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_DebugInfoFlags - name: DebugInfoFlags - nameWithType: DIType.DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html#Ubiquity_NET_Llvm_DebugInfo_DIDerivedType_BaseType - name: BaseType - nameWithType: DIDerivedType.BaseType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.BaseType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html#Ubiquity_NET_Llvm_DebugInfo_DIDerivedType_ExtraData - name: ExtraData - nameWithType: DIDerivedType.ExtraData - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ExtraData -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html#Ubiquity_NET_Llvm_DebugInfo_DIDerivedType_ClassType - name: ClassType - nameWithType: DIDerivedType.ClassType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ClassType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html#Ubiquity_NET_Llvm_DebugInfo_DIDerivedType_ObjCProperty - name: ObjCProperty - nameWithType: DIDerivedType.ObjCProperty - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.ObjCProperty -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.html - name: DIObjCProperty - nameWithType: DIObjCProperty - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BitField - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BitField - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html#Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_BitField - name: BitField - nameWithType: DebugInfoFlags.BitField - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BitField -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html#Ubiquity_NET_Llvm_DebugInfo_DIDerivedType_StorageOffsetInBits - name: StorageOffsetInBits - nameWithType: DIDerivedType.StorageOffsetInBits - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.StorageOffsetInBits -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html#Ubiquity_NET_Llvm_DebugInfo_DIDerivedType_Constant - name: Constant - nameWithType: DIDerivedType.Constant - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.Constant diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.yml deleted file mode 100644 index 9a375f4af5..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.yml +++ /dev/null @@ -1,686 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - id: DIEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name - langs: - - csharp - - vb - name: DIEnumerator - nameWithType: DIEnumerator - fullName: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIEnumerator.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIEnumerator - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIEnumerator.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug Information for a name value par of an enumerated type - example: [] - syntax: - content: 'public class DIEnumerator : DINode, IEquatable' - content.vb: Public Class DIEnumerator Inherits DINode Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dienumerator - altText: LLVM DIEnumerator - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - langs: - - csharp - - vb - name: Name - nameWithType: DIEnumerator.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIEnumerator.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIEnumerator.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Name of the enumerated value - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name - href: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.html#Ubiquity_NET_Llvm_DebugInfo_DIEnumerator_Name - name: Name - nameWithType: DIEnumerator.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIExpression.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIExpression.yml deleted file mode 100644 index 93af088a41..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIExpression.yml +++ /dev/null @@ -1,621 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIExpression - id: DIExpression - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DIExpression - nameWithType: DIExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIExpression - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIExpression.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIExpression - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIExpression.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information expression - example: [] - syntax: - content: 'public class DIExpression : MDNode, IEquatable' - content.vb: Public Class DIExpression Inherits MDNode Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#diexpression - altText: LLVM DIExpression - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIFile.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIFile.yml deleted file mode 100644 index 4b9c1d4d47..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIFile.yml +++ /dev/null @@ -1,870 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - id: DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum - - Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory - - Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName - - Ubiquity.NET.Llvm.DebugInfo.DIFile.Path - - Ubiquity.NET.Llvm.DebugInfo.DIFile.Source - langs: - - csharp - - vb - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a source file - example: [] - syntax: - content: 'public class DIFile : DIScope, IEquatable' - content.vb: Public Class DIFile Inherits DIScope Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#difile - altText: LLVM DIFile - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName - id: FileName - parent: Ubiquity.NET.Llvm.DebugInfo.DIFile - langs: - - csharp - - vb - name: FileName - nameWithType: DIFile.FileName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FileName - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the file name for this file - example: [] - syntax: - content: public string FileName { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property FileName As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory - id: Directory - parent: Ubiquity.NET.Llvm.DebugInfo.DIFile - langs: - - csharp - - vb - name: Directory - nameWithType: DIFile.Directory - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Directory - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Directory for this file - example: [] - syntax: - content: public string Directory { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Directory As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.Source - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIFile.Source - id: Source - parent: Ubiquity.NET.Llvm.DebugInfo.DIFile - langs: - - csharp - - vb - name: Source - nameWithType: DIFile.Source - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.Source - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Source - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the source of the file or an empty string if not available - example: [] - syntax: - content: public string Source { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Source As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIFile.Source* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum - id: CheckSum - parent: Ubiquity.NET.Llvm.DebugInfo.DIFile - langs: - - csharp - - vb - name: CheckSum - nameWithType: DIFile.CheckSum - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CheckSum - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Checksum for this file - example: [] - syntax: - content: public string CheckSum { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property CheckSum As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.Path - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIFile.Path - id: Path - parent: Ubiquity.NET.Llvm.DebugInfo.DIFile - langs: - - csharp - - vb - name: Path - nameWithType: DIFile.Path - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.Path - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Path - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIFile.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the full path for this file - example: [] - syntax: - content: public string Path { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Path As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIFile.Path* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html#Ubiquity_NET_Llvm_DebugInfo_DIFile_FileName - name: FileName - nameWithType: DIFile.FileName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.FileName -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html#Ubiquity_NET_Llvm_DebugInfo_DIFile_Directory - name: Directory - nameWithType: DIFile.Directory - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.Directory -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.Source* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIFile.Source - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html#Ubiquity_NET_Llvm_DebugInfo_DIFile_Source - name: Source - nameWithType: DIFile.Source - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.Source -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html#Ubiquity_NET_Llvm_DebugInfo_DIFile_CheckSum - name: CheckSum - nameWithType: DIFile.CheckSum - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.CheckSum -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile.Path* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIFile.Path - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html#Ubiquity_NET_Llvm_DebugInfo_DIFile_Path - name: Path - nameWithType: DIFile.Path - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile.Path diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.yml deleted file mode 100644 index b88a2e2d90..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.yml +++ /dev/null @@ -1,817 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - id: DIGlobalVariable - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration - langs: - - csharp - - vb - name: DIGlobalVariable - nameWithType: DIGlobalVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIGlobalVariable - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariable.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a global variable - example: [] - syntax: - content: 'public class DIGlobalVariable : DIVariable, IEquatable' - content.vb: Public Class DIGlobalVariable Inherits DIVariable Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#diglobalvariable - altText: LLVM DIGlobalVariable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIVariable - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName - id: DisplayName - parent: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - langs: - - csharp - - vb - name: DisplayName - nameWithType: DIGlobalVariable.DisplayName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DisplayName - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariable.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the display name for the variable - example: [] - syntax: - content: public string DisplayName { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property DisplayName As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName - id: LinkageName - parent: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - langs: - - csharp - - vb - name: LinkageName - nameWithType: DIGlobalVariable.LinkageName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LinkageName - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariable.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the linkage name for the variable - example: [] - syntax: - content: public string LinkageName { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property LinkageName As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration - id: StaticDataMemberDeclaration - parent: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - langs: - - csharp - - vb - name: StaticDataMemberDeclaration - nameWithType: DIGlobalVariable.StaticDataMemberDeclaration - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StaticDataMemberDeclaration - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariable.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the static data member declaration for the variable - example: [] - syntax: - content: public DIDerivedType? StaticDataMemberDeclaration { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - content.vb: Public ReadOnly Property StaticDataMemberDeclaration As DIDerivedType - overload: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html - name: DIVariable - nameWithType: DIVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_Line - name: Line - nameWithType: DIVariable.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_Scope - name: Scope - nameWithType: DIVariable.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_Name - name: Name - nameWithType: DIVariable.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_File - name: File - nameWithType: DIVariable.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_DIType - name: DIType - nameWithType: DIVariable.DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIGlobalVariable_DisplayName - name: DisplayName - nameWithType: DIGlobalVariable.DisplayName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.DisplayName -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIGlobalVariable_LinkageName - name: LinkageName - nameWithType: DIGlobalVariable.LinkageName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.LinkageName -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIGlobalVariable_StaticDataMemberDeclaration - name: StaticDataMemberDeclaration - nameWithType: DIGlobalVariable.StaticDataMemberDeclaration - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.StaticDataMemberDeclaration -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html - name: DIDerivedType - nameWithType: DIDerivedType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.yml deleted file mode 100644 index 48a108d7f0..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.yml +++ /dev/null @@ -1,715 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - id: DIGlobalVariableExpression - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable - langs: - - csharp - - vb - name: DIGlobalVariableExpression - nameWithType: DIGlobalVariableExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariableExpression.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIGlobalVariableExpression - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariableExpression.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug Global variable expression - remarks: This node binds a and a - example: [] - syntax: - content: 'public class DIGlobalVariableExpression : MDNode, IEquatable' - content.vb: Public Class DIGlobalVariableExpression Inherits MDNode Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#diglobalvariable - altText: LLVM DIGlobalVariable - - linkType: HRef - linkId: xref:llvm_langref#diexpression - altText: LLVM DIExpression - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable - id: Variable - parent: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - langs: - - csharp - - vb - name: Variable - nameWithType: DIGlobalVariableExpression.Variable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariableExpression.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Variable - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariableExpression.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the for this node - example: [] - syntax: - content: public DIGlobalVariable Variable { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - content.vb: Public ReadOnly Property Variable As DIGlobalVariable - overload: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression - id: Expression - parent: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - langs: - - csharp - - vb - name: Expression - nameWithType: DIGlobalVariableExpression.Expression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariableExpression.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Expression - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariableExpression.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the for this node - example: [] - syntax: - content: public DIExpression Expression { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIExpression - content.vb: Public ReadOnly Property Expression As DIExpression - overload: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.html - name: DIGlobalVariable - nameWithType: DIGlobalVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable -- uid: Ubiquity.NET.Llvm.DebugInfo.DIExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIExpression - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIExpression.html - name: DIExpression - nameWithType: DIExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIExpression -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.html#Ubiquity_NET_Llvm_DebugInfo_DIGlobalVariableExpression_Variable - name: Variable - nameWithType: DIGlobalVariableExpression.Variable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Variable -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.html#Ubiquity_NET_Llvm_DebugInfo_DIGlobalVariableExpression_Expression - name: Expression - nameWithType: DIGlobalVariableExpression.Expression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.Expression diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray.yml deleted file mode 100644 index 8819170e7d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray.yml +++ /dev/null @@ -1,786 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - id: DIGlobalVariableExpressionArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DIGlobalVariableExpressionArray - nameWithType: DIGlobalVariableExpressionArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariableExpressionArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIGlobalVariableExpressionArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIGlobalVariableExpressionArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of debug information nodes for use with methods - example: [] - syntax: - content: 'public class DIGlobalVariableExpressionArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DIGlobalVariableExpressionArray Inherits TupleTypedArrayWrapper(Of DINode) Implements IReadOnlyList(Of DINode), IReadOnlyCollection(Of DINode), IEnumerable(Of DINode), IEnumerable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.html - name: DIGlobalVariableExpression - nameWithType: DIGlobalVariableExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DINode) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: TupleTypedArrayWrapper(Of DINode) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyList(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyCollection(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DINode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IEnumerable(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.yml deleted file mode 100644 index b240d1eb6b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.yml +++ /dev/null @@ -1,814 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - id: DIImportedEntity - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity - - Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File - - Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name - - Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope - langs: - - csharp - - vb - name: DIImportedEntity - nameWithType: DIImportedEntity - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIImportedEntity - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information from an imported entity - example: [] - syntax: - content: 'public class DIImportedEntity : DINode, IEquatable' - content.vb: Public Class DIImportedEntity Inherits DINode Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#diimportedentity - altText: LLVM DIImportedEntity - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope - id: Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - langs: - - csharp - - vb - name: Scope - nameWithType: DIImportedEntity.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Scope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the for the imported entity - example: [] - syntax: - content: public DIScope Scope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - content.vb: Public ReadOnly Property Scope As DIScope - overload: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity - id: Entity - parent: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - langs: - - csharp - - vb - name: Entity - nameWithType: DIImportedEntity.Entity - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Entity - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the entity imported - example: [] - syntax: - content: public DINode Entity { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DINode - content.vb: Public ReadOnly Property Entity As DINode - overload: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - langs: - - csharp - - vb - name: Name - nameWithType: DIImportedEntity.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the node - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File - id: File - parent: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - langs: - - csharp - - vb - name: File - nameWithType: DIImportedEntity.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: File - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntity.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the for the imported entity - example: [] - syntax: - content: public DIFile File { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - content.vb: Public ReadOnly Property File As DIFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope - href: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.html#Ubiquity_NET_Llvm_DebugInfo_DIImportedEntity_Scope - name: Scope - nameWithType: DIImportedEntity.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity - href: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.html#Ubiquity_NET_Llvm_DebugInfo_DIImportedEntity_Entity - name: Entity - nameWithType: DIImportedEntity.Entity - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Entity -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name - href: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.html#Ubiquity_NET_Llvm_DebugInfo_DIImportedEntity_Name - name: Name - nameWithType: DIImportedEntity.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File - href: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.html#Ubiquity_NET_Llvm_DebugInfo_DIImportedEntity_File - name: File - nameWithType: DIImportedEntity.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.File diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray.yml deleted file mode 100644 index fb5dcdabad..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray.yml +++ /dev/null @@ -1,785 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - id: DIImportedEntityArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DIImportedEntityArray - nameWithType: DIImportedEntityArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntityArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIImportedEntityArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIImportedEntityArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of debug information nodes for use with methods - example: [] - syntax: - content: 'public class DIImportedEntityArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DIImportedEntityArray Inherits TupleTypedArrayWrapper(Of DINode) Implements IReadOnlyList(Of DINode), IReadOnlyCollection(Of DINode), IEnumerable(Of DINode), IEnumerable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - href: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.html - name: DIImportedEntity - nameWithType: DIImportedEntity - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DINode) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: TupleTypedArrayWrapper(Of DINode) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyList(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyCollection(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DINode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IEnumerable(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock.yml deleted file mode 100644 index 3e6bf00cf8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock.yml +++ /dev/null @@ -1,709 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - id: DILexicalBlock - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DILexicalBlock - nameWithType: DILexicalBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILexicalBlock.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILexicalBlock - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILexicalBlock.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a Lexical block - example: [] - syntax: - content: 'public class DILexicalBlock : DILexicalBlockBase, IEquatable' - content.vb: Public Class DILexicalBlock Inherits DILexicalBlockBase Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dilexicalblock - altText: LLVM DILexicalBlock - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope - - Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase.html - name: DILexicalBlockBase - nameWithType: DILexicalBlockBase - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_LocalScope - name: LocalScope - nameWithType: DILocalScope.LocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_SubProgram - name: SubProgram - nameWithType: DILocalScope.SubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_FirstNonLexicalBlockFileScope - name: FirstNonLexicalBlockFileScope - nameWithType: DILocalScope.FirstNonLexicalBlockFileScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase.yml deleted file mode 100644 index d2ff89b771..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase.yml +++ /dev/null @@ -1,700 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - id: DILexicalBlockBase - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DILexicalBlockBase - nameWithType: DILexicalBlockBase - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILexicalBlockBase.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILexicalBlockBase - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILexicalBlockBase.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Base for lexical blocks - example: [] - syntax: - content: 'public class DILexicalBlockBase : DILocalScope, IEquatable' - content.vb: Public Class DILexicalBlockBase Inherits DILocalScope Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - - Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_LocalScope - name: LocalScope - nameWithType: DILocalScope.LocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_SubProgram - name: SubProgram - nameWithType: DILocalScope.SubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_FirstNonLexicalBlockFileScope - name: FirstNonLexicalBlockFileScope - nameWithType: DILocalScope.FirstNonLexicalBlockFileScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile.yml deleted file mode 100644 index 5e645db829..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile.yml +++ /dev/null @@ -1,709 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - id: DILexicalBlockFile - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DILexicalBlockFile - nameWithType: DILexicalBlockFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILexicalBlockFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILexicalBlockFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILexicalBlockFile.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a file lexical block - example: [] - syntax: - content: 'public class DILexicalBlockFile : DILexicalBlockBase, IEquatable' - content.vb: Public Class DILexicalBlockFile Inherits DILexicalBlockBase Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dilexicalblockfile - altText: LLVM DILexicalBlockBase - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope - - Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase.html - name: DILexicalBlockBase - nameWithType: DILexicalBlockBase - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_LocalScope - name: LocalScope - nameWithType: DILocalScope.LocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_SubProgram - name: SubProgram - nameWithType: DILocalScope.SubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_FirstNonLexicalBlockFileScope - name: FirstNonLexicalBlockFileScope - nameWithType: DILocalScope.FirstNonLexicalBlockFileScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalScope.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalScope.yml deleted file mode 100644 index c6e5e8be3d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalScope.yml +++ /dev/null @@ -1,806 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - id: DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - langs: - - csharp - - vb - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocalScope.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILocalScope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocalScope.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Legal scope for lexical blocks, local variables, and debug info locations - example: [] - syntax: - content: 'public class DILocalScope : DIScope, IEquatable' - content.vb: Public Class DILocalScope Inherits DIScope Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - id: LocalScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - langs: - - csharp - - vb - name: LocalScope - nameWithType: DILocalScope.LocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocalScope.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LocalScope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocalScope.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the parent scope as a - example: [] - syntax: - content: public DILocalScope? LocalScope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - content.vb: Public ReadOnly Property LocalScope As DILocalScope - overload: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - id: SubProgram - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - langs: - - csharp - - vb - name: SubProgram - nameWithType: DILocalScope.SubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocalScope.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SubProgram - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocalScope.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the DISubprogram for this scope - remarks: >- - If this scope is a then it is returned, otherwise - the scope is walked up to find the subprogram that ultimately owns this scope - example: [] - syntax: - content: public DISubProgram? SubProgram { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - content.vb: Public ReadOnly Property SubProgram As DISubProgram - overload: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram* -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - id: FirstNonLexicalBlockFileScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - langs: - - csharp - - vb - name: FirstNonLexicalBlockFileScope - nameWithType: DILocalScope.FirstNonLexicalBlockFileScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocalScope.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstNonLexicalBlockFileScope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocalScope.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the first non- scope in the chain of parent scopes - example: [] - syntax: - content: public DILocalScope FirstNonLexicalBlockFileScope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - content.vb: Public ReadOnly Property FirstNonLexicalBlockFileScope As DILocalScope - overload: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_LocalScope - name: LocalScope - nameWithType: DILocalScope.LocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubProgram - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html - name: DISubProgram - nameWithType: DISubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_SubProgram - name: SubProgram - nameWithType: DILocalScope.SubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile.html - name: DILexicalBlockFile - nameWithType: DILexicalBlockFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_FirstNonLexicalBlockFileScope - name: FirstNonLexicalBlockFileScope - nameWithType: DILocalScope.FirstNonLexicalBlockFileScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.yml deleted file mode 100644 index 4478800764..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.yml +++ /dev/null @@ -1,722 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - id: DILocalVariable - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope - langs: - - csharp - - vb - name: DILocalVariable - nameWithType: DILocalVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILocalVariable - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocalVariable.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a local variable - example: [] - syntax: - content: 'public class DILocalVariable : DIVariable, IEquatable' - content.vb: Public Class DILocalVariable Inherits DIVariable Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dilocalvariable - altText: LLVM DILocalVariable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIVariable - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope - id: Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - langs: - - csharp - - vb - name: Scope - nameWithType: DILocalVariable.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Scope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocalVariable.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the local scope containing this variable - example: [] - syntax: - content: public DILocalScope Scope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - content.vb: Public ReadOnly Property Scope As DILocalScope - overload: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html - name: DIVariable - nameWithType: DIVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_Line - name: Line - nameWithType: DIVariable.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_Name - name: Name - nameWithType: DIVariable.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_File - name: File - nameWithType: DIVariable.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_DIType - name: DIType - nameWithType: DIVariable.DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html#Ubiquity_NET_Llvm_DebugInfo_DILocalVariable_Scope - name: Scope - nameWithType: DILocalVariable.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray.yml deleted file mode 100644 index 8ca305dc90..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray.yml +++ /dev/null @@ -1,786 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - id: DILocalVariableArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DILocalVariableArray - nameWithType: DILocalVariableArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocalVariableArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILocalVariableArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocalVariableArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of nodes for use with see methods - example: [] - syntax: - content: 'public class DILocalVariableArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DILocalVariableArray Inherits TupleTypedArrayWrapper(Of DILocalVariable) Implements IReadOnlyList(Of DILocalVariable), IReadOnlyCollection(Of DILocalVariable), IEnumerable(Of DILocalVariable), IEnumerable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - name: DILocalVariable - nameWithType: DILocalVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DILocalVariable) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DILocalVariable) - name.vb: TupleTypedArrayWrapper(Of DILocalVariable) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DILocalVariable) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DILocalVariable) - name.vb: IReadOnlyList(Of DILocalVariable) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DILocalVariable) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DILocalVariable) - name.vb: IReadOnlyCollection(Of DILocalVariable) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DILocalVariable) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DILocalVariable) - name.vb: IEnumerable(Of DILocalVariable) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DILocalVariable).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DILocalVariable).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DILocalVariable).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DILocalVariable).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DILocalVariable).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DILocalVariable).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DILocalVariable).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DILocalVariable).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DILocalVariable}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocation.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocation.yml deleted file mode 100644 index 86b25e7692..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DILocation.yml +++ /dev/null @@ -1,1030 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocation - id: DILocation - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope) - - Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation) - - Ubiquity.NET.Llvm.DebugInfo.DILocation.Column - - Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt - - Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope - - Ubiquity.NET.Llvm.DebugInfo.DILocation.Line - - Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope - - Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString - langs: - - csharp - - vb - name: DILocation - nameWithType: DILocation - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILocation - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug source location information - example: [] - syntax: - content: 'public class DILocation : MDNode, IEquatable' - content.vb: Public Class DILocation Inherits MDNode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope) - id: '#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope)' - parent: Ubiquity.NET.Llvm.DebugInfo.DILocation - langs: - - csharp - - vb - name: DILocation(IContext, uint, uint, DILocalScope) - nameWithType: DILocation.DILocation(IContext, uint, uint, DILocalScope) - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.DILocation(Ubiquity.NET.Llvm.IContext, uint, uint, Ubiquity.NET.Llvm.DebugInfo.DILocalScope) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DILocation(IContext context, uint line, uint column, DILocalScope scope) - parameters: - - id: context - type: Ubiquity.NET.Llvm.IContext - description: ContextAlias that owns this location - - id: line - type: System.UInt32 - description: line number for the location - - id: column - type: System.UInt32 - description: Column number for the location - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - description: Containing scope for the location - content.vb: Public Sub New(context As IContext, line As UInteger, column As UInteger, scope As DILocalScope) - overload: Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor* - nameWithType.vb: DILocation.New(IContext, UInteger, UInteger, DILocalScope) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DILocation.New(Ubiquity.NET.Llvm.IContext, UInteger, UInteger, Ubiquity.NET.Llvm.DebugInfo.DILocalScope) - name.vb: New(IContext, UInteger, UInteger, DILocalScope) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation) - id: '#ctor(Ubiquity.NET.Llvm.IContext,System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation)' - parent: Ubiquity.NET.Llvm.DebugInfo.DILocation - langs: - - csharp - - vb - name: DILocation(IContext, uint, uint, DILocalScope, DILocation?) - nameWithType: DILocation.DILocation(IContext, uint, uint, DILocalScope, DILocation?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.DILocation(Ubiquity.NET.Llvm.IContext, uint, uint, Ubiquity.NET.Llvm.DebugInfo.DILocalScope, Ubiquity.NET.Llvm.DebugInfo.DILocation?) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DILocation(IContext context, uint line, uint column, DILocalScope scope, DILocation? inlinedAt) - parameters: - - id: context - type: Ubiquity.NET.Llvm.IContext - description: ContextAlias that owns this location - - id: line - type: System.UInt32 - description: line number for the location - - id: column - type: System.UInt32 - description: Column number for the location - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - description: Containing scope for the location - - id: inlinedAt - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: Scope where this scope is inlined at/into - content.vb: Public Sub New(context As IContext, line As UInteger, column As UInteger, scope As DILocalScope, inlinedAt As DILocation) - overload: Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor* - nameWithType.vb: DILocation.New(IContext, UInteger, UInteger, DILocalScope, DILocation) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DILocation.New(Ubiquity.NET.Llvm.IContext, UInteger, UInteger, Ubiquity.NET.Llvm.DebugInfo.DILocalScope, Ubiquity.NET.Llvm.DebugInfo.DILocation) - name.vb: New(IContext, UInteger, UInteger, DILocalScope, DILocation) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope - id: Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocation - langs: - - csharp - - vb - name: Scope - nameWithType: DILocation.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Scope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the scope for this location - example: [] - syntax: - content: public DILocalScope Scope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - content.vb: Public ReadOnly Property Scope As DILocalScope - overload: Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocation.Line - id: Line - parent: Ubiquity.NET.Llvm.DebugInfo.DILocation - langs: - - csharp - - vb - name: Line - nameWithType: DILocation.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.Line - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Line - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the line for this location - example: [] - syntax: - content: public uint Line { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Line As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DILocation.Line* -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.Column - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocation.Column - id: Column - parent: Ubiquity.NET.Llvm.DebugInfo.DILocation - langs: - - csharp - - vb - name: Column - nameWithType: DILocation.Column - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.Column - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Column - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the column for this location - example: [] - syntax: - content: public uint Column { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Column As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DILocation.Column* -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt - id: InlinedAt - parent: Ubiquity.NET.Llvm.DebugInfo.DILocation - langs: - - csharp - - vb - name: InlinedAt - nameWithType: DILocation.InlinedAt - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InlinedAt - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the location this location is inlined at - example: [] - syntax: - content: public DILocation? InlinedAt { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - content.vb: Public ReadOnly Property InlinedAt As DILocation - overload: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt* -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope - id: InlinedAtScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocation - langs: - - csharp - - vb - name: InlinedAtScope - nameWithType: DILocation.InlinedAtScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InlinedAtScope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the scope where this is inlined. - remarks: >- - This walks through the properties to return - - a from the deepest location. - example: [] - syntax: - content: public DILocalScope? InlinedAtScope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - content.vb: Public ReadOnly Property InlinedAtScope As DILocalScope - overload: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString - id: ToString - parent: Ubiquity.NET.Llvm.DebugInfo.DILocation - langs: - - csharp - - vb - name: ToString() - nameWithType: DILocation.ToString() - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DILocation.cs - startLine: 59 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Formats the metadata as a string - example: [] - syntax: - content: public override string ToString() - return: - type: System.String - description: IrMetadata as a string - content.vb: Public Overrides Function ToString() As String - overridden: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - overload: Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocation - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html - name: DILocation - nameWithType: DILocation - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocation.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html#Ubiquity_NET_Llvm_DebugInfo_DILocation__ctor_Ubiquity_NET_Llvm_IContext_System_UInt32_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DILocalScope_ - name: DILocation - nameWithType: DILocation.DILocation - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.DILocation - nameWithType.vb: DILocation.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DILocation.New - name.vb: New -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html#Ubiquity_NET_Llvm_DebugInfo_DILocation_Scope - name: Scope - nameWithType: DILocation.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.Line* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocation.Line - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html#Ubiquity_NET_Llvm_DebugInfo_DILocation_Line - name: Line - nameWithType: DILocation.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.Line -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.Column* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocation.Column - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html#Ubiquity_NET_Llvm_DebugInfo_DILocation_Column - name: Column - nameWithType: DILocation.Column - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.Column -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html#Ubiquity_NET_Llvm_DebugInfo_DILocation_InlinedAt - name: InlinedAt - nameWithType: DILocation.InlinedAt - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html#Ubiquity_NET_Llvm_DebugInfo_DILocation_InlinedAt - name: InlinedAt - nameWithType: DILocation.InlinedAt - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAt -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html#Ubiquity_NET_Llvm_DebugInfo_DILocation_InlinedAtScope - name: InlinedAtScope - nameWithType: DILocation.InlinedAtScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.InlinedAtScope -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html#Ubiquity_NET_Llvm_DebugInfo_DILocation_ToString - name: ToString - nameWithType: DILocation.ToString - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation.ToString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacro.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacro.yml deleted file mode 100644 index 73305aafcd..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacro.yml +++ /dev/null @@ -1,712 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacro - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacro - id: DIMacro - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name - - Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value - langs: - - csharp - - vb - name: DIMacro - nameWithType: DIMacro - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacro - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIMacro.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIMacro - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIMacro.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Pre-Processor macro - example: [] - syntax: - content: 'public class DIMacro : DIMacroNode, IEquatable' - content.vb: Public Class DIMacro Inherits DIMacroNode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIMacro - langs: - - csharp - - vb - name: Name - nameWithType: DIMacro.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIMacro.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIMacro.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the macro - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value - id: Value - parent: Ubiquity.NET.Llvm.DebugInfo.DIMacro - langs: - - csharp - - vb - name: Value - nameWithType: DIMacro.Value - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIMacro.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Value - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIMacro.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the value of the property - example: [] - syntax: - content: public string Value { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Value As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode.html - name: DIMacroNode - nameWithType: DIMacroNode - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name - href: Ubiquity.NET.Llvm.DebugInfo.DIMacro.html#Ubiquity_NET_Llvm_DebugInfo_DIMacro_Name - name: Name - nameWithType: DIMacro.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value - href: Ubiquity.NET.Llvm.DebugInfo.DIMacro.html#Ubiquity_NET_Llvm_DebugInfo_DIMacro_Value - name: Value - nameWithType: DIMacro.Value - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacro.Value diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.yml deleted file mode 100644 index b45e6397dc..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.yml +++ /dev/null @@ -1,723 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - id: DIMacroFile - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements - - Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File - langs: - - csharp - - vb - name: DIMacroFile - nameWithType: DIMacroFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIMacroFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIMacroFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIMacroFile.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Macro file included by a unit - remarks: >- - A macro file is collection of macros and the - - that they are all defined in. Essentially this is used to establish - - a many to one relation mapping between the macros and the DIFile that - - they are used in. - example: [] - syntax: - content: 'public class DIMacroFile : DIMacroNode, IEquatable' - content.vb: Public Class DIMacroFile Inherits DIMacroNode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File - id: File - parent: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - langs: - - csharp - - vb - name: File - nameWithType: DIMacroFile.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIMacroFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: File - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIMacroFile.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the file information for this macro file - example: [] - syntax: - content: public DIFile? File { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - content.vb: Public ReadOnly Property File As DIFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements - id: Elements - parent: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - langs: - - csharp - - vb - name: Elements - nameWithType: DIMacroFile.Elements - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIMacroFile.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Elements - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIMacroFile.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the elements of this macro file - example: [] - syntax: - content: public DIMacroNodeArray Elements { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - content.vb: Public ReadOnly Property Elements As DIMacroNodeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode.html - name: DIMacroNode - nameWithType: DIMacroNode - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.html#Ubiquity_NET_Llvm_DebugInfo_DIMacroFile_File - name: File - nameWithType: DIMacroFile.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.html#Ubiquity_NET_Llvm_DebugInfo_DIMacroFile_Elements - name: Elements - nameWithType: DIMacroFile.Elements - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.Elements -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray.html - name: DIMacroNodeArray - nameWithType: DIMacroNodeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroNode.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroNode.yml deleted file mode 100644 index d80fb39ac0..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroNode.yml +++ /dev/null @@ -1,620 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - id: DIMacroNode - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DIMacroNode - nameWithType: DIMacroNode - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIMacroNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIMacroNode - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIMacroNode.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Base class for macro related nodes in the debug hierarchy - example: [] - syntax: - content: 'public class DIMacroNode : MDNode, IEquatable' - content.vb: Public Class DIMacroNode Inherits MDNode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DIMacro - - Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray.yml deleted file mode 100644 index 7fe02e7a27..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray.yml +++ /dev/null @@ -1,786 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - id: DIMacroNodeArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DIMacroNodeArray - nameWithType: DIMacroNodeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIMacroNodeArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIMacroNodeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIMacroNodeArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of debug information nodes for use with methods - example: [] - syntax: - content: 'public class DIMacroNodeArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DIMacroNodeArray Inherits TupleTypedArrayWrapper(Of DINode) Implements IReadOnlyList(Of DINode), IReadOnlyCollection(Of DINode), IEnumerable(Of DINode), IEnumerable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode.html - name: DIMacroNode - nameWithType: DIMacroNode - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DINode) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: TupleTypedArrayWrapper(Of DINode) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyList(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyCollection(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DINode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IEnumerable(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIModule.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIModule.yml deleted file mode 100644 index 3a4e1577a4..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIModule.yml +++ /dev/null @@ -1,866 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIModule - id: DIModule - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros - - Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath - - Ubiquity.NET.Llvm.DebugInfo.DIModule.Name - - Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot - langs: - - csharp - - vb - name: DIModule - nameWithType: DIModule - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIModule - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: A source module that is imported by a compile unit - example: [] - syntax: - content: 'public class DIModule : DIScope, IEquatable' - content.vb: Public Class DIModule Inherits DIScope Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope - id: Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIModule - langs: - - csharp - - vb - name: Scope - nameWithType: DIModule.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Scope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the parent scope for this scope or null if no parent scope exists - example: [] - syntax: - content: public override DIScope? Scope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - content.vb: Public Overrides ReadOnly Property Scope As DIScope - overridden: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - overload: Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIModule.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIModule - langs: - - csharp - - vb - name: Name - nameWithType: DIModule.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the scope or an empty string if the scope doesn't have a name - example: [] - syntax: - content: public override string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public Overrides ReadOnly Property Name As String - overridden: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - overload: Ubiquity.NET.Llvm.DebugInfo.DIModule.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros - id: ConfigurationMacros - parent: Ubiquity.NET.Llvm.DebugInfo.DIModule - langs: - - csharp - - vb - name: ConfigurationMacros - nameWithType: DIModule.ConfigurationMacros - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConfigurationMacros - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the configuration macros for the module - example: [] - syntax: - content: public string ConfigurationMacros { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property ConfigurationMacros As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath - id: IncludePath - parent: Ubiquity.NET.Llvm.DebugInfo.DIModule - langs: - - csharp - - vb - name: IncludePath - nameWithType: DIModule.IncludePath - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IncludePath - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the include path for the module - example: [] - syntax: - content: public string IncludePath { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property IncludePath As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot - id: SysRoot - parent: Ubiquity.NET.Llvm.DebugInfo.DIModule - langs: - - csharp - - vb - name: SysRoot - nameWithType: DIModule.SysRoot - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SysRoot - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIModule.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the ISysRoot for the module - example: [] - syntax: - content: public string SysRoot { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property SysRoot As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope - href: Ubiquity.NET.Llvm.DebugInfo.DIModule.html#Ubiquity_NET_Llvm_DebugInfo_DIModule_Scope - name: Scope - nameWithType: DIModule.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIModule.Name - href: Ubiquity.NET.Llvm.DebugInfo.DIModule.html#Ubiquity_NET_Llvm_DebugInfo_DIModule_Name - name: Name - nameWithType: DIModule.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros - href: Ubiquity.NET.Llvm.DebugInfo.DIModule.html#Ubiquity_NET_Llvm_DebugInfo_DIModule_ConfigurationMacros - name: ConfigurationMacros - nameWithType: DIModule.ConfigurationMacros - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.ConfigurationMacros -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath - href: Ubiquity.NET.Llvm.DebugInfo.DIModule.html#Ubiquity_NET_Llvm_DebugInfo_DIModule_IncludePath - name: IncludePath - nameWithType: DIModule.IncludePath - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.IncludePath -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot - href: Ubiquity.NET.Llvm.DebugInfo.DIModule.html#Ubiquity_NET_Llvm_DebugInfo_DIModule_SysRoot - name: SysRoot - nameWithType: DIModule.SysRoot - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule.SysRoot diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINamespace.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINamespace.yml deleted file mode 100644 index 243ab04c5b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINamespace.yml +++ /dev/null @@ -1,756 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DINamespace - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINamespace - id: DINamespace - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name - - Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope - langs: - - csharp - - vb - name: DINamespace - nameWithType: DINamespace - fullName: Ubiquity.NET.Llvm.DebugInfo.DINamespace - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DINamespace.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DINamespace - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DINamespace.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information namespace scope - example: [] - syntax: - content: 'public class DINamespace : DIScope, IEquatable' - content.vb: Public Class DINamespace Inherits DIScope Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dinamespace - altText: xref:llvm_langref#dinamespace - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope - id: Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DINamespace - langs: - - csharp - - vb - name: Scope - nameWithType: DINamespace.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DINamespace.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Scope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DINamespace.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the parent scope for this scope or null if no parent scope exists - example: [] - syntax: - content: public override DIScope? Scope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - content.vb: Public Overrides ReadOnly Property Scope As DIScope - overridden: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - overload: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DINamespace - langs: - - csharp - - vb - name: Name - nameWithType: DINamespace.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DINamespace.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DINamespace.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the scope or an empty string if the scope doesn't have a name - example: [] - syntax: - content: public override string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public Overrides ReadOnly Property Name As String - overridden: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - overload: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope - href: Ubiquity.NET.Llvm.DebugInfo.DINamespace.html#Ubiquity_NET_Llvm_DebugInfo_DINamespace_Scope - name: Scope - nameWithType: DINamespace.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name - href: Ubiquity.NET.Llvm.DebugInfo.DINamespace.html#Ubiquity_NET_Llvm_DebugInfo_DINamespace_Name - name: Name - nameWithType: DINamespace.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DINamespace.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINode.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINode.yml deleted file mode 100644 index 0fdd535d93..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINode.yml +++ /dev/null @@ -1,671 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - id: DINode - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - langs: - - csharp - - vb - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DINode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DINode - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DINode.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Root of the object hierarchy for Debug information metadata nodes - example: [] - syntax: - content: 'public class DINode : MDNode, IEquatable' - content.vb: Public Class DINode Inherits MDNode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - - Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - - Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DISubRange - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - - Ubiquity.NET.Llvm.DebugInfo.DIVariable - - Ubiquity.NET.Llvm.DebugInfo.GenericDINode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - id: Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - langs: - - csharp - - vb - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DINode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Tag - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DINode.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Dwarf tag for the node - example: [] - syntax: - content: public Tag Tag { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag - content.vb: Public ReadOnly Property Tag As Tag - overload: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.Tag - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.Tag.html - name: Tag - nameWithType: Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINodeArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINodeArray.yml deleted file mode 100644 index d3a78dec40..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DINodeArray.yml +++ /dev/null @@ -1,831 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINodeArray - id: DINodeArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DINodeArray - nameWithType: DINodeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DINodeArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DINodeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DINodeArray.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of debug information nodes for use with methods - example: [] - syntax: - content: 'public class DINodeArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DINodeArray Inherits TupleTypedArrayWrapper(Of DINode) Implements IReadOnlyList(Of DINode), IReadOnlyCollection(Of DINode), IEnumerable(Of DINode), IEnumerable - seealso: - - linkId: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_GetOrCreateArray_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_DINode__ - name: GetOrCreateArray(IEnumerable) - nameWithType: DIBuilder.GetOrCreateArray(IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable) - nameWithType.vb: DIBuilder.GetOrCreateArray(IEnumerable(Of DINode)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode)) - name.vb: GetOrCreateArray(IEnumerable(Of DINode)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - name: GetOrCreateArray - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_GetOrCreateArray_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_DINode__ - - name: ( - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.GetOrCreateArray(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode}) - name: GetOrCreateArray - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_GetOrCreateArray_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_DINode__ - - name: ( - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DINode) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: TupleTypedArrayWrapper(Of DINode) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyList(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyCollection(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DINode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IEnumerable(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml deleted file mode 100644 index 2b20340998..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.yml +++ /dev/null @@ -1,848 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - id: DIObjCProperty - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File - - Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName - - Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name - - Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName - - Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type - langs: - - csharp - - vb - name: DIObjCProperty - nameWithType: DIObjCProperty - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIObjCProperty - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Objective-C Property - example: [] - syntax: - content: 'public class DIObjCProperty : DINode, IEquatable' - content.vb: Public Class DIObjCProperty Inherits DINode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File - id: File - parent: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - langs: - - csharp - - vb - name: File - nameWithType: DIObjCProperty.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: File - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Debug information for the file containing this property - example: [] - syntax: - content: public DIFile File { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - content.vb: Public ReadOnly Property File As DIFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - langs: - - csharp - - vb - name: Name - nameWithType: DIObjCProperty.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the property - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName - id: GetterName - parent: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - langs: - - csharp - - vb - name: GetterName - nameWithType: DIObjCProperty.GetterName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetterName - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the getter method for the property - example: [] - syntax: - content: public string GetterName { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property GetterName As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName - id: SetterName - parent: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - langs: - - csharp - - vb - name: SetterName - nameWithType: DIObjCProperty.SetterName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetterName - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the setter method for the property - example: [] - syntax: - content: public string SetterName { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property SetterName As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type - id: Type - parent: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - langs: - - csharp - - vb - name: Type - nameWithType: DIObjCProperty.Type - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Type - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIObjCProperty.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the type of the property - example: [] - syntax: - content: public DIType Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIType - content.vb: Public ReadOnly Property Type As DIType - overload: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File - href: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.html#Ubiquity_NET_Llvm_DebugInfo_DIObjCProperty_File - name: File - nameWithType: DIObjCProperty.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name - href: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.html#Ubiquity_NET_Llvm_DebugInfo_DIObjCProperty_Name - name: Name - nameWithType: DIObjCProperty.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName - href: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.html#Ubiquity_NET_Llvm_DebugInfo_DIObjCProperty_GetterName - name: GetterName - nameWithType: DIObjCProperty.GetterName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.GetterName -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName - href: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.html#Ubiquity_NET_Llvm_DebugInfo_DIObjCProperty_SetterName - name: SetterName - nameWithType: DIObjCProperty.SetterName - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.SetterName -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type - href: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.html#Ubiquity_NET_Llvm_DebugInfo_DIObjCProperty_Type - name: Type - nameWithType: DIObjCProperty.Type - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.Type -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIScope.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIScope.yml deleted file mode 100644 index 3362289a91..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIScope.yml +++ /dev/null @@ -1,780 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - id: DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - langs: - - csharp - - vb - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIScope.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIScope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIScope.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Base class for all Debug information scopes - example: [] - syntax: - content: 'public class DIScope : DINode, IEquatable' - content.vb: Public Class DIScope Inherits DINode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - - Ubiquity.NET.Llvm.DebugInfo.DIFile - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope - - Ubiquity.NET.Llvm.DebugInfo.DIModule - - Ubiquity.NET.Llvm.DebugInfo.DINamespace - - Ubiquity.NET.Llvm.DebugInfo.DIType - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - id: File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - langs: - - csharp - - vb - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIScope.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: File - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIScope.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the describing the file this scope belongs to - remarks: If this scope is a then this returns this - example: [] - syntax: - content: public DIFile? File { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - content.vb: Public ReadOnly Property File As DIFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIScope.File* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - id: Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - langs: - - csharp - - vb - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIScope.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Scope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIScope.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the parent scope for this scope or null if no parent scope exists - example: [] - syntax: - content: public virtual DIScope? Scope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - content.vb: Public Overridable ReadOnly Property Scope As DIScope - overload: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - langs: - - csharp - - vb - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIScope.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIScope.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the scope or an empty string if the scope doesn't have a name - example: [] - syntax: - content: public virtual string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public Overridable ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIScopeArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIScopeArray.yml deleted file mode 100644 index 3431c52df0..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIScopeArray.yml +++ /dev/null @@ -1,786 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - id: DIScopeArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DIScopeArray - nameWithType: DIScopeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIScopeArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIScopeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIScopeArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of debug information nodes for use with methods - example: [] - syntax: - content: 'public class DIScopeArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DIScopeArray Inherits TupleTypedArrayWrapper(Of DINode) Implements IReadOnlyList(Of DINode), IReadOnlyCollection(Of DINode), IEnumerable(Of DINode), IEnumerable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DINode) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: TupleTypedArrayWrapper(Of DINode) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyList(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DINode) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IReadOnlyCollection(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DINode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DINode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DINode) - name.vb: IEnumerable(Of DINode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DINode).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DINode).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DINode}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml deleted file mode 100644 index 3db164329c..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubProgram.yml +++ /dev/null @@ -1,1217 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubProgram - id: DISubProgram - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes(Ubiquity.NET.Llvm.Values.Function) - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables - langs: - - csharp - - vb - name: DISubProgram - nameWithType: DISubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DISubProgram - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a SubProgram - example: [] - syntax: - content: 'public sealed class DISubProgram : DILocalScope, IEquatable' - content.vb: Public NotInheritable Class DISubProgram Inherits DILocalScope Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#disubprogram - altText: xref:llvm_langref#disubprogram - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line - id: Line - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: Line - nameWithType: DISubProgram.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Line - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the source line associated with this - example: [] - syntax: - content: public uint Line { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Line As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: Name - nameWithType: DISubProgram.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of this - example: [] - syntax: - content: public override string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public Overrides ReadOnly Property Name As String - overridden: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName - id: LinkageName - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: LinkageName - nameWithType: DISubProgram.LinkageName - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LinkageName - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the linkage name of this - example: [] - syntax: - content: public string LinkageName { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property LinkageName As String - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature - id: Signature - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: Signature - nameWithType: DISubProgram.Signature - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Signature - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the signature of this - example: [] - syntax: - content: public DISubroutineType Signature { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - content.vb: Public ReadOnly Property Signature As DISubroutineType - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit - id: CompileUnit - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: CompileUnit - nameWithType: DISubProgram.CompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CompileUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the that contains this - example: [] - syntax: - content: public DICompileUnit CompileUnit { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - content.vb: Public ReadOnly Property CompileUnit As DICompileUnit - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration - id: Declaration - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: Declaration - nameWithType: DISubProgram.Declaration - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Declaration - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the that declares this - example: [] - syntax: - content: public DISubProgram Declaration { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - content.vb: Public ReadOnly Property Declaration As DISubProgram - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables - id: Variables - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: Variables - nameWithType: DISubProgram.Variables - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Variables - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the variables of this - example: [] - syntax: - content: public DILocalVariableArray Variables { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - content.vb: Public ReadOnly Property Variables As DILocalVariableArray - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType - id: ContainingType - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: ContainingType - nameWithType: DISubProgram.ContainingType - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ContainingType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the type that contains this , if any - example: [] - syntax: - content: public DIType? ContainingType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIType - content.vb: Public ReadOnly Property ContainingType As DIType - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams - id: TemplateParams - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: TemplateParams - nameWithType: DISubProgram.TemplateParams - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TemplateParams - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the template parameters of this , if any - example: [] - syntax: - content: public DITemplateParameterArray? TemplateParams { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - content.vb: Public ReadOnly Property TemplateParams As DITemplateParameterArray - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes - id: ThrownTypes - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: ThrownTypes - nameWithType: DISubProgram.ThrownTypes - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ThrownTypes - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the exception types this can throw - example: [] - syntax: - content: public DITypeArray? ThrownTypes { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - content.vb: Public ReadOnly Property ThrownTypes As DITypeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes(Ubiquity.NET.Llvm.Values.Function) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes(Ubiquity.NET.Llvm.Values.Function) - id: Describes(Ubiquity.NET.Llvm.Values.Function) - parent: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - langs: - - csharp - - vb - name: Describes(Function) - nameWithType: DISubProgram.Describes(Function) - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes(Ubiquity.NET.Llvm.Values.Function) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Describes - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubProgram.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Determines if this instance describes a given - example: [] - syntax: - content: public bool Describes(Function function) - parameters: - - id: function - type: Ubiquity.NET.Llvm.Values.Function - description: to test - return: - type: System.Boolean - description: true if this describes function - content.vb: Public Function Describes([function] As [Function]) As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_LocalScope - name: LocalScope - nameWithType: DILocalScope.LocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.LocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_SubProgram - name: SubProgram - nameWithType: DILocalScope.SubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.SubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope - parent: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html#Ubiquity_NET_Llvm_DebugInfo_DILocalScope_FirstNonLexicalBlockFileScope - name: FirstNonLexicalBlockFileScope - nameWithType: DILocalScope.FirstNonLexicalBlockFileScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.FirstNonLexicalBlockFileScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubProgram - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html - name: DISubProgram - nameWithType: DISubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_Line - name: Line - nameWithType: DISubProgram.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Line -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_Name - name: Name - nameWithType: DISubProgram.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_LinkageName - name: LinkageName - nameWithType: DISubProgram.LinkageName - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.LinkageName -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_Signature - name: Signature - nameWithType: DISubProgram.Signature - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Signature -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html - name: DISubroutineType - nameWithType: DISubroutineType - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html - name: DICompileUnit - nameWithType: DICompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_CompileUnit - name: CompileUnit - nameWithType: DISubProgram.CompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.CompileUnit -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_Declaration - name: Declaration - nameWithType: DISubProgram.Declaration - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Declaration -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_Variables - name: Variables - nameWithType: DISubProgram.Variables - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Variables -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray.html - name: DILocalVariableArray - nameWithType: DILocalVariableArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_ContainingType - name: ContainingType - nameWithType: DISubProgram.ContainingType - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ContainingType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_TemplateParams - name: TemplateParams - nameWithType: DISubProgram.TemplateParams - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.TemplateParams -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray.html - name: DITemplateParameterArray - nameWithType: DITemplateParameterArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_ThrownTypes - name: ThrownTypes - nameWithType: DISubProgram.ThrownTypes - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.ThrownTypes -- uid: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITypeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITypeArray.html - name: DITypeArray - nameWithType: DITypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITypeArray -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html#Ubiquity_NET_Llvm_DebugInfo_DISubProgram_Describes_Ubiquity_NET_Llvm_Values_Function_ - name: Describes - nameWithType: DISubProgram.Describes - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.Describes -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubRange.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubRange.yml deleted file mode 100644 index f1389ef9e5..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubRange.yml +++ /dev/null @@ -1,900 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubRange - id: DISubRange - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount - - Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound - - Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount - langs: - - csharp - - vb - name: DISubRange - nameWithType: DISubRange - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubRange.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DISubRange - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubRange.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Sub range - example: [] - syntax: - content: 'public class DISubRange : DINode, IEquatable' - content.vb: Public Class DISubRange Inherits DINode Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#disubrange - altText: LLVM DISubRange - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound - id: LowerBound - parent: Ubiquity.NET.Llvm.DebugInfo.DISubRange - langs: - - csharp - - vb - name: LowerBound - nameWithType: DISubRange.LowerBound - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubRange.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LowerBound - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubRange.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value for the lower bound of the range - example: [] - syntax: - content: public long LowerBound { get; } - parameters: [] - return: - type: System.Int64 - content.vb: Public ReadOnly Property LowerBound As Long - overload: Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount - id: ConstantCount - parent: Ubiquity.NET.Llvm.DebugInfo.DISubRange - langs: - - csharp - - vb - name: ConstantCount - nameWithType: DISubRange.ConstantCount - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubRange.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantCount - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubRange.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a, potentially null, constant value for the count of the subrange - remarks: >- - Count (length) of a DISubrange is either a - - wrapped in a or it is a . This property - - extracts the count as a constant integral value (if present). If this is null - - then is not. (and vice versa) - example: [] - syntax: - content: public long? ConstantCount { get; } - parameters: [] - return: - type: System.Nullable{System.Int64} - content.vb: Public ReadOnly Property ConstantCount As Long? - overload: Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount* -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount - id: VariableCount - parent: Ubiquity.NET.Llvm.DebugInfo.DISubRange - langs: - - csharp - - vb - name: VariableCount - nameWithType: DISubRange.VariableCount - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubRange.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VariableCount - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubRange.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a, potentially null, for the count of the subrange - remarks: >- - Count (length) of a DISubrange is either a - - wrapped in a or it is a . This property - - extracts the count as a value (if present). If this is null - - then is not. (and vice versa) - example: [] - syntax: - content: public DIVariable? VariableCount { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIVariable - content.vb: Public ReadOnly Property VariableCount As DIVariable - overload: Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound - href: Ubiquity.NET.Llvm.DebugInfo.DISubRange.html#Ubiquity_NET_Llvm_DebugInfo_DISubRange_LowerBound - name: LowerBound - nameWithType: DISubRange.LowerBound - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange.LowerBound -- uid: System.Int64 - commentId: T:System.Int64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long - nameWithType: long - fullName: long - nameWithType.vb: Long - fullName.vb: Long - name.vb: Long -- uid: Ubiquity.NET.Llvm.Values.ConstantInt - commentId: T:Ubiquity.NET.Llvm.Values.ConstantInt - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - name: ConstantInt - nameWithType: ConstantInt - fullName: Ubiquity.NET.Llvm.Values.ConstantInt -- uid: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.html - name: ConstantAsMetadata - nameWithType: ConstantAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html - name: DIVariable - nameWithType: DIVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount - href: Ubiquity.NET.Llvm.DebugInfo.DISubRange.html#Ubiquity_NET_Llvm_DebugInfo_DISubRange_VariableCount - name: VariableCount - nameWithType: DISubRange.VariableCount - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount - href: Ubiquity.NET.Llvm.DebugInfo.DISubRange.html#Ubiquity_NET_Llvm_DebugInfo_DISubRange_ConstantCount - name: ConstantCount - nameWithType: DISubRange.ConstantCount - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount -- uid: System.Nullable{System.Int64} - commentId: T:System.Nullable{System.Int64} - parent: System - definition: System.Nullable`1 - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long? - nameWithType: long? - fullName: long? - nameWithType.vb: Long? - fullName.vb: Long? - name.vb: Long? - spec.csharp: - - uid: System.Int64 - name: long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '?' - spec.vb: - - uid: System.Int64 - name: Long - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - - name: '?' -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Nullable`1 - commentId: T:System.Nullable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: Nullable - nameWithType: Nullable - fullName: System.Nullable - nameWithType.vb: Nullable(Of T) - fullName.vb: System.Nullable(Of T) - name.vb: Nullable(Of T) - spec.csharp: - - uid: System.Nullable`1 - name: Nullable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Nullable`1 - name: Nullable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount - href: Ubiquity.NET.Llvm.DebugInfo.DISubRange.html#Ubiquity_NET_Llvm_DebugInfo_DISubRange_ConstantCount - name: ConstantCount - nameWithType: DISubRange.ConstantCount - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange.ConstantCount -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount - href: Ubiquity.NET.Llvm.DebugInfo.DISubRange.html#Ubiquity_NET_Llvm_DebugInfo_DISubRange_VariableCount - name: VariableCount - nameWithType: DISubRange.VariableCount - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange.VariableCount diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.yml deleted file mode 100644 index a5881dd592..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.yml +++ /dev/null @@ -1,762 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - id: DISubroutineType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray - langs: - - csharp - - vb - name: DISubroutineType - nameWithType: DISubroutineType - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubroutineType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DISubroutineType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubroutineType.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a function signature - example: [] - syntax: - content: 'public class DISubroutineType : DIType, IEquatable' - content.vb: Public Class DISubroutineType Inherits DIType Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#disubroutinetype - altText: xref:llvm_langref#disubroutinetype - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DIType - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - - Ubiquity.NET.Llvm.DebugInfo.DIType.Name - - Ubiquity.NET.Llvm.DebugInfo.DIType.Line - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - - Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray - id: TypeArray - parent: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - langs: - - csharp - - vb - name: TypeArray - nameWithType: DISubroutineType.TypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DISubroutineType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TypeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DISubroutineType.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the types for the sub routine - example: [] - syntax: - content: public DITypeArray TypeArray { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - content.vb: Public ReadOnly Property TypeArray As DITypeArray - overload: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Scope - name: Scope - nameWithType: DIType.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Name - name: Name - nameWithType: DIType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Line - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Line - name: Line - nameWithType: DIType.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Line -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitSize - name: BitSize - nameWithType: DIType.BitSize - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitAlignment - name: BitAlignment - nameWithType: DIType.BitAlignment - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitOffset - name: BitOffset - nameWithType: DIType.BitOffset - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_DebugInfoFlags - name: DebugInfoFlags - nameWithType: DIType.DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html#Ubiquity_NET_Llvm_DebugInfo_DISubroutineType_TypeArray - name: TypeArray - nameWithType: DISubroutineType.TypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.TypeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITypeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITypeArray.html - name: DITypeArray - nameWithType: DITypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITypeArray diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.yml deleted file mode 100644 index de34fa01f1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.yml +++ /dev/null @@ -1,747 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - id: DITemplateParameter - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - langs: - - csharp - - vb - name: DITemplateParameter - nameWithType: DITemplateParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DITemplateParameter.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DITemplateParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DITemplateParameter.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Base class for template parameter information - example: [] - syntax: - content: 'public class DITemplateParameter : DINode, IEquatable' - content.vb: Public Class DITemplateParameter Inherits DINode Implements IEquatable(Of IrMetadata) - seealso: - - linkId: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - - linkId: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - - Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - langs: - - csharp - - vb - name: Name - nameWithType: DITemplateParameter.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DITemplateParameter.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DITemplateParameter.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the template parameter - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - id: Type - parent: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - langs: - - csharp - - vb - name: Type - nameWithType: DITemplateParameter.Type - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DITemplateParameter.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Type - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DITemplateParameter.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the type of the template parameter - example: [] - syntax: - content: public DIType? Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIType - content.vb: Public ReadOnly Property Type As DIType - overload: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter.html - name: DITemplateTypeParameter - nameWithType: DITemplateTypeParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.html - name: DITemplateValueParameter - nameWithType: DITemplateValueParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html#Ubiquity_NET_Llvm_DebugInfo_DITemplateParameter_Name - name: Name - nameWithType: DITemplateParameter.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html#Ubiquity_NET_Llvm_DebugInfo_DITemplateParameter_Type - name: Type - nameWithType: DITemplateParameter.Type - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray.yml deleted file mode 100644 index f5673aec41..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray.yml +++ /dev/null @@ -1,786 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - id: DITemplateParameterArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DITemplateParameterArray - nameWithType: DITemplateParameterArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DITemplateParameterArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DITemplateParameterArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DITemplateParameterArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of nodes for use with see methods - example: [] - syntax: - content: 'public class DITemplateParameterArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DITemplateParameterArray Inherits TupleTypedArrayWrapper(Of DITemplateParameter) Implements IReadOnlyList(Of DITemplateParameter), IReadOnlyCollection(Of DITemplateParameter), IEnumerable(Of DITemplateParameter), IEnumerable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - name: DITemplateParameter - nameWithType: DITemplateParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DITemplateParameter) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter) - name.vb: TupleTypedArrayWrapper(Of DITemplateParameter) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DITemplateParameter) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter) - name.vb: IReadOnlyList(Of DITemplateParameter) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DITemplateParameter) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter) - name.vb: IReadOnlyCollection(Of DITemplateParameter) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DITemplateParameter) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter) - name.vb: IEnumerable(Of DITemplateParameter) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DITemplateParameter).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DITemplateParameter).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DITemplateParameter).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DITemplateParameter).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter.yml deleted file mode 100644 index d87a58a10d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter.yml +++ /dev/null @@ -1,661 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - id: DITemplateTypeParameter - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DITemplateTypeParameter - nameWithType: DITemplateTypeParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DITemplateTypeParameter.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DITemplateTypeParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DITemplateTypeParameter.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Template type parameter - example: [] - syntax: - content: 'public class DITemplateTypeParameter : DITemplateParameter, IEquatable' - content.vb: Public Class DITemplateTypeParameter Inherits DITemplateParameter Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#ditemplatetypeparameter - altText: LLVM DITemplateTypeParameter - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - name: DITemplateParameter - nameWithType: DITemplateParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html#Ubiquity_NET_Llvm_DebugInfo_DITemplateParameter_Name - name: Name - nameWithType: DITemplateParameter.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - parent: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html#Ubiquity_NET_Llvm_DebugInfo_DITemplateParameter_Type - name: Type - nameWithType: DITemplateParameter.Type - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.yml deleted file mode 100644 index 0516d04580..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.yml +++ /dev/null @@ -1,715 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - id: DITemplateValueParameter - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue``1 - langs: - - csharp - - vb - name: DITemplateValueParameter - nameWithType: DITemplateValueParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DITemplateValueParameter.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DITemplateValueParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DITemplateValueParameter.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Template Value parameter - example: [] - syntax: - content: 'public class DITemplateValueParameter : DITemplateParameter, IEquatable' - content.vb: Public Class DITemplateValueParameter Inherits DITemplateParameter Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#ditemplatevalueparameter - altText: LLVM DITemplateValueParameter - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue``1 - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue``1 - id: GetValue``1 - parent: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - langs: - - csharp - - vb - name: GetValue() - nameWithType: DITemplateValueParameter.GetValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DITemplateValueParameter.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DITemplateValueParameter.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the value of the parameter as IrMetadata - example: [] - syntax: - content: 'public T GetValue() where T : IrMetadata' - typeParameters: - - id: T - description: IrMetadata type of the value to get - return: - type: '{T}' - description: Value or null if the value is not convertible to T - content.vb: Public Function GetValue(Of T As IrMetadata)() As T - overload: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue* - nameWithType.vb: DITemplateValueParameter.GetValue(Of T)() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue(Of T)() - name.vb: GetValue(Of T)() -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - name: DITemplateParameter - nameWithType: DITemplateParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html#Ubiquity_NET_Llvm_DebugInfo_DITemplateParameter_Name - name: Name - nameWithType: DITemplateParameter.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type - parent: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html#Ubiquity_NET_Llvm_DebugInfo_DITemplateParameter_Type - name: Type - nameWithType: DITemplateParameter.Type - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.Type -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.html#Ubiquity_NET_Llvm_DebugInfo_DITemplateValueParameter_GetValue__1 - name: GetValue - nameWithType: DITemplateValueParameter.GetValue - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.GetValue -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: T - name: T - nameWithType: T - fullName: T diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIType.yml deleted file mode 100644 index 5d2b4bac09..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIType.yml +++ /dev/null @@ -1,980 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - id: DIType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - - Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - - Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - - Ubiquity.NET.Llvm.DebugInfo.DIType.Line - - Ubiquity.NET.Llvm.DebugInfo.DIType.Name - - Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - langs: - - csharp - - vb - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Base class for Debug info types - example: [] - syntax: - content: 'public class DIType : DIScope, IEquatable' - content.vb: Public Class DIType Inherits DIScope Implements IEquatable(Of IrMetadata) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#ditype - altText: LLVM DebugInfoType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DIScope - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DIBasicType - - Ubiquity.NET.Llvm.DebugInfo.DICompositeType - - Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - - Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DIScope.File - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - id: Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - langs: - - csharp - - vb - name: Scope - nameWithType: DIType.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Scope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the containing scope for the type - example: [] - syntax: - content: public override DIScope? Scope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - content.vb: Public Overrides ReadOnly Property Scope As DIScope - overridden: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - overload: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - langs: - - csharp - - vb - name: Name - nameWithType: DIType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the type - example: [] - syntax: - content: public override string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public Overrides ReadOnly Property Name As String - overridden: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - overload: Ubiquity.NET.Llvm.DebugInfo.DIType.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.Line - id: Line - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - langs: - - csharp - - vb - name: Line - nameWithType: DIType.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Line - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Line - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the source line for the type - example: [] - syntax: - content: public uint Line { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Line As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DIType.Line* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - id: BitSize - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - langs: - - csharp - - vb - name: BitSize - nameWithType: DIType.BitSize - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitSize - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the size of the type in bits - example: [] - syntax: - content: public ulong BitSize { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property BitSize As ULong - overload: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - id: BitAlignment - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - langs: - - csharp - - vb - name: BitAlignment - nameWithType: DIType.BitAlignment - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitAlignment - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the alignment of the type in bits - example: [] - syntax: - content: public ulong BitAlignment { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property BitAlignment As ULong - overload: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - id: BitOffset - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - langs: - - csharp - - vb - name: BitOffset - nameWithType: DIType.BitOffset - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitOffset - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the offset of the type in bits - example: [] - syntax: - content: public ulong BitOffset { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property BitOffset As ULong - overload: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - id: DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo.DIType - langs: - - csharp - - vb - name: DebugInfoFlags - nameWithType: DIType.DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugInfoFlags - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIType.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the flags that describe the behaviors for - example: [] - syntax: - content: public DebugInfoFlags DebugInfoFlags { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - content.vb: Public ReadOnly Property DebugInfoFlags As DebugInfoFlags - overload: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.File - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_File - name: File - nameWithType: DIScope.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Scope - name: Scope - nameWithType: DIScope.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIType.Scope - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Scope - name: Scope - nameWithType: DIType.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIScope.Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html#Ubiquity_NET_Llvm_DebugInfo_DIScope_Name - name: Name - nameWithType: DIScope.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIType.Name - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Name - name: Name - nameWithType: DIType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.Line* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIType.Line - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_Line - name: Line - nameWithType: DIType.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.Line -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitSize - name: BitSize - nameWithType: DIType.BitSize - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitSize -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitAlignment - name: BitAlignment - nameWithType: DIType.BitAlignment - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitAlignment -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_BitOffset - name: BitOffset - nameWithType: DIType.BitOffset - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.BitOffset -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html#Ubiquity_NET_Llvm_DebugInfo_DIType_DebugInfoFlags - name: DebugInfoFlags - nameWithType: DIType.DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITypeArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITypeArray.yml deleted file mode 100644 index 124f49b8a1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DITypeArray.yml +++ /dev/null @@ -1,786 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITypeArray - id: DITypeArray - parent: Ubiquity.NET.Llvm.DebugInfo - children: [] - langs: - - csharp - - vb - name: DITypeArray - nameWithType: DITypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DITypeArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DITypeArray - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DITypeArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array of nodes for use with see methods - example: [] - syntax: - content: 'public class DITypeArray : TupleTypedArrayWrapper, IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public Class DITypeArray Inherits TupleTypedArrayWrapper(Of DIType) Implements IReadOnlyList(Of DIType), IReadOnlyCollection(Of DIType), IEnumerable(Of DIType), IEnumerable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType} - implements: - - System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DIType} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DIType} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - - System.Collections.IEnumerable - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Tuple - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.GetEnumerator - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: TupleTypedArrayWrapper(Of DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DIType) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IReadOnlyList(Of DIType) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of DIType) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IReadOnlyCollection(Of DIType) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DIType) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IEnumerable(Of DIType) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of DIType).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DIType).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of DIType).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DIType).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of DIType).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DIType).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of DIType).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of Ubiquity.NET.Llvm.DebugInfo.DIType).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper{Ubiquity.NET.Llvm.DebugInfo.DIType}.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - name: GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml deleted file mode 100644 index 8abe01f311..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DIVariable.yml +++ /dev/null @@ -1,869 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIVariable - id: DIVariable - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - - Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope - langs: - - csharp - - vb - name: DIVariable - nameWithType: DIVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIVariable - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a variable - example: [] - syntax: - content: 'public class DIVariable : DINode, IEquatable' - content.vb: Public Class DIVariable Inherits DINode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - - Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - id: Line - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - langs: - - csharp - - vb - name: Line - nameWithType: DIVariable.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Line - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the line for the variable - example: [] - syntax: - content: public uint Line { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Line As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope - id: Scope - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - langs: - - csharp - - vb - name: Scope - nameWithType: DIVariable.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Scope - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Debug information scope for this variable - example: [] - syntax: - content: public DIScope? Scope { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - content.vb: Public ReadOnly Property Scope As DIScope - overload: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - langs: - - csharp - - vb - name: Name - nameWithType: DIVariable.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Debug information name for this variable - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - id: File - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - langs: - - csharp - - vb - name: File - nameWithType: DIVariable.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: File - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Debug information file for this variable - example: [] - syntax: - content: public DIFile? File { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - content.vb: Public ReadOnly Property File As DIFile - overload: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File* -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - id: DIType - parent: Ubiquity.NET.Llvm.DebugInfo.DIVariable - langs: - - csharp - - vb - name: DIType - nameWithType: DIVariable.DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIVariable.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Debug information type for this variable - example: [] - syntax: - content: public DIType? DIType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIType - content.vb: Public ReadOnly Property DIType As DIType - overload: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_Line - name: Line - nameWithType: DIVariable.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Line -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_Scope - name: Scope - nameWithType: DIVariable.Scope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Scope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_Name - name: Name - nameWithType: DIVariable.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIVariable.File - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_File - name: File - nameWithType: DIVariable.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html#Ubiquity_NET_Llvm_DebugInfo_DIVariable_DIType - name: DIType - nameWithType: DIVariable.DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml deleted file mode 100644 index c74ee7e706..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.yml +++ /dev/null @@ -1,1904 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - id: DebugArrayType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary(Ubiquity.NET.Llvm.IDataLayout,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@) - langs: - - csharp - - vb - name: DebugArrayType - nameWithType: DebugArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Provides debug information binding between an and a - example: [] - syntax: - content: 'public class DebugArrayType : DebugType, IDebugType, IEquatable, IArrayType, ISequenceType, ITypeRef, IEquatable' - content.vb: Public Class DebugArrayType Inherits DebugType(Of IArrayType, DICompositeType) Implements IDebugType(Of IArrayType, DICompositeType), IEquatable(Of ITypeHandleOwner), IArrayType, ISequenceType, ITypeRef, IEquatable(Of ITypeRef) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dicompositetype - altText: DICompositeType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - - Ubiquity.NET.Llvm.Types.IArrayType - - Ubiquity.NET.Llvm.Types.ISequenceType - - Ubiquity.NET.Llvm.Types.ITypeRef - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - extensionMethods: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - langs: - - csharp - - vb - name: DebugArrayType(IArrayType, IDebugType, ref readonly DIBuilder, uint, uint, uint) - nameWithType: DebugArrayType.DebugArrayType(IArrayType, IDebugType, ref readonly DIBuilder, uint, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugArrayType(Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.IDebugType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class - example: [] - syntax: - content: public DebugArrayType(IArrayType llvmType, IDebugType elementType, ref readonly DIBuilder diBuilder, uint count, uint lowerBound = 0, uint alignment = 0) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.IArrayType - description: Underlying LLVM array type to bind debug info to - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Array element type with debug information - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug Information builder to use to build the information for this type - - id: count - type: System.UInt32 - description: Number of elements in the array - - id: lowerBound - type: System.UInt32 - description: Lower bound of the array [default = 0] - - id: alignment - type: System.UInt32 - description: Alignment for the type - content.vb: Public Sub New(llvmType As IArrayType, elementType As IDebugType(Of ITypeRef, DIType), diBuilder As DIBuilder, count As UInteger, lowerBound As UInteger = 0, alignment As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor* - nameWithType.vb: DebugArrayType.New(IArrayType, IDebugType(Of ITypeRef, DIType), DIBuilder, UInteger, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.New(Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger, UInteger) - name.vb: New(IArrayType, IDebugType(Of ITypeRef, DIType), DIBuilder, UInteger, UInteger, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - langs: - - csharp - - vb - name: DebugArrayType(IDebugType, ref readonly DIBuilder, uint, uint) - nameWithType: DebugArrayType.DebugArrayType(IDebugType, ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugArrayType(Ubiquity.NET.Llvm.DebugInfo.IDebugType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugArrayType(IDebugType elementType, ref readonly DIBuilder diBuilder, uint count, uint lowerBound = 0) - parameters: - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Type of elements in the array - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug Information builder to use to build the information for this type - - id: count - type: System.UInt32 - description: Number of elements in the array - - id: lowerBound - type: System.UInt32 - description: ' value for the array indices [Default: 0]' - content.vb: Public Sub New(elementType As IDebugType(Of ITypeRef, DIType), diBuilder As DIBuilder, count As UInteger, lowerBound As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor* - nameWithType.vb: DebugArrayType.New(IDebugType(Of ITypeRef, DIType), DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.New(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: New(IDebugType(Of ITypeRef, DIType), DIBuilder, UInteger, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - langs: - - csharp - - vb - name: DebugArrayType(IArrayType, ref readonly DIBuilder, DIType, uint, uint) - nameWithType: DebugArrayType.DebugArrayType(IArrayType, ref readonly DIBuilder, DIType, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugArrayType(Ubiquity.NET.Llvm.Types.IArrayType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIType, uint, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugArrayType(IArrayType llvmType, ref readonly DIBuilder diBuilder, DIType elementType, uint count, uint lowerBound = 0) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.IArrayType - description: Native LLVM type for the elements - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug Information builder to use to build the information for this type - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Debug type of the array elements - - id: count - type: System.UInt32 - description: Number of elements in the array - - id: lowerBound - type: System.UInt32 - description: ' value for the array indices [Default: 0]' - content.vb: Public Sub New(llvmType As IArrayType, diBuilder As DIBuilder, elementType As DIType, count As UInteger, lowerBound As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor* - nameWithType.vb: DebugArrayType.New(IArrayType, DIBuilder, DIType, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.New(Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIType, UInteger, UInteger) - name.vb: New(IArrayType, DIBuilder, DIType, UInteger, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType - id: DebugElementType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - langs: - - csharp - - vb - name: DebugElementType - nameWithType: DebugArrayType.DebugElementType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugElementType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the full type for the elements - example: [] - syntax: - content: public IDebugType DebugElementType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - content.vb: Public ReadOnly Property DebugElementType As IDebugType(Of ITypeRef, DIType) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType - id: ElementType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - langs: - - csharp - - vb - name: ElementType - nameWithType: DebugArrayType.ElementType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ElementType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the types of the elements in the sequence - example: [] - syntax: - content: public ITypeRef ElementType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property ElementType As ITypeRef - overload: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType* - implements: - - Ubiquity.NET.Llvm.Types.ISequenceType.ElementType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length - id: Length - parent: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - langs: - - csharp - - vb - name: Length - nameWithType: DebugArrayType.Length - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Length - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the length of the array - example: [] - syntax: - content: public uint Length { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Length As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length* - implements: - - Ubiquity.NET.Llvm.Types.IArrayType.Length -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound - id: LowerBound - parent: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - langs: - - csharp - - vb - name: LowerBound - nameWithType: DebugArrayType.LowerBound - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LowerBound - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 72 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the lower bound of the array - usually, but not always, zero - example: [] - syntax: - content: public uint LowerBound { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property LowerBound As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary(Ubiquity.NET.Llvm.IDataLayout,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary(Ubiquity.NET.Llvm.IDataLayout,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@) - id: ResolveTemporary(Ubiquity.NET.Llvm.IDataLayout,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - langs: - - csharp - - vb - name: ResolveTemporary(IDataLayout, ref readonly DIBuilder) - nameWithType: DebugArrayType.ResolveTemporary(IDataLayout, ref readonly DIBuilder) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary(Ubiquity.NET.Llvm.IDataLayout, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ResolveTemporary - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugArrayType.cs - startLine: 77 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Resolves a temporary metadata node for the array if full size information wasn't available at creation time - example: [] - syntax: - content: public void ResolveTemporary(IDataLayout layout, ref readonly DIBuilder diBuilder) - parameters: - - id: layout - type: Ubiquity.NET.Llvm.IDataLayout - description: Type layout information - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder for creating the new debug information - content.vb: Public Sub ResolveTemporary(layout As IDataLayout, diBuilder As DIBuilder) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary* - nameWithType.vb: DebugArrayType.ResolveTemporary(IDataLayout, DIBuilder) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary(Ubiquity.NET.Llvm.IDataLayout, Ubiquity.NET.Llvm.DebugInfo.DIBuilder) - name.vb: ResolveTemporary(IDataLayout, DIBuilder) -references: -- uid: Ubiquity.NET.Llvm.Types.IArrayType - commentId: T:Ubiquity.NET.Llvm.Types.IArrayType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IArrayType.html - name: IArrayType - nameWithType: IArrayType - fullName: Ubiquity.NET.Llvm.Types.IArrayType -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - name: DICompositeType - nameWithType: DICompositeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of IArrayType, DICompositeType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType) - name.vb: DebugType(Of IArrayType, DICompositeType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.IArrayType - name: IArrayType - href: Ubiquity.NET.Llvm.Types.IArrayType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IArrayType - name: IArrayType - href: Ubiquity.NET.Llvm.Types.IArrayType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of IArrayType, DICompositeType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType) - name.vb: IDebugType(Of IArrayType, DICompositeType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.IArrayType - name: IArrayType - href: Ubiquity.NET.Llvm.Types.IArrayType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IArrayType - name: IArrayType - href: Ubiquity.NET.Llvm.Types.IArrayType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeHandleOwner) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeHandleOwner) - name.vb: IEquatable(Of ITypeHandleOwner) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ISequenceType - commentId: T:Ubiquity.NET.Llvm.Types.ISequenceType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ISequenceType.html - name: ISequenceType - nameWithType: ISequenceType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of IArrayType, DICompositeType).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IArrayType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IArrayType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of TNative, TDebug).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of TNative, TDebug).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of TNative, TDebug).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of TNative, TDebug).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of TNative, TDebug).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of TNative, TDebug).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of TNative, TDebug).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of TNative, TDebug).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of TNative, TDebug).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of TNative, TDebug).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of TNative, TDebug).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html - name: DebugArrayType - nameWithType: DebugArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html#Ubiquity_NET_Llvm_DebugInfo_DebugArrayType__ctor_Ubiquity_NET_Llvm_Types_IArrayType_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_System_UInt32_ - name: DebugArrayType - nameWithType: DebugArrayType.DebugArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugArrayType - nameWithType.vb: DebugArrayType.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.New - name.vb: New -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html#Ubiquity_NET_Llvm_DebugInfo_DebugArrayType_LowerBound - name: LowerBound - nameWithType: DebugArrayType.LowerBound - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html#Ubiquity_NET_Llvm_DebugInfo_DebugArrayType_DebugElementType - name: DebugElementType - nameWithType: DebugArrayType.DebugElementType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.DebugElementType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html#Ubiquity_NET_Llvm_DebugInfo_DebugArrayType_ElementType - name: ElementType - nameWithType: DebugArrayType.ElementType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ElementType -- uid: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - commentId: P:Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - parent: Ubiquity.NET.Llvm.Types.ISequenceType - href: Ubiquity.NET.Llvm.Types.ISequenceType.html#Ubiquity_NET_Llvm_Types_ISequenceType_ElementType - name: ElementType - nameWithType: ISequenceType.ElementType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html#Ubiquity_NET_Llvm_DebugInfo_DebugArrayType_Length - name: Length - nameWithType: DebugArrayType.Length - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.Length -- uid: Ubiquity.NET.Llvm.Types.IArrayType.Length - commentId: P:Ubiquity.NET.Llvm.Types.IArrayType.Length - parent: Ubiquity.NET.Llvm.Types.IArrayType - href: Ubiquity.NET.Llvm.Types.IArrayType.html#Ubiquity_NET_Llvm_Types_IArrayType_Length - name: Length - nameWithType: IArrayType.Length - fullName: Ubiquity.NET.Llvm.Types.IArrayType.Length -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html#Ubiquity_NET_Llvm_DebugInfo_DebugArrayType_LowerBound - name: LowerBound - nameWithType: DebugArrayType.LowerBound - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.LowerBound -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html#Ubiquity_NET_Llvm_DebugInfo_DebugArrayType_ResolveTemporary_Ubiquity_NET_Llvm_IDataLayout_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__ - name: ResolveTemporary - nameWithType: DebugArrayType.ResolveTemporary - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.ResolveTemporary -- uid: Ubiquity.NET.Llvm.IDataLayout - commentId: T:Ubiquity.NET.Llvm.IDataLayout - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IDataLayout.html - name: IDataLayout - nameWithType: IDataLayout - fullName: Ubiquity.NET.Llvm.IDataLayout -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.yml deleted file mode 100644 index cff26a3370..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.yml +++ /dev/null @@ -1,1505 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - id: DebugBasicType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind) - langs: - - csharp - - vb - name: DebugBasicType - nameWithType: DebugBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugBasicType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugBasicType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugBasicType.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information binding between an LLVM native and a - remarks: >- - This class provides a binding between an LLVM type and a corresponding . - - In LLVM all primitive types are unnamed and interned. That is, any use of an i8 is always the same - - type. However, at the source language level it is common to have named primitive types that map - - to the same underlying LLVM. For example, in C and C++ char maps to i8 but so does unsigned char - - (LLVM integral types don't have signed vs unsigned). This class is designed to handle this sort - - of one to many mapping of the lower level LLVM types to source level debugging types. Each - - instance of this class represents a source level basic type and the corresponding representation - - for LLVM. - example: [] - syntax: - content: 'public class DebugBasicType : DebugType, IDebugType, ITypeRef, IEquatable, IEquatable' - content.vb: Public Class DebugBasicType Inherits DebugType(Of ITypeRef, DIBasicType) Implements IDebugType(Of ITypeRef, DIBasicType), ITypeRef, IEquatable(Of ITypeRef), IEquatable(Of ITypeHandleOwner) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dibasictype - altText: LLVM DIBasicType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - - Ubiquity.NET.Llvm.Types.ITypeRef - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.DebugInfoType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.NativeType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsSized - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.Kind - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.Context - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IntegerBitWidth - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsInteger - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsFloat - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsDouble - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsVoid - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsStruct - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsPointer - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsSequence - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsFloatingPoint - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.GetNullValue - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - extensionMethods: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind) - id: '#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DiTypeKind)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - langs: - - csharp - - vb - name: DebugBasicType(ITypeRef, ref readonly DIBuilder, string, DiTypeKind) - nameWithType: DebugBasicType.DebugBasicType(ITypeRef, ref readonly DIBuilder, string, DiTypeKind) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.DebugBasicType(Ubiquity.NET.Llvm.Types.ITypeRef, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, Ubiquity.NET.Llvm.DebugInfo.DiTypeKind) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugBasicType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugBasicType.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugBasicType(ITypeRef llvmType, ref readonly DIBuilder diBuilder, string name, DiTypeKind encoding) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to wrap debug information for - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder for this module - - id: name - type: System.String - description: Source language name of the type - - id: encoding - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - description: Encoding for the type - content.vb: Public Sub New(llvmType As ITypeRef, diBuilder As DIBuilder, name As String, encoding As DiTypeKind) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.#ctor* - nameWithType.vb: DebugBasicType.New(ITypeRef, DIBuilder, String, DiTypeKind) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.New(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Ubiquity.NET.Llvm.DebugInfo.DiTypeKind) - name.vb: New(ITypeRef, DIBuilder, String, DiTypeKind) -references: -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBasicType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.html - name: DIBasicType - nameWithType: DIBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBasicType -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType) - name.vb: DebugType(Of ITypeRef, DIBasicType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - name: DIBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - name: DIBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIBasicType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType) - name.vb: IDebugType(Of ITypeRef, DIBasicType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - name: DIBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - name: DIBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeHandleOwner) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeHandleOwner) - name.vb: IEquatable(Of ITypeHandleOwner) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsSized - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.Kind - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.Context - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IntegerBitWidth - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsInteger - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsDouble - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsVoid - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsStruct - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsPointer - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsSequence - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.IsFloatingPoint - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.GetNullValue - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of ITypeRef, DIBasicType).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBasicType).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBasicType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of TNative, TDebug).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of TNative, TDebug).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of TNative, TDebug).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of TNative, TDebug).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of TNative, TDebug).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of TNative, TDebug).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of TNative, TDebug).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of TNative, TDebug).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of TNative, TDebug).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of TNative, TDebug).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of TNative, TDebug).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.html - name: DebugBasicType - nameWithType: DebugBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.html#Ubiquity_NET_Llvm_DebugInfo_DebugBasicType__ctor_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_String_Ubiquity_NET_Llvm_DebugInfo_DiTypeKind_ - name: DebugBasicType - nameWithType: DebugBasicType.DebugBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.DebugBasicType - nameWithType.vb: DebugBasicType.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.New - name.vb: New -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.html - name: DiTypeKind - nameWithType: DiTypeKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.yml deleted file mode 100644 index ba34605661..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.yml +++ /dev/null @@ -1,1971 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - id: DebugFunctionType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.#ctor(Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - - Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg - - Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes - - Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType - langs: - - csharp - - vb - name: DebugFunctionType - nameWithType: DebugFunctionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugFunctionType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: >- - This class provides debug information binding for an - and a - remarks: >- -

Function signatures are unnamed interned types in LLVM. While there is usually a one - - to one mapping between an LLVM function signature type and the source language debug - - signature type - that isn't always true. In particular, when passing data by value. In - - cases where the address of a by value structure is needed, a common pattern is to use - - a pointer to the structure in the signature, then perform an Alloca + memcpy. The - - actual approach taken depends on the calling conventions of the target. In these cases - - you get an LLVM signature that doesn't match the source and could actually match another - - source function where a pointer to the structure is actually used in the source.

- -

For example, the following two C language functions might use the same LLVM signature: - -

void foo(struct bar)
- - -
void foo2(struct bar*)
- - Implementing both of those might be done in LLVM with a single signature: - -
void (%struct.bar*)

- -

This class is designed to provide mapping between the debug signature type - - and the underlying LLVM type

- -
note

It is important to keep in mind that signatures are only concerned - - with types. That is, they do not include names of parameters. Parameter information is - - provided by - - and [DIBuilder.InsertDeclare](xref:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.InsertDeclare*)

- example: [] - syntax: - content: 'public class DebugFunctionType : DebugType, IDebugType, IEquatable, IFunctionType, ITypeRef, IEquatable' - content.vb: Public Class DebugFunctionType Inherits DebugType(Of IFunctionType, DISubroutineType) Implements IDebugType(Of IFunctionType, DISubroutineType), IEquatable(Of ITypeHandleOwner), IFunctionType, ITypeRef, IEquatable(Of ITypeRef) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#disubroutinetype - altText: LLVM DISubroutineType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - - Ubiquity.NET.Llvm.Types.IFunctionType - - Ubiquity.NET.Llvm.Types.ITypeRef - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.DebugInfoType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.NativeType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsSized - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.Kind - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.Context - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IntegerBitWidth - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsInteger - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsFloat - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsDouble - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsVoid - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsStruct - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsPointer - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsSequence - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsFloatingPoint - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.GetNullValue - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - extensionMethods: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.#ctor(Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.#ctor(Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - id: '#ctor(Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[])' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - langs: - - csharp - - vb - name: DebugFunctionType(IFunctionType, ref readonly DIBuilder, DebugInfoFlags, IDebugType, params IDebugType[]) - nameWithType: DebugFunctionType.DebugFunctionType(IFunctionType, ref readonly DIBuilder, DebugInfoFlags, IDebugType, params IDebugType[]) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.DebugFunctionType(Ubiquity.NET.Llvm.Types.IFunctionType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params Ubiquity.NET.Llvm.DebugInfo.IDebugType[]) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugFunctionType(IFunctionType llvmType, ref readonly DIBuilder diBuilder, DebugInfoFlags debugFlags, IDebugType retType, params IDebugType[] argTypes) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.IFunctionType - description: Native LLVM function signature - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use in creating this instance - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: for this signature - - id: retType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type for the function - - id: argTypes - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[] - description: Potentially empty set of argument types for the signature - content.vb: Public Sub New(llvmType As IFunctionType, diBuilder As DIBuilder, debugFlags As DebugInfoFlags, retType As IDebugType(Of ITypeRef, DIType), ParamArray argTypes As IDebugType(Of ITypeRef, DIType)()) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.#ctor* - nameWithType.vb: DebugFunctionType.New(IFunctionType, DIBuilder, DebugInfoFlags, IDebugType(Of ITypeRef, DIType), ParamArray IDebugType(Of ITypeRef, DIType)()) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.New(Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), ParamArray Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)()) - name.vb: New(IFunctionType, DIBuilder, DebugInfoFlags, IDebugType(Of ITypeRef, DIType), ParamArray IDebugType(Of ITypeRef, DIType)()) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg - id: IsVarArg - parent: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - langs: - - csharp - - vb - name: IsVarArg - nameWithType: DebugFunctionType.IsVarArg - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsVarArg - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - startLine: 59 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether this signature is for a variadic function - example: [] - syntax: - content: public bool IsVarArg { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsVarArg As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg* - implements: - - Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType - id: ReturnType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - langs: - - csharp - - vb - name: ReturnType - nameWithType: DebugFunctionType.ReturnType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReturnType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the return type of the function - example: [] - syntax: - content: public ITypeRef ReturnType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property ReturnType As ITypeRef - overload: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType* - implements: - - Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes - id: ParameterTypes - parent: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - langs: - - csharp - - vb - name: ParameterTypes - nameWithType: DebugFunctionType.ParameterTypes - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ParameterTypes - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugFunctionType.cs - startLine: 65 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the types of the parameters for the function - example: [] - syntax: - content: public IReadOnlyList ParameterTypes { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - content.vb: Public ReadOnly Property ParameterTypes As IReadOnlyList(Of ITypeRef) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes* - implements: - - Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes -references: -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html - name: DISubroutineType - nameWithType: DISubroutineType - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateArgument_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIType_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_UInt16_ - name: CreateArgument(DIScope, string, DIFile, uint, DIType, bool, DebugInfoFlags, ushort) - nameWithType: DIBuilder.CreateArgument(DIScope, string, DIFile, uint, DIType, bool, DebugInfoFlags, ushort) - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope, string, Ubiquity.NET.Llvm.DebugInfo.DIFile, uint, Ubiquity.NET.Llvm.DebugInfo.DIType, bool, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, ushort) - nameWithType.vb: DIBuilder.CreateArgument(DIScope, String, DIFile, UInteger, DIType, Boolean, DebugInfoFlags, UShort) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DIType, Boolean, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, UShort) - name.vb: CreateArgument(DIScope, String, DIFile, UInteger, DIType, Boolean, DebugInfoFlags, UShort) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16) - name: CreateArgument - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateArgument_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIType_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_UInt16_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - name: DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - name: DIFile - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - name: DebugInfoFlags - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - - name: ',' - - name: " " - - uid: System.UInt16 - name: ushort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.CreateArgument(Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.UInt16) - name: CreateArgument - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html#Ubiquity_NET_Llvm_DebugInfo_DIBuilder_CreateArgument_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DIType_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_UInt16_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - name: DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - name: DIFile - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - name: DebugInfoFlags - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - - name: ',' - - name: " " - - uid: System.UInt16 - name: UShort - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType) - name.vb: DebugType(Of IFunctionType, DISubroutineType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.IFunctionType - name: IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - name: DISubroutineType - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IFunctionType - name: IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - name: DISubroutineType - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of IFunctionType, DISubroutineType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType) - name.vb: IDebugType(Of IFunctionType, DISubroutineType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.IFunctionType - name: IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - name: DISubroutineType - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IFunctionType - name: IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - name: DISubroutineType - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeHandleOwner) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeHandleOwner) - name.vb: IEquatable(Of ITypeHandleOwner) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsSized - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.Kind - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.Context - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IntegerBitWidth - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsInteger - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsDouble - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsVoid - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsStruct - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsPointer - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsSequence - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.IsFloatingPoint - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.GetNullValue - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of IFunctionType, DISubroutineType).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IFunctionType, Ubiquity.NET.Llvm.DebugInfo.DISubroutineType).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IFunctionType,Ubiquity.NET.Llvm.DebugInfo.DISubroutineType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of TNative, TDebug).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of TNative, TDebug).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of TNative, TDebug).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of TNative, TDebug).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of TNative, TDebug).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of TNative, TDebug).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of TNative, TDebug).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of TNative, TDebug).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of TNative, TDebug).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of TNative, TDebug).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of TNative, TDebug).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html - name: DebugFunctionType - nameWithType: DebugFunctionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugFunctionType__ctor_Ubiquity_NET_Llvm_Types_IFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType____ - name: DebugFunctionType - nameWithType: DebugFunctionType.DebugFunctionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.DebugFunctionType - nameWithType.vb: DebugFunctionType.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.New - name.vb: New -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[] - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType[] - nameWithType: IDebugType[] - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType[] - nameWithType.vb: IDebugType(Of ITypeRef, DIType)() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)() - name.vb: IDebugType(Of ITypeRef, DIType)() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugFunctionType_IsVarArg - name: IsVarArg - nameWithType: DebugFunctionType.IsVarArg - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.IsVarArg -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg - commentId: P:Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg - parent: Ubiquity.NET.Llvm.Types.IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html#Ubiquity_NET_Llvm_Types_IFunctionType_IsVarArg - name: IsVarArg - nameWithType: IFunctionType.IsVarArg - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugFunctionType_ReturnType - name: ReturnType - nameWithType: DebugFunctionType.ReturnType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ReturnType -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType - commentId: P:Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType - parent: Ubiquity.NET.Llvm.Types.IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html#Ubiquity_NET_Llvm_Types_IFunctionType_ReturnType - name: ReturnType - nameWithType: IFunctionType.ReturnType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugFunctionType_ParameterTypes - name: ParameterTypes - nameWithType: DebugFunctionType.ParameterTypes - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.ParameterTypes -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes - commentId: P:Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes - parent: Ubiquity.NET.Llvm.Types.IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html#Ubiquity_NET_Llvm_Types_IFunctionType_ParameterTypes - name: ParameterTypes - nameWithType: IFunctionType.ParameterTypes - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of ITypeRef) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IReadOnlyList(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml deleted file mode 100644 index 395dbd599a..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.yml +++ /dev/null @@ -1,1013 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - id: DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AccessibilityMask - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AppleBlock - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Artificial - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BigEndian - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BitField - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.EnumClass - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Explicit - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.FixedEnum - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ForwardDeclaration - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IndirectVirtualBase - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IntroducedVirtual - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LValueReference - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LittleEndian - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.MultipleInheritance - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NoReturn - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NonTrivial - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.None - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjcClassComplete - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjectPointer - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Private - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Protected - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Prototyped - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.PtrToMemberRep - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Public - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.RValueReference - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Reserved - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.SingleInheritance - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.StaticMember - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Thunk - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByReference - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByValue - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Vector - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Virtual - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.VirtualInheritance - langs: - - csharp - - vb - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugInfoFlags - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 220 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information flags - remarks: >- - The three accessibility flags are mutually exclusive and rolled together - - in the first two bits. - example: [] - syntax: - content: >- - [Flags] - - public enum DebugInfoFlags - content.vb: >- - - - Public Enum DebugInfoFlags - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.None - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.None - id: None - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: None - nameWithType: DebugInfoFlags.None - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 225 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Private - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Private - id: Private - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Private - nameWithType: DebugInfoFlags.Private - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Private - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Private - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 226 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Private = 1 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Protected - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Protected - id: Protected - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Protected - nameWithType: DebugInfoFlags.Protected - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Protected - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Protected - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 227 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Protected = 2 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Public - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Public - id: Public - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Public - nameWithType: DebugInfoFlags.Public - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Public - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Public - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 228 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Public = Private | Protected - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - content.vb: Public = Private Or Protected -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ForwardDeclaration - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ForwardDeclaration - id: ForwardDeclaration - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: ForwardDeclaration - nameWithType: DebugInfoFlags.ForwardDeclaration - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ForwardDeclaration - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ForwardDeclaration - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 229 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ForwardDeclaration = 4 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AppleBlock - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AppleBlock - id: AppleBlock - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: AppleBlock - nameWithType: DebugInfoFlags.AppleBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AppleBlock - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AppleBlock - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 230 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: AppleBlock = 8 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Virtual - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Virtual - id: Virtual - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Virtual - nameWithType: DebugInfoFlags.Virtual - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Virtual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Virtual - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 231 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Virtual = 32 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Artificial - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Artificial - id: Artificial - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Artificial - nameWithType: DebugInfoFlags.Artificial - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Artificial - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Artificial - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 232 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Artificial = 64 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Explicit - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Explicit - id: Explicit - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Explicit - nameWithType: DebugInfoFlags.Explicit - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Explicit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Explicit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 233 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Explicit = 128 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Prototyped - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Prototyped - id: Prototyped - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Prototyped - nameWithType: DebugInfoFlags.Prototyped - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Prototyped - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Prototyped - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 234 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Prototyped = 256 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjcClassComplete - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjcClassComplete - id: ObjcClassComplete - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: ObjcClassComplete - nameWithType: DebugInfoFlags.ObjcClassComplete - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjcClassComplete - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ObjcClassComplete - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 235 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ObjcClassComplete = 512 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjectPointer - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjectPointer - id: ObjectPointer - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: ObjectPointer - nameWithType: DebugInfoFlags.ObjectPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.ObjectPointer - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ObjectPointer - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 236 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ObjectPointer = 1024 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Vector - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Vector - id: Vector - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Vector - nameWithType: DebugInfoFlags.Vector - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Vector - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Vector - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 237 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Vector = 2048 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.StaticMember - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.StaticMember - id: StaticMember - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: StaticMember - nameWithType: DebugInfoFlags.StaticMember - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.StaticMember - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StaticMember - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 238 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: StaticMember = 4096 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LValueReference - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LValueReference - id: LValueReference - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: LValueReference - nameWithType: DebugInfoFlags.LValueReference - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LValueReference - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LValueReference - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 239 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: LValueReference = 8192 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.RValueReference - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.RValueReference - id: RValueReference - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: RValueReference - nameWithType: DebugInfoFlags.RValueReference - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.RValueReference - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RValueReference - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 240 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: RValueReference = 16384 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Reserved - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Reserved - id: Reserved - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Reserved - nameWithType: DebugInfoFlags.Reserved - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Reserved - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reserved - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 241 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reserved = 32768 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.SingleInheritance - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.SingleInheritance - id: SingleInheritance - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: SingleInheritance - nameWithType: DebugInfoFlags.SingleInheritance - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.SingleInheritance - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SingleInheritance - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 242 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SingleInheritance = 65536 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.MultipleInheritance - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.MultipleInheritance - id: MultipleInheritance - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: MultipleInheritance - nameWithType: DebugInfoFlags.MultipleInheritance - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.MultipleInheritance - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MultipleInheritance - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 243 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: MultipleInheritance = 131072 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.VirtualInheritance - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.VirtualInheritance - id: VirtualInheritance - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: VirtualInheritance - nameWithType: DebugInfoFlags.VirtualInheritance - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.VirtualInheritance - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VirtualInheritance - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 244 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: VirtualInheritance = SingleInheritance | MultipleInheritance - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - content.vb: VirtualInheritance = SingleInheritance Or MultipleInheritance -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IntroducedVirtual - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IntroducedVirtual - id: IntroducedVirtual - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: IntroducedVirtual - nameWithType: DebugInfoFlags.IntroducedVirtual - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IntroducedVirtual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntroducedVirtual - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 245 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: IntroducedVirtual = 262144 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BitField - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BitField - id: BitField - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: BitField - nameWithType: DebugInfoFlags.BitField - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BitField - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitField - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 246 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BitField = 524288 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NoReturn - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NoReturn - id: NoReturn - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: NoReturn - nameWithType: DebugInfoFlags.NoReturn - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NoReturn - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoReturn - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 247 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: NoReturn = 1048576 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByValue - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByValue - id: TypePassByValue - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: TypePassByValue - nameWithType: DebugInfoFlags.TypePassByValue - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByValue - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TypePassByValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 248 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TypePassByValue = 4194304 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByReference - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByReference - id: TypePassByReference - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: TypePassByReference - nameWithType: DebugInfoFlags.TypePassByReference - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.TypePassByReference - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TypePassByReference - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 249 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TypePassByReference = 8388608 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.EnumClass - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.EnumClass - id: EnumClass - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: EnumClass - nameWithType: DebugInfoFlags.EnumClass - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.EnumClass - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EnumClass - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 250 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: EnumClass = 16777216 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.FixedEnum - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.FixedEnum - id: FixedEnum - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: FixedEnum - nameWithType: DebugInfoFlags.FixedEnum - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.FixedEnum - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FixedEnum - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 251 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: FixedEnum = 16777216 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Thunk - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Thunk - id: Thunk - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: Thunk - nameWithType: DebugInfoFlags.Thunk - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.Thunk - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Thunk - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 252 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Thunk = 33554432 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NonTrivial - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NonTrivial - id: NonTrivial - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: NonTrivial - nameWithType: DebugInfoFlags.NonTrivial - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.NonTrivial - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NonTrivial - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 253 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: NonTrivial = 67108864 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BigEndian - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BigEndian - id: BigEndian - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: BigEndian - nameWithType: DebugInfoFlags.BigEndian - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.BigEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BigEndian - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 254 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BigEndian = 134217728 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LittleEndian - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LittleEndian - id: LittleEndian - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: LittleEndian - nameWithType: DebugInfoFlags.LittleEndian - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.LittleEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LittleEndian - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 255 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: LittleEndian = 268435456 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IndirectVirtualBase - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IndirectVirtualBase - id: IndirectVirtualBase - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: IndirectVirtualBase - nameWithType: DebugInfoFlags.IndirectVirtualBase - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.IndirectVirtualBase - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IndirectVirtualBase - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 256 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: IndirectVirtualBase = ForwardDeclaration | Virtual - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - content.vb: IndirectVirtualBase = ForwardDeclaration Or Virtual -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AccessibilityMask - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AccessibilityMask - id: AccessibilityMask - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: AccessibilityMask - nameWithType: DebugInfoFlags.AccessibilityMask - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.AccessibilityMask - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AccessibilityMask - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 257 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: AccessibilityMask = Private | Protected - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - content.vb: AccessibilityMask = Private Or Protected -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.PtrToMemberRep - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.PtrToMemberRep - id: PtrToMemberRep - parent: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - langs: - - csharp - - vb - name: PtrToMemberRep - nameWithType: DebugInfoFlags.PtrToMemberRep - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.PtrToMemberRep - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PtrToMemberRep - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 258 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PtrToMemberRep = SingleInheritance | MultipleInheritance - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - content.vb: PtrToMemberRep = SingleInheritance Or MultipleInheritance -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml deleted file mode 100644 index 315e3159d8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.yml +++ /dev/null @@ -1,797 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - id: DebugMemberInfo - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.#ctor(System.UInt32,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout) - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name - langs: - - csharp - - vb - name: DebugMemberInfo - nameWithType: DebugMemberInfo - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugMemberInfo - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Describes a member/field of a type for creating debug information - remarks: >- -

This class is used with to provide debug information for a type.

- -

In order to support explicit layout structures the members relating to layout are all nullable. - - When they are null then modules target specific layout information is used to determine - - layout details. Setting the layout members of this class to non-null will override that behavior to define explicit - - layout details.

- example: [] - syntax: - content: public class DebugMemberInfo - content.vb: Public Class DebugMemberInfo - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.#ctor(System.UInt32,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.#ctor(System.UInt32,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout) - id: '#ctor(System.UInt32,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - langs: - - csharp - - vb - name: DebugMemberInfo(uint, string, DIFile?, uint, IDebugType, DebugInfoFlags, DebugMemberLayout?) - nameWithType: DebugMemberInfo.DebugMemberInfo(uint, string, DIFile?, uint, IDebugType, DebugInfoFlags, DebugMemberLayout?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugMemberInfo(uint, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.IDebugType, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout?) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugMemberInfo(uint index, string name, DIFile? file, uint line, IDebugType debugType, DebugInfoFlags debugInfoFlags = DebugInfoFlags.None, DebugMemberLayout? explicitLayout = null) - parameters: - - id: index - type: System.UInt32 - description: Member index - - id: name - type: System.String - description: Member name - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the declaration of the member - - id: line - type: System.UInt32 - description: Line number containing the member - - id: debugType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Debug type for the member - - id: debugInfoFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: Flags for the member - - id: explicitLayout - type: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - description: Explicit layout information for this member, if any - content.vb: Public Sub New(index As UInteger, name As String, file As DIFile, line As UInteger, debugType As IDebugType(Of ITypeRef, DIType), debugInfoFlags As DebugInfoFlags = DebugInfoFlags.None, explicitLayout As DebugMemberLayout = Nothing) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.#ctor* - nameWithType.vb: DebugMemberInfo.New(UInteger, String, DIFile, UInteger, IDebugType(Of ITypeRef, DIType), DebugInfoFlags, DebugMemberLayout) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.New(UInteger, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout) - name.vb: New(UInteger, String, DIFile, UInteger, IDebugType(Of ITypeRef, DIType), DebugInfoFlags, DebugMemberLayout) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index - id: Index - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - langs: - - csharp - - vb - name: Index - nameWithType: DebugMemberInfo.Index - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Index - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the LLVM structure element index this descriptor describes - example: [] - syntax: - content: public uint Index { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Index As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - langs: - - csharp - - vb - name: Name - nameWithType: DebugMemberInfo.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the field - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File - id: File - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - langs: - - csharp - - vb - name: File - nameWithType: DebugMemberInfo.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: File - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the file the field is declared in - example: [] - syntax: - content: public DIFile? File { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - content.vb: Public ReadOnly Property File As DIFile - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line - id: Line - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - langs: - - csharp - - vb - name: Line - nameWithType: DebugMemberInfo.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Line - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the source line the field is declared on - example: [] - syntax: - content: public uint Line { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Line As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags - id: DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - langs: - - csharp - - vb - name: DebugInfoFlags - nameWithType: DebugMemberInfo.DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugInfoFlags - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the flags for the field declaration - example: [] - syntax: - content: public DebugInfoFlags DebugInfoFlags { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - content.vb: Public ReadOnly Property DebugInfoFlags As DebugInfoFlags - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType - id: DebugType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - langs: - - csharp - - vb - name: DebugType - nameWithType: DebugMemberInfo.DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the debug type information for this field - example: [] - syntax: - content: public IDebugType DebugType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - content.vb: Public ReadOnly Property DebugType As IDebugType(Of ITypeRef, DIType) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout - id: ExplicitLayout - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - langs: - - csharp - - vb - name: ExplicitLayout - nameWithType: DebugMemberInfo.ExplicitLayout - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExplicitLayout - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberInfo.cs - startLine: 72 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the explicit layout information for this member - remarks: >- - If this is null then DebugStructType.SetBody - will default to using to determine the size using the module's target specific layout. -
Important

- If this property is provided (e.g. is not null) for any member of a type, then - it must be set for *all* members. In other words explicit layout must be defined for all members - or none. Furthermore, for types using explicit layout, the LLVM type containing this member must - include the "packed" modifier. -

- example: [] - syntax: - content: public DebugMemberLayout? ExplicitLayout { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - content.vb: Public ReadOnly Property ExplicitLayout As DebugMemberLayout - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugStructType - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html - name: DebugStructType - nameWithType: DebugStructType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType -- uid: Ubiquity.NET.Llvm.Module.Layout - commentId: P:Ubiquity.NET.Llvm.Module.Layout - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Layout - name: Layout - nameWithType: Module.Layout - fullName: Ubiquity.NET.Llvm.Module.Layout -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - name: DebugMemberInfo - nameWithType: DebugMemberInfo - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo__ctor_System_UInt32_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_Ubiquity_NET_Llvm_DebugInfo_DebugMemberLayout_ - name: DebugMemberInfo - nameWithType: DebugMemberInfo.DebugMemberInfo - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugMemberInfo - nameWithType.vb: DebugMemberInfo.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.New - name.vb: New -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.html - name: DebugMemberLayout - nameWithType: DebugMemberLayout - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo_Index - name: Index - nameWithType: DebugMemberInfo.Index - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Index -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo_Name - name: Name - nameWithType: DebugMemberInfo.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo_File - name: File - nameWithType: DebugMemberInfo.File - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.File -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo_Line - name: Line - nameWithType: DebugMemberInfo.Line - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.Line -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo_DebugInfoFlags - name: DebugInfoFlags - nameWithType: DebugMemberInfo.DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo_DebugType - name: DebugType - nameWithType: DebugMemberInfo.DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.DebugType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo_ExplicitLayout - name: ExplicitLayout - nameWithType: DebugMemberInfo.ExplicitLayout - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.ExplicitLayout diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.yml deleted file mode 100644 index 68e46b148b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.yml +++ /dev/null @@ -1,518 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - id: DebugMemberLayout - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.#ctor(System.UInt64,System.UInt32,System.UInt64) - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize - langs: - - csharp - - vb - name: DebugMemberLayout - nameWithType: DebugMemberLayout - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugMemberLayout - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: DebugMemberLayout is used to define custom layout information for structure members - remarks: >- - Ordinarily layout information is handle automatically in - - DebugStructType.SetBody - - however in cases where explicitly controlled (or "packed") layout is required, instances of DebugMemberLayout are - - used to provide the information necessary to generate a proper type and debug information. - example: [] - syntax: - content: public class DebugMemberLayout - content.vb: Public Class DebugMemberLayout - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.#ctor(System.UInt64,System.UInt32,System.UInt64) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.#ctor(System.UInt64,System.UInt32,System.UInt64) - id: '#ctor(System.UInt64,System.UInt32,System.UInt64)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - langs: - - csharp - - vb - name: DebugMemberLayout(ulong, uint, ulong) - nameWithType: DebugMemberLayout.DebugMemberLayout(ulong, uint, ulong) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.DebugMemberLayout(ulong, uint, ulong) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugMemberLayout(ulong bitSize, uint bitAlignment, ulong bitOffset) - parameters: - - id: bitSize - type: System.UInt64 - description: Size of the member in bits - - id: bitAlignment - type: System.UInt32 - description: Alignment of the member in bits - - id: bitOffset - type: System.UInt64 - description: Offset of the member in bits - content.vb: Public Sub New(bitSize As ULong, bitAlignment As UInteger, bitOffset As ULong) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.#ctor* - nameWithType.vb: DebugMemberLayout.New(ULong, UInteger, ULong) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.New(ULong, UInteger, ULong) - name.vb: New(ULong, UInteger, ULong) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize - id: BitSize - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - langs: - - csharp - - vb - name: BitSize - nameWithType: DebugMemberLayout.BitSize - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitSize - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the bit size for the field - example: [] - syntax: - content: public ulong BitSize { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property BitSize As ULong - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment - id: BitAlignment - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - langs: - - csharp - - vb - name: BitAlignment - nameWithType: DebugMemberLayout.BitAlignment - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitAlignment - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the bit alignment for the field - example: [] - syntax: - content: public uint BitAlignment { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property BitAlignment As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset - id: BitOffset - parent: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - langs: - - csharp - - vb - name: BitOffset - nameWithType: DebugMemberLayout.BitOffset - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitOffset - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugMemberLayout.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the bit offset for the field in it's containing type - example: [] - syntax: - content: public ulong BitOffset { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property BitOffset As ULong - overload: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.html - name: DebugMemberLayout - nameWithType: DebugMemberLayout - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberLayout__ctor_System_UInt64_System_UInt32_System_UInt64_ - name: DebugMemberLayout - nameWithType: DebugMemberLayout.DebugMemberLayout - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.DebugMemberLayout - nameWithType.vb: DebugMemberLayout.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.New - name.vb: New -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberLayout_BitSize - name: BitSize - nameWithType: DebugMemberLayout.BitSize - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitSize -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberLayout_BitAlignment - name: BitAlignment - nameWithType: DebugMemberLayout.BitAlignment - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitAlignment -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.html#Ubiquity_NET_Llvm_DebugInfo_DebugMemberLayout_BitOffset - name: BitOffset - nameWithType: DebugMemberLayout.BitOffset - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.BitOffset diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml deleted file mode 100644 index 4899bce660..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.yml +++ /dev/null @@ -1,1841 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - id: DebugPointerType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.String,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType) - - Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.String,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace - - Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType - langs: - - csharp - - vb - name: DebugPointerType - nameWithType: DebugPointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugPointerType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Binding between a and an - example: [] - syntax: - content: 'public sealed class DebugPointerType : DebugType, IDebugType, IEquatable, IPointerType, ITypeRef, IEquatable' - content.vb: Public NotInheritable Class DebugPointerType Inherits DebugType(Of IPointerType, DIType) Implements IDebugType(Of IPointerType, DIType), IEquatable(Of ITypeHandleOwner), IPointerType, ITypeRef, IEquatable(Of ITypeRef) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#ditype - altText: LLVM DIType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - - Ubiquity.NET.Llvm.Types.IPointerType - - Ubiquity.NET.Llvm.Types.ITypeRef - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.DebugInfoType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.NativeType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsSized - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.Kind - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.Context - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IntegerBitWidth - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsInteger - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsFloat - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsDouble - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsVoid - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsStruct - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsPointer - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsSequence - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsFloatingPoint - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.GetNullValue - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - extensionMethods: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - - Ubiquity.NET.Llvm.Types.IPointerType.Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.String,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.String,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - langs: - - csharp - - vb - name: DebugPointerType(IDebugType, ref readonly DIBuilder, uint, string?, uint) - nameWithType: DebugPointerType.DebugPointerType(IDebugType, ref readonly DIBuilder, uint, string?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.DebugPointerType(Ubiquity.NET.Llvm.DebugInfo.IDebugType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, string?, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugPointerType(IDebugType debugElementType, ref readonly DIBuilder diBuilder, uint addressSpace = 0, string? name = null, uint alignment = 0) - parameters: - - id: debugElementType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Debug type of the pointee - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use in creating this instance - - id: addressSpace - type: System.UInt32 - description: 'Target address space for the pointer [Default: 0]' - - id: name - type: System.String - description: 'Name of the type [Default: null]' - - id: alignment - type: System.UInt32 - description: Alignment on pointer - content.vb: Public Sub New(debugElementType As IDebugType(Of ITypeRef, DIType), diBuilder As DIBuilder, addressSpace As UInteger = 0, name As String = Nothing, alignment As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor* - nameWithType.vb: DebugPointerType.New(IDebugType(Of ITypeRef, DIType), DIBuilder, UInteger, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.New(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, String, UInteger) - name.vb: New(IDebugType(Of ITypeRef, DIType), DIBuilder, UInteger, String, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.String,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.UInt32,System.String,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - langs: - - csharp - - vb - name: DebugPointerType(ITypeRef, ref readonly DIBuilder, DIType?, uint, string?, uint) - nameWithType: DebugPointerType.DebugPointerType(ITypeRef, ref readonly DIBuilder, DIType?, uint, string?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.DebugPointerType(Ubiquity.NET.Llvm.Types.ITypeRef, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIType?, uint, string?, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugPointerType(ITypeRef llvmElementType, ref readonly DIBuilder diBuilder, DIType? elementType, uint addressSpace = 0, string? name = null, uint alignment = 0) - parameters: - - id: llvmElementType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Native type of the pointee - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use in creating this instance - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Debug type of the pointee - - id: addressSpace - type: System.UInt32 - description: 'Target address space for the pointer [Default: 0]' - - id: name - type: System.String - description: 'Name of the type [Default: null]' - - id: alignment - type: System.UInt32 - description: Alignment of pointer - content.vb: Public Sub New(llvmElementType As ITypeRef, diBuilder As DIBuilder, elementType As DIType, addressSpace As UInteger = 0, name As String = Nothing, alignment As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor* - nameWithType.vb: DebugPointerType.New(ITypeRef, DIBuilder, DIType, UInteger, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.New(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIType, UInteger, String, UInteger) - name.vb: New(ITypeRef, DIBuilder, DIType, UInteger, String, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIType,System.String,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - langs: - - csharp - - vb - name: DebugPointerType(IPointerType, ref readonly DIBuilder, DIType?, string?, uint) - nameWithType: DebugPointerType.DebugPointerType(IPointerType, ref readonly DIBuilder, DIType?, string?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.DebugPointerType(Ubiquity.NET.Llvm.Types.IPointerType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIType?, string?, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class to bind with an existing pointer type - remarks: >- - Due to the move to opaque pointers in LLVM, this form has a null - - property as the elements the pointer refers to are - - unknown. - example: [] - syntax: - content: public DebugPointerType(IPointerType llvmPtrType, ref readonly DIBuilder diBuilder, DIType? elementType, string? name = null, uint alignment = 0) - parameters: - - id: llvmPtrType - type: Ubiquity.NET.Llvm.Types.IPointerType - description: Native type of the pointer - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use in creating this instance - - id: elementType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Debug type of the pointee - - id: name - type: System.String - description: 'Name of the type [Default: null]' - - id: alignment - type: System.UInt32 - description: Alignment for pointer type - content.vb: Public Sub New(llvmPtrType As IPointerType, diBuilder As DIBuilder, elementType As DIType, name As String = Nothing, alignment As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor* - nameWithType.vb: DebugPointerType.New(IPointerType, DIBuilder, DIType, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.New(Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIType, String, UInteger) - name.vb: New(IPointerType, DIBuilder, DIType, String, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType) - id: '#ctor(Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - langs: - - csharp - - vb - name: DebugPointerType(IPointerType, DIType) - nameWithType: DebugPointerType.DebugPointerType(IPointerType, DIType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.DebugPointerType(Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class to bind with an existing pointer type - remarks: >- - This constructor is typically used when building typedefs to a basic type - - to provide namespace scoping for the typedef for languages that support - - such a concept. This is needed because basic types don't have any namespace - - information in the LLVM Debug information (they are implicitly in the global - - namespace) - example: [] - syntax: - content: public DebugPointerType(IPointerType llvmPtrType, DIType debugType) - parameters: - - id: llvmPtrType - type: Ubiquity.NET.Llvm.Types.IPointerType - description: Native type of the pointer - - id: debugType - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Debug type for the pointer - content.vb: Public Sub New(llvmPtrType As IPointerType, debugType As DIType) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor* - nameWithType.vb: DebugPointerType.New(IPointerType, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.New(Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: New(IPointerType, DIType) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace - id: AddressSpace - parent: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - langs: - - csharp - - vb - name: AddressSpace - nameWithType: DebugPointerType.AddressSpace - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddressSpace - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the address space the pointer refers to - example: [] - syntax: - content: public uint AddressSpace { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property AddressSpace As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace* - implements: - - Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType - id: ElementType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - langs: - - csharp - - vb - name: ElementType - nameWithType: DebugPointerType.ElementType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ElementType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugPointerType.cs - startLine: 97 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the element type for this pointer - remarks: >- - Since LLVM moved to opaque pointer types, this may be null - - depending on how it was constructed. The constructor overloads taking an - - cannot provide an element type as the pointer is - - opaque and the type it refers to is unknown. - example: [] - syntax: - content: public ITypeRef? ElementType { get; init; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public Property ElementType As ITypeRef - overload: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType* - implements: - - Ubiquity.NET.Llvm.Types.IPointerType.ElementType -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of IPointerType, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: DebugType(Of IPointerType, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of IPointerType, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of IPointerType, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeHandleOwner) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeHandleOwner) - name.vb: IEquatable(Of ITypeHandleOwner) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of IPointerType, DIType).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of IPointerType, DIType).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsSized - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of IPointerType, DIType).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.Kind - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of IPointerType, DIType).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.Context - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of IPointerType, DIType).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IntegerBitWidth - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of IPointerType, DIType).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsInteger - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of IPointerType, DIType).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of IPointerType, DIType).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsDouble - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of IPointerType, DIType).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsVoid - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of IPointerType, DIType).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsStruct - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of IPointerType, DIType).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsPointer - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of IPointerType, DIType).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsSequence - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of IPointerType, DIType).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.IsFloatingPoint - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of IPointerType, DIType).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.GetNullValue - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of IPointerType, DIType).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of IPointerType, DIType).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of IPointerType, DIType).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of IPointerType, DIType).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of IPointerType, DIType).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of IPointerType, DIType).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IPointerType, Ubiquity.NET.Llvm.DebugInfo.DIType).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IPointerType,Ubiquity.NET.Llvm.DebugInfo.DIType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IPointerType.Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr - commentId: M:Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - parent: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - definition: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - name: IsOpaquePtr(IPointerType) - nameWithType: PointerTypeExtensions.IsOpaquePtr(IPointerType) - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - name: IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - name: IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of TNative, TDebug).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of TNative, TDebug).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of TNative, TDebug).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of TNative, TDebug).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of TNative, TDebug).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of TNative, TDebug).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of TNative, TDebug).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of TNative, TDebug).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of TNative, TDebug).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of TNative, TDebug).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of TNative, TDebug).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - commentId: M:Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - name: IsOpaquePtr(IPointerType) - nameWithType: PointerTypeExtensions.IsOpaquePtr(IPointerType) - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - name: IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - name: IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - commentId: T:Ubiquity.NET.Llvm.Types.PointerTypeExtensions - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html - name: PointerTypeExtensions - nameWithType: PointerTypeExtensions - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.html - name: DebugPointerType - nameWithType: DebugPointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.html#Ubiquity_NET_Llvm_DebugInfo_DebugPointerType__ctor_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_String_System_UInt32_ - name: DebugPointerType - nameWithType: DebugPointerType.DebugPointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.DebugPointerType - nameWithType.vb: DebugPointerType.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.New - name.vb: New -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType - href: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.html#Ubiquity_NET_Llvm_DebugInfo_DebugPointerType_ElementType - name: ElementType - nameWithType: DebugPointerType.ElementType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace - href: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.html#Ubiquity_NET_Llvm_DebugInfo_DebugPointerType_AddressSpace - name: AddressSpace - nameWithType: DebugPointerType.AddressSpace - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.AddressSpace -- uid: Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace - commentId: P:Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace - parent: Ubiquity.NET.Llvm.Types.IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html#Ubiquity_NET_Llvm_Types_IPointerType_AddressSpace - name: AddressSpace - nameWithType: IPointerType.AddressSpace - fullName: Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType - href: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.html#Ubiquity_NET_Llvm_DebugInfo_DebugPointerType_ElementType - name: ElementType - nameWithType: DebugPointerType.ElementType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.ElementType -- uid: Ubiquity.NET.Llvm.Types.IPointerType.ElementType - commentId: P:Ubiquity.NET.Llvm.Types.IPointerType.ElementType - parent: Ubiquity.NET.Llvm.Types.IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html#Ubiquity_NET_Llvm_Types_IPointerType_ElementType - name: ElementType - nameWithType: IPointerType.ElementType - fullName: Ubiquity.NET.Llvm.Types.IPointerType.ElementType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugRecord.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugRecord.yml deleted file mode 100644 index 906912151a..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugRecord.yml +++ /dev/null @@ -1,547 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugRecord - id: DebugRecord - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull - - Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord - - Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord - - Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString - langs: - - csharp - - vb - name: DebugRecord - nameWithType: DebugRecord - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugRecord - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Managed wrapper for the new LLVM Debug Record format - example: [] - syntax: - content: 'public readonly record struct DebugRecord : IEquatable' - content.vb: Public Structure DebugRecord Implements IEquatable(Of DebugRecord) - seealso: - - linkType: HRef - linkId: https://llvm.org/docs/RemoveDIsDebugInfo.html#c-api-changes - altText: https://llvm.org/docs/RemoveDIsDebugInfo.html#c-api-changes - implements: - - System.IEquatable{Ubiquity.NET.Llvm.DebugInfo.DebugRecord} - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull - id: IsNull - parent: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - langs: - - csharp - - vb - name: IsNull - nameWithType: DebugRecord.IsNull - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsNull - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether this represents a NULL handle - example: [] - syntax: - content: public bool IsNull { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsNull As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString - id: ToString - parent: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - langs: - - csharp - - vb - name: ToString() - nameWithType: DebugRecord.ToString() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Returns the fully qualified type name of this instance. - example: [] - syntax: - content: public override string? ToString() - return: - type: System.String - description: The fully qualified type name. - content.vb: Public Overrides Function ToString() As String - overridden: System.ValueType.ToString - overload: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord - id: NextRecord - parent: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - langs: - - csharp - - vb - name: NextRecord - nameWithType: DebugRecord.NextRecord - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NextRecord - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the next record in a sequence or a default constructed instance ( is true) - example: [] - syntax: - content: public DebugRecord NextRecord { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - content.vb: Public ReadOnly Property NextRecord As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord - id: PreviousRecord - parent: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - langs: - - csharp - - vb - name: PreviousRecord - nameWithType: DebugRecord.PreviousRecord - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreviousRecord - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugRecord.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the previous record in a sequence or a default constructed instance ( is true) - example: [] - syntax: - content: public DebugRecord PreviousRecord { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - content.vb: Public ReadOnly Property PreviousRecord As DebugRecord - overload: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.DebugInfo.DebugRecord} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.DebugInfo.DebugRecord} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of DebugRecord) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.DebugInfo.DebugRecord) - name.vb: IEquatable(Of DebugRecord) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - name: DebugRecord - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - name: DebugRecord - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html - - name: ) -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html#Ubiquity_NET_Llvm_DebugInfo_DebugRecord_IsNull - name: IsNull - nameWithType: DebugRecord.IsNull - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html#Ubiquity_NET_Llvm_DebugInfo_DebugRecord_ToString - name: ToString - nameWithType: DebugRecord.ToString - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.ToString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html#Ubiquity_NET_Llvm_DebugInfo_DebugRecord_IsNull - name: IsNull - nameWithType: DebugRecord.IsNull - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.IsNull -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html#Ubiquity_NET_Llvm_DebugInfo_DebugRecord_NextRecord - name: NextRecord - nameWithType: DebugRecord.NextRecord - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.NextRecord -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugRecord - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html - name: DebugRecord - nameWithType: DebugRecord - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html#Ubiquity_NET_Llvm_DebugInfo_DebugRecord_PreviousRecord - name: PreviousRecord - nameWithType: DebugRecord.PreviousRecord - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.PreviousRecord diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml deleted file mode 100644 index 1207034fa8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugStructType.yml +++ /dev/null @@ -1,2544 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugStructType - id: DebugStructType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,System.Nullable{System.UInt32},System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType},System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Nullable{System.UInt32},System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName - langs: - - csharp - - vb - name: DebugStructType - nameWithType: DebugStructType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugStructType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information for a structure type - example: [] - syntax: - content: 'public class DebugStructType : DebugType, IDebugType, IEquatable, IStructType, INamedStructuralType, ITypeRef, IEquatable' - content.vb: Public Class DebugStructType Inherits DebugType(Of IStructType, DICompositeType) Implements IDebugType(Of IStructType, DICompositeType), IEquatable(Of ITypeHandleOwner), IStructType, INamedStructuralType, ITypeRef, IEquatable(Of ITypeRef) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dicompositetype - altText: LLVM DICompositeType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - - Ubiquity.NET.Llvm.Types.IStructType - - Ubiquity.NET.Llvm.Types.INamedStructuralType - - Ubiquity.NET.Llvm.Types.ITypeRef - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - extensionMethods: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,System.Nullable{System.UInt32},System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,System.Nullable{System.UInt32},System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Boolean,System.Nullable{System.UInt32},System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: DebugStructType(ref readonly DIBuilder, string, DIScope?, string, DIFile?, uint, DebugInfoFlags, IEnumerable, DIType?, bool, uint?, uint) - nameWithType: DebugStructType.DebugStructType(ref readonly DIBuilder, string, DIScope?, string, DIFile?, uint, DebugInfoFlags, IEnumerable, DIType?, bool, uint?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugStructType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable, Ubiquity.NET.Llvm.DebugInfo.DIType?, bool, uint?, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugStructType(ref readonly DIBuilder diBuilder, string nativeName, DIScope? scope, string sourceName, DIFile? file, uint line, DebugInfoFlags debugFlags, IEnumerable members, DIType? derivedFrom = null, bool packed = false, uint? bitSize = null, uint bitAlignment = 0) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: To construct the debug information for this instance - - id: nativeName - type: System.String - description: Name of the type in LLVM IR (use for anonymous types) - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Debug scope for the structure - - id: sourceName - type: System.String - description: Source/debug name of the struct (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the definition of this type - - id: line - type: System.UInt32 - description: line number this type is defined at - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: debug flags for this type - - id: members - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - description: Description of all the members of this structure - - id: derivedFrom - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Base type, if any for this type - - id: packed - type: System.Boolean - description: Indicates if this type is packed or not - - id: bitSize - type: System.Nullable{System.UInt32} - description: Total bit size for this type or null to use default for target - - id: bitAlignment - type: System.UInt32 - description: Alignment of the type in bits, 0 indicates default for target - content.vb: Public Sub New(diBuilder As DIBuilder, nativeName As String, scope As DIScope, sourceName As String, file As DIFile, line As UInteger, debugFlags As DebugInfoFlags, members As IEnumerable(Of DebugMemberInfo), derivedFrom As DIType = Nothing, packed As Boolean = False, bitSize As UInteger? = Nothing, bitAlignment As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor* - nameWithType.vb: DebugStructType.New(DIBuilder, String, DIScope, String, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of DebugMemberInfo), DIType, Boolean, UInteger?, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.New(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo), Ubiquity.NET.Llvm.DebugInfo.DIType, Boolean, UInteger?, UInteger) - name.vb: New(DIBuilder, String, DIScope, String, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of DebugMemberInfo), DIType, Boolean, UInteger?, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType},System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType},System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,Ubiquity.NET.Llvm.DebugInfo.DIType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType},System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: DebugStructType(IStructType, ref readonly DIBuilder, DIScope?, string, DIFile?, uint, DebugInfoFlags, DIType?, IEnumerable, uint) - nameWithType: DebugStructType.DebugStructType(IStructType, ref readonly DIBuilder, DIScope?, string, DIFile?, uint, DebugInfoFlags, DIType?, IEnumerable, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugStructType(Ubiquity.NET.Llvm.Types.IStructType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType?, System.Collections.Generic.IEnumerable, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugStructType(IStructType llvmType, ref readonly DIBuilder diBuilder, DIScope? scope, string name, DIFile? file, uint line, DebugInfoFlags debugFlags, DIType? derivedFrom, IEnumerable elements, uint bitAlignment = 0) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.IStructType - description: LLVM native type to build debug information for - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: To construct the debug information for this instance - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Debug scope for the structure - - id: name - type: System.String - description: Source/debug name of the struct (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the definition of this type - - id: line - type: System.UInt32 - description: line number this type is defined at - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: debug flags for this type - - id: derivedFrom - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Base type, if any for this type - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Debug type of all the members of this structure - - id: bitAlignment - type: System.UInt32 - description: Alignment of the type in bits, 0 indicates default for target - content.vb: Public Sub New(llvmType As IStructType, diBuilder As DIBuilder, scope As DIScope, name As String, file As DIFile, line As UInteger, debugFlags As DebugInfoFlags, derivedFrom As DIType, elements As IEnumerable(Of DIType), bitAlignment As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor* - nameWithType.vb: DebugStructType.New(IStructType, DIBuilder, DIScope, String, DIFile, UInteger, DebugInfoFlags, DIType, IEnumerable(Of DIType), UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.New(Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Ubiquity.NET.Llvm.DebugInfo.DIType, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIType), UInteger) - name.vb: New(IStructType, DIBuilder, DIScope, String, DIFile, UInteger, DebugInfoFlags, DIType, IEnumerable(Of DIType), UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: DebugStructType(IStructType, ref readonly DIBuilder, DIScope?, string, DIFile?, uint) - nameWithType: DebugStructType.DebugStructType(IStructType, ref readonly DIBuilder, DIScope?, string, DIFile?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugStructType(Ubiquity.NET.Llvm.Types.IStructType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 122 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - remarks: >- - This constructor creates a replaceable type that is replaced later with a full - - definition of the type - example: [] - syntax: - content: public DebugStructType(IStructType llvmType, ref readonly DIBuilder diBuilder, DIScope? scope, string name, DIFile? file, uint line) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.IStructType - description: LLVM native type to build debug information for - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: To construct the debug information for this instance - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Debug scope for the structure - - id: name - type: System.String - description: Source/debug name of the struct (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the definition of this type - - id: line - type: System.UInt32 - description: line number this type is defined at - content.vb: Public Sub New(llvmType As IStructType, diBuilder As DIBuilder, scope As DIScope, name As String, file As DIFile, line As UInteger) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor* - nameWithType.vb: DebugStructType.New(IStructType, DIBuilder, DIScope, String, DIFile, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.New(Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger) - name.vb: New(IStructType, DIBuilder, DIScope, String, DIFile, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: DebugStructType(ref readonly DIBuilder, string, DIScope?, string, DIFile?, uint) - nameWithType: DebugStructType.DebugStructType(ref readonly DIBuilder, string, DIScope?, string, DIFile?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugStructType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 151 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - remarks: >- - This constructor creates a replaceable type that is replaced later with a full - - definition of the type - example: [] - syntax: - content: public DebugStructType(ref readonly DIBuilder diBuilder, string nativeName, DIScope? scope, string name, DIFile? file = null, uint line = 0) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: To construct the debug information for this instance - - id: nativeName - type: System.String - description: Name of the type in LLVM IR - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Debug scope for the structure - - id: name - type: System.String - description: Source/debug name of the struct (use for anonymous types) - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the definition of this type - - id: line - type: System.UInt32 - description: line number this type is defined at - content.vb: Public Sub New(diBuilder As DIBuilder, nativeName As String, scope As DIScope, name As String, file As DIFile = Nothing, line As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor* - nameWithType.vb: DebugStructType.New(DIBuilder, String, DIScope, String, DIFile, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.New(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger) - name.vb: New(DIBuilder, String, DIScope, String, DIFile, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque - id: IsOpaque - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: IsOpaque - nameWithType: DebugStructType.IsOpaque - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsOpaque - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 169 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether the type is Opaque (e.g. has no body) - example: [] - syntax: - content: public bool IsOpaque { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsOpaque As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque* - implements: - - Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked - id: IsPacked - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: IsPacked - nameWithType: DebugStructType.IsPacked - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsPacked - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 172 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether the structure is packed (e.g. no automatic alignment padding between elements) - example: [] - syntax: - content: public bool IsPacked { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsPacked As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked* - implements: - - Ubiquity.NET.Llvm.Types.IStructType.IsPacked -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members - id: Members - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: Members - nameWithType: DebugStructType.Members - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Members - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 175 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the members of the type - example: [] - syntax: - content: public IReadOnlyList Members { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - content.vb: Public ReadOnly Property Members As IReadOnlyList(Of ITypeRef) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members* - implements: - - Ubiquity.NET.Llvm.Types.INamedStructuralType.Members -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: Name - nameWithType: DebugStructType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 178 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the type - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name* - implements: - - Ubiquity.NET.Llvm.Types.INamedStructuralType.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName - id: SourceName - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: SourceName - nameWithType: DebugStructType.SourceName - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SourceName - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 181 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the Source/Debug name - example: [] - syntax: - content: public string SourceName { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property SourceName As String - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: SetBody(bool, params IEnumerable) - nameWithType: DebugStructType.SetBody(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(bool, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetBody - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 184 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Sets the body of the structure - example: [] - syntax: - content: public void SetBody(bool packed, params IEnumerable elements) - parameters: - - id: packed - type: System.Boolean - description: Flag to indicate if the body elements are packed (e.g. no padding) - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Types of each element (may be empty) - content.vb: Public Sub SetBody(packed As Boolean, elements As IEnumerable(Of ITypeRef)) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody* - implements: - - Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - nameWithType.vb: DebugStructType.SetBody(Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: SetBody(Boolean, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - id: SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: SetBody(bool, ref readonly DIBuilder, DIScope?, DIFile?, uint, DebugInfoFlags, params IEnumerable) - nameWithType: DebugStructType.SetBody(bool, ref readonly DIBuilder, DIScope?, DIFile?, uint, DebugInfoFlags, params IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(bool, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope?, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetBody - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 197 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Set the body of a type - example: [] - syntax: - content: public void SetBody(bool packed, ref readonly DIBuilder diBuilder, DIScope? scope, DIFile? file, uint line, DebugInfoFlags debugFlags, params IEnumerable debugElements) - parameters: - - id: packed - type: System.Boolean - description: Flag to indicate if the body elements are packed (e.g. no padding) - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: To construct the debug information for this instance - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing this type - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the type - - id: line - type: System.UInt32 - description: Line in file for this type - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: Debug flags for this type - - id: debugElements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - description: Descriptors for all the elements in the type - content.vb: Public Sub SetBody(packed As Boolean, diBuilder As DIBuilder, scope As DIScope, file As DIFile, line As UInteger, debugFlags As DebugInfoFlags, debugElements As IEnumerable(Of DebugMemberInfo)) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody* - nameWithType.vb: DebugStructType.SetBody(Boolean, DIBuilder, DIScope, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of DebugMemberInfo)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(Boolean, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo)) - name.vb: SetBody(Boolean, DIBuilder, DIScope, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of DebugMemberInfo)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Nullable{System.UInt32},System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Nullable{System.UInt32},System.UInt32) - id: SetBody(System.Boolean,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo},Ubiquity.NET.Llvm.DebugInfo.DIType,System.Nullable{System.UInt32},System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: SetBody(bool, ref readonly DIBuilder, DIScope?, DIFile?, uint, DebugInfoFlags, IEnumerable, IEnumerable, DIType?, uint?, uint) - nameWithType: DebugStructType.SetBody(bool, ref readonly DIBuilder, DIScope?, DIFile?, uint, DebugInfoFlags, IEnumerable, IEnumerable, DIType?, uint?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(bool, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope?, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable, System.Collections.Generic.IEnumerable, Ubiquity.NET.Llvm.DebugInfo.DIType?, uint?, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetBody - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 223 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Set the body of a type - example: [] - syntax: - content: public void SetBody(bool packed, ref readonly DIBuilder diBuilder, DIScope? scope, DIFile? file, uint line, DebugInfoFlags debugFlags, IEnumerable nativeElements, IEnumerable debugElements, DIType? derivedFrom = null, uint? bitSize = null, uint bitAlignment = 0) - parameters: - - id: packed - type: System.Boolean - description: Flag to indicate if the body elements are packed (e.g. no padding) - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use for generating debug information - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing this type - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the type - - id: line - type: System.UInt32 - description: Line in file for this type - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: Debug flags for this type - - id: nativeElements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: LLVM type of each element - - id: debugElements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - description: Descriptors for each element in the type - - id: derivedFrom - type: Ubiquity.NET.Llvm.DebugInfo.DIType - description: Base type, if any for this type - - id: bitSize - type: System.Nullable{System.UInt32} - description: Total bit size for this type or null to use default for target - - id: bitAlignment - type: System.UInt32 - description: Alignment of the type in bits, 0 indicates default for target - content.vb: Public Sub SetBody(packed As Boolean, diBuilder As DIBuilder, scope As DIScope, file As DIFile, line As UInteger, debugFlags As DebugInfoFlags, nativeElements As IEnumerable(Of ITypeRef), debugElements As IEnumerable(Of DebugMemberInfo), derivedFrom As DIType = Nothing, bitSize As UInteger? = Nothing, bitAlignment As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody* - nameWithType.vb: DebugStructType.SetBody(Boolean, DIBuilder, DIScope, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of ITypeRef), IEnumerable(Of DebugMemberInfo), DIType, UInteger?, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody(Boolean, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo), Ubiquity.NET.Llvm.DebugInfo.DIType, UInteger?, UInteger) - name.vb: SetBody(Boolean, DIBuilder, DIScope, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of ITypeRef), IEnumerable(Of DebugMemberInfo), DIType, UInteger?, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers - id: DebugMembers - parent: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - langs: - - csharp - - vb - name: DebugMembers - nameWithType: DebugStructType.DebugMembers - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugMembers - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugStructType.cs - startLine: 262 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a list of descriptors for each members - example: [] - syntax: - content: public IReadOnlyList DebugMembers { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - content.vb: Public Property DebugMembers As IReadOnlyList(Of DebugMemberInfo) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of IStructType, DICompositeType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType) - name.vb: DebugType(Of IStructType, DICompositeType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of IStructType, DICompositeType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType) - name.vb: IDebugType(Of IStructType, DICompositeType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeHandleOwner) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeHandleOwner) - name.vb: IEquatable(Of ITypeHandleOwner) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IStructType.html - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - commentId: T:Ubiquity.NET.Llvm.Types.INamedStructuralType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html - name: INamedStructuralType - nameWithType: INamedStructuralType - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of IStructType, DICompositeType).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of IStructType, DICompositeType).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of IStructType, DICompositeType).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of IStructType, DICompositeType).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of IStructType, DICompositeType).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of IStructType, DICompositeType).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of IStructType, DICompositeType).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of IStructType, DICompositeType).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of IStructType, DICompositeType).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of IStructType, DICompositeType).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of IStructType, DICompositeType).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of TNative, TDebug).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of TNative, TDebug).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of TNative, TDebug).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of TNative, TDebug).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of TNative, TDebug).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of TNative, TDebug).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of TNative, TDebug).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of TNative, TDebug).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of TNative, TDebug).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of TNative, TDebug).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of TNative, TDebug).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugStructType - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html - name: DebugStructType - nameWithType: DebugStructType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType -- uid: System.String.Empty - commentId: F:System.String.Empty - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string.empty - name: Empty - nameWithType: string.Empty - fullName: string.Empty - nameWithType.vb: String.Empty - fullName.vb: String.Empty -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html#Ubiquity_NET_Llvm_DebugInfo_DebugStructType__ctor_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_String_Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo__Ubiquity_NET_Llvm_DebugInfo_DIType_System_Boolean_System_Nullable_System_UInt32__System_UInt32_ - name: DebugStructType - nameWithType: DebugStructType.DebugStructType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugStructType - nameWithType.vb: DebugStructType.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.New - name.vb: New -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DebugMemberInfo) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo) - name.vb: IEnumerable(Of DebugMemberInfo) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.Nullable{System.UInt32} - commentId: T:System.Nullable{System.UInt32} - parent: System - definition: System.Nullable`1 - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint? - nameWithType: uint? - fullName: uint? - nameWithType.vb: UInteger? - fullName.vb: UInteger? - name.vb: UInteger? - spec.csharp: - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '?' - spec.vb: - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: '?' -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Nullable`1 - commentId: T:System.Nullable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: Nullable - nameWithType: Nullable - fullName: System.Nullable - nameWithType.vb: Nullable(Of T) - fullName.vb: System.Nullable(Of T) - name.vb: Nullable(Of T) - spec.csharp: - - uid: System.Nullable`1 - name: Nullable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Nullable`1 - name: Nullable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DIType) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IEnumerable(Of DIType) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html#Ubiquity_NET_Llvm_DebugInfo_DebugStructType_IsOpaque - name: IsOpaque - nameWithType: DebugStructType.IsOpaque - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsOpaque -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_IsOpaque - name: IsOpaque - nameWithType: INamedStructuralType.IsOpaque - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html#Ubiquity_NET_Llvm_DebugInfo_DebugStructType_IsPacked - name: IsPacked - nameWithType: DebugStructType.IsPacked - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.IsPacked -- uid: Ubiquity.NET.Llvm.Types.IStructType.IsPacked - commentId: P:Ubiquity.NET.Llvm.Types.IStructType.IsPacked - parent: Ubiquity.NET.Llvm.Types.IStructType - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_IsPacked - name: IsPacked - nameWithType: IStructType.IsPacked - fullName: Ubiquity.NET.Llvm.Types.IStructType.IsPacked -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html#Ubiquity_NET_Llvm_DebugInfo_DebugStructType_Members - name: Members - nameWithType: DebugStructType.Members - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Members -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_Members - name: Members - nameWithType: INamedStructuralType.Members - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of ITypeRef) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IReadOnlyList(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html#Ubiquity_NET_Llvm_DebugInfo_DebugStructType_Name - name: Name - nameWithType: DebugStructType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.Name -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_Name - name: Name - nameWithType: INamedStructuralType.Name - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html#Ubiquity_NET_Llvm_DebugInfo_DebugStructType_SourceName - name: SourceName - nameWithType: DebugStructType.SourceName - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SourceName -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html#Ubiquity_NET_Llvm_DebugInfo_DebugStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: SetBody - nameWithType: DebugStructType.SetBody - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.SetBody -- uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.Types.IStructType - isExternal: true - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: SetBody(bool, params IEnumerable) - nameWithType: IStructType.SetBody(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Types.IStructType.SetBody(bool, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IStructType.SetBody(Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.Types.IStructType.SetBody(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: SetBody(Boolean, IEnumerable(Of ITypeRef)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: SetBody - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: SetBody - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of ITypeRef) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEnumerable(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html#Ubiquity_NET_Llvm_DebugInfo_DebugStructType_DebugMembers - name: DebugMembers - nameWithType: DebugStructType.DebugMembers - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.DebugMembers -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DebugMemberInfo) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo) - name.vb: IReadOnlyList(Of DebugMemberInfo) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml deleted file mode 100644 index 3e0ed20b4f..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugType-2.yml +++ /dev/null @@ -1,2358 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - id: DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2.op_Implicit(Ubiquity.NET.Llvm.DebugInfo.DebugType{`0,`1})~`1 - langs: - - csharp - - vb - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Base class for Debug types bound with an LLVM type - remarks: >- -

This is a generic type that represents a binding between a specific LLVM type AND a - - that describes it. This maintains the relationship between the two different reals and types systems.

- - -

Primitive types and function signature types are all interned in LLVM, thus there won't be a - - strict one to one relationship between an LLVM type and corresponding language specific debug - - type. (e.g. unsigned char, char, byte and signed byte might all be 8 bit integgral values as far - - as LLVM is concerned.) Also, when using the pointer+alloca+memcpy pattern to pass by value the - - actual source debug info type is different than the LLVM function signature. This interface and - - it's implementations are used to construct native type and debug info pairing to allow applications - - to maintain a link from their AST or IR types into the LLVM native type and debug information.

- - -
note

- - It is important to note that the relationship from the to it's - - properties is strictly ***one way***. That is, there is no way to take an arbitrary - - and re-associate it with the DebugInfoType or an implementation of this interface as there may be many such - - mappings to choose from. - -

- example: [] - syntax: - content: 'public class DebugType : IDebugType, ITypeRef, IEquatable, IEquatable where TNative : class, ITypeRef where TDebug : DIType' - typeParameters: - - id: TNative - description: Native LLVM type - - id: TDebug - description: Debug type - content.vb: Public Class DebugType(Of TNative As {Class, ITypeRef}, TDebug As DIType) Implements IDebugType(Of TNative, TDebug), ITypeRef, IEquatable(Of ITypeRef), IEquatable(Of ITypeHandleOwner) - inheritance: - - System.Object - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - - Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - - Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - - Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}} - - Ubiquity.NET.Llvm.Types.ITypeRef - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - extensionMethods: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - id: DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugInfoType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 53 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets or sets the Debug information type for this binding - remarks: >- -

Setting the debug type is only allowed when the debug type is null or - - is true. If the debug type node is a temporary setting the type will replace all uses - - of the temporary type automatically, via

- -

Since setting this property will replace all uses with (RAUW) the new value then setting this property - - with null is not allowed. However, until set this property will be null

- example: [] - syntax: - content: public TDebug? DebugInfoType { get; set; } - parameters: [] - return: - type: '{TDebug}' - content.vb: Public Property DebugInfoType As TDebug - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType* - exceptions: - - type: System.InvalidOperationException - commentId: T:System.InvalidOperationException - description: The type is not null or not a temporary - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}}.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - id: NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NativeType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the native LLVM type for this debug type binding - example: [] - syntax: - content: public TNative NativeType { get; init; } - parameters: [] - return: - type: '{TNative}' - content.vb: Public Property NativeType As TNative - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType* - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}}.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - id: IsSized - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsSized - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 86 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether the type is sized - example: [] - syntax: - content: public bool IsSized { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsSized As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - nameWithType.vb: DebugType(Of TNative, TDebug).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - id: Kind - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kind - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 89 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the LLVM Type kind for this type - example: [] - syntax: - content: public TypeKind Kind { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.TypeKind - content.vb: Public ReadOnly Property Kind As TypeKind - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - nameWithType.vb: DebugType(Of TNative, TDebug).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - id: Context - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 92 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the ContextAlias that owns this type - example: [] - syntax: - content: public IContext Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: Public ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - nameWithType.vb: DebugType(Of TNative, TDebug).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - id: IntegerBitWidth - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntegerBitWidth - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 95 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the integer bit width of this type or 0 for non integer types - example: [] - syntax: - content: public uint IntegerBitWidth { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property IntegerBitWidth As UInteger - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - nameWithType.vb: DebugType(Of TNative, TDebug).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - id: IsInteger - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsInteger - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 98 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether this type is an integer - example: [] - syntax: - content: public bool IsInteger { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsInteger As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - nameWithType.vb: DebugType(Of TNative, TDebug).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - id: IsFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsFloat - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 101 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether the type is a 32-bit IEEE floating point type - example: [] - syntax: - content: public bool IsFloat { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsFloat As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - id: IsDouble - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDouble - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether the type is a 64-bit IEEE floating point type - example: [] - syntax: - content: public bool IsDouble { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDouble As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - nameWithType.vb: DebugType(Of TNative, TDebug).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - id: IsVoid - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsVoid - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 107 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether this type represents the void type - example: [] - syntax: - content: public bool IsVoid { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsVoid As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - nameWithType.vb: DebugType(Of TNative, TDebug).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - id: IsStruct - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsStruct - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 110 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether this type is a structure type - example: [] - syntax: - content: public bool IsStruct { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsStruct As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - nameWithType.vb: DebugType(Of TNative, TDebug).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - id: IsPointer - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsPointer - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 113 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether this type is a pointer - example: [] - syntax: - content: public bool IsPointer { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsPointer As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - nameWithType.vb: DebugType(Of TNative, TDebug).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - id: IsSequence - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsSequence - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 116 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether this type is a sequence type - example: [] - syntax: - content: public bool IsSequence { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsSequence As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - nameWithType.vb: DebugType(Of TNative, TDebug).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - id: IsFloatingPoint - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsFloatingPoint - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 119 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether this type is a floating point type - example: [] - syntax: - content: public bool IsFloatingPoint { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsFloatingPoint As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - id: GetNullValue - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetNullValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 122 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a null value (e.g. all bits == 0 ) for the type - remarks: >- - This is a getter function instead of a property as it can throw exceptions - - for types that don't support such a thing (i.e. void ) - example: [] - syntax: - content: public Constant GetNullValue() - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: that represents a null (0) value of this type - content.vb: Public Function GetNullValue() As Constant - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - nameWithType.vb: DebugType(Of TNative, TDebug).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).GetNullValue() -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - id: CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 125 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Array type factory for an array with elements of this type - example: [] - syntax: - content: public IArrayType CreateArrayType(uint count) - parameters: - - id: count - type: System.UInt32 - description: Number of elements in the array - return: - type: Ubiquity.NET.Llvm.Types.IArrayType - description: for the array - content.vb: Public Function CreateArrayType(count As UInteger) As IArrayType - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - id: CreatePointerType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreatePointerType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 128 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Get a for a type that points to elements of this type in the default (0) address space - example: [] - syntax: - content: public IPointerType CreatePointerType() - return: - type: Ubiquity.NET.Llvm.Types.IPointerType - description: corresponding to the type of a pointer that refers to elements of this type - content.vb: Public Function CreatePointerType() As IPointerType - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType() -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - id: CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreatePointerType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 131 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Get a for a type that points to elements of this type in the specified address space - example: [] - syntax: - content: public IPointerType CreatePointerType(uint addressSpace) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: Ubiquity.NET.Llvm.Types.IPointerType - description: corresponding to the type of a pointer that refers to elements of this type - content.vb: Public Function CreatePointerType(addressSpace As UInteger) As IPointerType - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType* - implements: - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - id: CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreatePointerType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 134 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a pointer to this type for a given module and address space - example: [] - syntax: - content: public DebugPointerType CreatePointerType(ref readonly DIBuilder diBuilder, uint addressSpace) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - description: - content.vb: Public Function CreatePointerType(diBuilder As DIBuilder, addressSpace As UInteger) As DebugPointerType - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType* - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - id: CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 146 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a type defining an array of elements of this type - example: [] - syntax: - content: public DebugArrayType CreateArrayType(ref readonly DIBuilder diBuilder, uint lowerBound, uint count) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use - - id: lowerBound - type: System.UInt32 - description: Lower bound of the array - - id: count - type: System.UInt32 - description: Count of elements in the array - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - description: - content.vb: Public Function CreateArrayType(diBuilder As DIBuilder, lowerBound As UInteger, count As UInteger) As DebugArrayType - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType* - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.op_Implicit(Ubiquity.NET.Llvm.DebugInfo.DebugType{`0,`1})~`1 - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.op_Implicit(Ubiquity.NET.Llvm.DebugInfo.DebugType{`0,`1})~`1 - id: op_Implicit(Ubiquity.NET.Llvm.DebugInfo.DebugType{`0,`1})~`1 - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - langs: - - csharp - - vb - name: implicit operator TDebug?(DebugType) - nameWithType: DebugType.implicit operator TDebug?(DebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.implicit operator TDebug?(Ubiquity.NET.Llvm.DebugInfo.DebugType) - type: Operator - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: op_Implicit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 159 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Converts a to TDebug by accessing the property - example: [] - syntax: - content: public static implicit operator TDebug?(DebugType self) - parameters: - - id: self - type: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - description: The type to convert - return: - type: '{TDebug}' - content.vb: Public Shared Widening Operator CType(self As DebugType(Of TNative, TDebug)) As TDebug - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.op_Implicit* - nameWithType.vb: DebugType(Of TNative, TDebug).CType(DebugType(Of TNative, TDebug)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CType(Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug)) - name.vb: CType(DebugType(Of TNative, TDebug)) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeHandleOwner) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeHandleOwner) - name.vb: IEquatable(Of ITypeHandleOwner) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: System.InvalidOperationException - commentId: T:System.InvalidOperationException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception - name: InvalidOperationException - nameWithType: InvalidOperationException - fullName: System.InvalidOperationException -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}}.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1}.DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}} - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: IDebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.DebugInfoType - nameWithType.vb: IDebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).DebugInfoType -- uid: '{TDebug}' - commentId: '!:TDebug' - definition: TDebug - name: TDebug - nameWithType: TDebug - fullName: TDebug -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: IDebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.DebugInfoType - nameWithType.vb: IDebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).DebugInfoType -- uid: TDebug - name: TDebug - nameWithType: TDebug - fullName: TDebug -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}}.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1}.NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}} - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_NativeType - name: NativeType - nameWithType: IDebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.NativeType - nameWithType.vb: IDebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).NativeType -- uid: '{TNative}' - commentId: '!:TNative' - definition: TNative - name: TNative - nameWithType: TNative - fullName: TNative -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_NativeType - name: NativeType - nameWithType: IDebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.NativeType - nameWithType.vb: IDebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).NativeType -- uid: TNative - name: TNative - nameWithType: TNative - fullName: TNative -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of TNative, TDebug).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of TNative, TDebug).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.TypeKind - commentId: T:Ubiquity.NET.Llvm.Types.TypeKind - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.TypeKind.html - name: TypeKind - nameWithType: TypeKind - fullName: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of TNative, TDebug).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of TNative, TDebug).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of TNative, TDebug).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of TNative, TDebug).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of TNative, TDebug).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of TNative, TDebug).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of TNative, TDebug).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of TNative, TDebug).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue - nameWithType: DebugType.GetNullValue - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue - nameWithType.vb: DebugType(Of TNative, TDebug).GetNullValue - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).GetNullValue -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Types.IArrayType - commentId: T:Ubiquity.NET.Llvm.Types.IArrayType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IArrayType.html - name: IArrayType - nameWithType: IArrayType - fullName: Ubiquity.NET.Llvm.Types.IArrayType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType - nameWithType: DebugType.CreateArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType - nameWithType: DebugType.CreatePointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.html - name: DebugPointerType - nameWithType: DebugPointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}} - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: IDebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: IDebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: IDebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: IDebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html - name: DebugArrayType - nameWithType: DebugArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}} - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: IDebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: IDebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: IDebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: IDebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.op_Implicit* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.op_Implicit - name: implicit operator - nameWithType: DebugType.implicit operator - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.implicit operator - nameWithType.vb: DebugType(Of TNative, TDebug).CType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CType - name.vb: CType - spec.csharp: - - name: implicit - - name: " " - - name: operator diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugType.yml deleted file mode 100644 index 511e712463..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugType.yml +++ /dev/null @@ -1,570 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - id: DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugType.Create``2(``0,``1) - - Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - langs: - - csharp - - vb - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 174 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Utility class to provide mix-in type extensions and support for Debug Types - example: [] - syntax: - content: public static class DebugType - content.vb: Public Module DebugType - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.Create``2(``0,``1) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.Create``2(``0,``1) - id: Create``2(``0,``1) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - langs: - - csharp - - vb - name: Create(TNative, TDebug?) - nameWithType: DebugType.Create(TNative, TDebug?) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Create(TNative, TDebug?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Create - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 182 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a new instance inferring the generic arguments from the parameters - example: [] - syntax: - content: 'public static IDebugType Create(TNative nativeType, TDebug? debugType) where TNative : class, ITypeRef where TDebug : DIType' - parameters: - - id: nativeType - type: '{TNative}' - description: TNative type instance for this association - - id: debugType - type: '{TDebug}' - description: TDebug type instance for this association (use null for void) - typeParameters: - - id: TNative - description: Type of the Native LLVM type for the association - - id: TDebug - description: Type of the debug information type for the association - return: - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}} - description: implementation for the specified association - content.vb: Public Shared Function Create(Of TNative As {Class, ITypeRef}, TDebug As DIType)(nativeType As TNative, debugType As TDebug) As IDebugType(Of TNative, TDebug) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType.Create* - nameWithType.vb: DebugType.Create(Of TNative, TDebug)(TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.Create(Of TNative, TDebug)(TNative, TDebug) - name.vb: Create(Of TNative, TDebug)(TNative, TDebug) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - id: HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - langs: - - csharp - - vb - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HasDebugInfo - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugType.cs - startLine: 197 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Convenience extension for determining if the property is valid - remarks: >- - In LLVM Debug information of null for a - is used to represent the void type. Thus, looking only at the property is - insufficient to distinguish between a type with no debug information and one representing the void - type. This extension method is used to disambiguate the two possibilities. - example: [] - syntax: - content: public static bool HasDebugInfo(this IDebugType debugType) - parameters: - - id: debugType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Debug type to test for valid Debug information - return: - type: System.Boolean - description: true if the type has debug information - content.vb: Public Shared Function HasDebugInfo(debugType As IDebugType(Of ITypeRef, DIType)) As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo* - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.Create* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType.Create - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_Create__2___0___1_ - name: Create - nameWithType: DebugType.Create - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Create -- uid: '{TNative}' - commentId: '!:TNative' - definition: TNative - name: TNative - nameWithType: TNative - fullName: TNative -- uid: '{TDebug}' - commentId: '!:TDebug' - definition: TDebug - name: TDebug - nameWithType: TDebug - fullName: TDebug -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{{TNative},{TDebug}} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{`0,`1} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: TNative - name: TNative - nameWithType: TNative - fullName: TNative -- uid: TDebug - name: TDebug - nameWithType: TDebug - fullName: TDebug -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo - nameWithType: DebugType.HasDebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml deleted file mode 100644 index e2ce6842d4..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.yml +++ /dev/null @@ -1,2025 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - id: DebugUnionType - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - langs: - - csharp - - vb - name: DebugUnionType - nameWithType: DebugUnionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugUnionType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug representation of a union type - remarks: The underlying native LLVM type is a structure with a single member - example: [] - syntax: - content: 'public class DebugUnionType : DebugType, IDebugType, IEquatable, INamedStructuralType, ITypeRef, IEquatable' - content.vb: Public Class DebugUnionType Inherits DebugType(Of INamedStructuralType, DICompositeType) Implements IDebugType(Of INamedStructuralType, DICompositeType), IEquatable(Of ITypeHandleOwner), INamedStructuralType, ITypeRef, IEquatable(Of ITypeRef) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#dicompositetype - altText: LLVM DICompositeType - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - implements: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - - Ubiquity.NET.Llvm.Types.INamedStructuralType - - Ubiquity.NET.Llvm.Types.ITypeRef - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - extensionMethods: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - id: '#ctor(Ubiquity.NET.Llvm.Types.IStructType,Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo})' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - langs: - - csharp - - vb - name: DebugUnionType(IStructType, ref readonly DIBuilder, DIScope?, string, DIFile?, uint, DebugInfoFlags, IEnumerable) - nameWithType: DebugUnionType.DebugUnionType(IStructType, ref readonly DIBuilder, DIScope?, string, DIFile?, uint, DebugInfoFlags, IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugUnionType(Ubiquity.NET.Llvm.Types.IStructType, ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugUnionType(IStructType llvmType, ref readonly DIBuilder diBuilder, DIScope? scope, string name, DIFile? file, uint line, DebugInfoFlags debugFlags, IEnumerable elements) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.IStructType - description: Underlying native type this debug type describes - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing this type - - id: name - type: System.String - description: Debug/source name of the type - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: Source file containing this type - - id: line - type: System.UInt32 - description: Line number for this type - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: Debug flags for this type - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - description: Descriptors for the members of the type - content.vb: Public Sub New(llvmType As IStructType, diBuilder As DIBuilder, scope As DIScope, name As String, file As DIFile, line As UInteger, debugFlags As DebugInfoFlags, elements As IEnumerable(Of DebugMemberInfo)) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor* - nameWithType.vb: DebugUnionType.New(IStructType, DIBuilder, DIScope, String, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of DebugMemberInfo)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.New(Ubiquity.NET.Llvm.Types.IStructType, Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo)) - name.vb: New(IStructType, DIBuilder, DIScope, String, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of DebugMemberInfo)) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32) - id: '#ctor(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32)' - parent: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - langs: - - csharp - - vb - name: DebugUnionType(ref readonly DIBuilder, string, DIScope?, string, DIFile?, uint) - nameWithType: DebugUnionType.DebugUnionType(ref readonly DIBuilder, string, DIScope?, string, DIFile?, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugUnionType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public DebugUnionType(ref readonly DIBuilder diBuilder, string nativeName, DIScope? scope, string name, DIFile? file, uint line = 0) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use - - id: nativeName - type: System.String - description: Native LLVM type name - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing this type - - id: name - type: System.String - description: Debug/source name of the type - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: Source file containing this type - - id: line - type: System.UInt32 - description: Line number for this type - content.vb: Public Sub New(diBuilder As DIBuilder, nativeName As String, scope As DIScope, name As String, file As DIFile, line As UInteger = 0) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor* - nameWithType.vb: DebugUnionType.New(DIBuilder, String, DIScope, String, DIFile, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.New(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger) - name.vb: New(DIBuilder, String, DIScope, String, DIFile, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque - id: IsOpaque - parent: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - langs: - - csharp - - vb - name: IsOpaque - nameWithType: DebugUnionType.IsOpaque - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsOpaque - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a value indicating whether the structure is opaque (e.g. has no body defined yet) - example: [] - syntax: - content: public bool IsOpaque { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsOpaque As Boolean - overload: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque* - implements: - - Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members - id: Members - parent: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - langs: - - csharp - - vb - name: Members - nameWithType: DebugUnionType.Members - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Members - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets a list of types for all member elements of the structure - example: [] - syntax: - content: public IReadOnlyList Members { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - content.vb: Public ReadOnly Property Members As IReadOnlyList(Of ITypeRef) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members* - implements: - - Ubiquity.NET.Llvm.Types.INamedStructuralType.Members -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name - id: Name - parent: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - langs: - - csharp - - vb - name: Name - nameWithType: DebugUnionType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the name of the structure - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name* - implements: - - Ubiquity.NET.Llvm.Types.INamedStructuralType.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers - id: DebugMembers - parent: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - langs: - - csharp - - vb - name: DebugMembers - nameWithType: DebugUnionType.DebugMembers - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugMembers - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the description of each member of the type - example: [] - syntax: - content: public IReadOnlyList DebugMembers { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - content.vb: Public Property DebugMembers As IReadOnlyList(Of DebugMemberInfo) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers* -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - id: SetBody(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - langs: - - csharp - - vb - name: SetBody(ref readonly DIBuilder, DIScope?, DIFile?, uint, DebugInfoFlags, IEnumerable) - nameWithType: DebugUnionType.SetBody(ref readonly DIBuilder, DIScope?, DIFile?, uint, DebugInfoFlags, IEnumerable) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope?, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetBody - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DebugUnionType.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Sets the body of the union type - example: [] - syntax: - content: public void SetBody(ref readonly DIBuilder diBuilder, DIScope? scope, DIFile? file, uint line, DebugInfoFlags debugFlags, IEnumerable debugElements) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information to use - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Scope containing this type - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File for the type - - id: line - type: System.UInt32 - description: line number for the type - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: Flags for the type - - id: debugElements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - description: Descriptors for each element in the type - content.vb: Public Sub SetBody(diBuilder As DIBuilder, scope As DIScope, file As DIFile, line As UInteger, debugFlags As DebugInfoFlags, debugElements As IEnumerable(Of DebugMemberInfo)) - overload: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody* - nameWithType.vb: DebugUnionType.SetBody(DIBuilder, DIScope, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of DebugMemberInfo)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo)) - name.vb: SetBody(DIBuilder, DIScope, DIFile, UInteger, DebugInfoFlags, IEnumerable(Of DebugMemberInfo)) -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType) - name.vb: DebugType(Of INamedStructuralType, DICompositeType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - name: INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - name: INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of INamedStructuralType, DICompositeType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType) - name.vb: IDebugType(Of INamedStructuralType, DICompositeType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - name: INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - name: INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeHandleOwner} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeHandleOwner) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeHandleOwner) - name.vb: IEquatable(Of ITypeHandleOwner) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeHandleOwner - name: ITypeHandleOwner - - name: ) -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - commentId: T:Ubiquity.NET.Llvm.Types.INamedStructuralType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html - name: INamedStructuralType - nameWithType: INamedStructuralType - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSized - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Kind - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.Context - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IntegerBitWidth - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsInteger - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsDouble - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsVoid - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsStruct - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsPointer - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsSequence - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.IsFloatingPoint - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType} - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of INamedStructuralType, DICompositeType).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of Ubiquity.NET.Llvm.Types.INamedStructuralType, Ubiquity.NET.Llvm.DebugInfo.DICompositeType).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType{Ubiquity.NET.Llvm.Types.INamedStructuralType,Ubiquity.NET.Llvm.DebugInfo.DICompositeType}.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}.Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - parent: Ubiquity.NET.Llvm.DebugInfo.DebugType - definition: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: DebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.DebugInfoType - nameWithType.vb: DebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_NativeType - name: NativeType - nameWithType: DebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.NativeType - nameWithType.vb: DebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSized - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSized - name: IsSized - nameWithType: DebugType.IsSized - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSized - nameWithType.vb: DebugType(Of TNative, TDebug).IsSized - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSized -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Kind - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Kind - name: Kind - nameWithType: DebugType.Kind - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Kind - nameWithType.vb: DebugType(Of TNative, TDebug).Kind - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Kind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.Context - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_Context - name: Context - nameWithType: DebugType.Context - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.Context - nameWithType.vb: DebugType(Of TNative, TDebug).Context - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).Context -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IntegerBitWidth - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IntegerBitWidth - name: IntegerBitWidth - nameWithType: DebugType.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IntegerBitWidth - nameWithType.vb: DebugType(Of TNative, TDebug).IntegerBitWidth - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IntegerBitWidth -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsInteger - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsInteger - name: IsInteger - nameWithType: DebugType.IsInteger - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsInteger - nameWithType.vb: DebugType(Of TNative, TDebug).IsInteger - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloat - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloat - name: IsFloat - nameWithType: DebugType.IsFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloat - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloat - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloat -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsDouble - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsDouble - name: IsDouble - nameWithType: DebugType.IsDouble - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsDouble - nameWithType.vb: DebugType(Of TNative, TDebug).IsDouble - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsDouble -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsVoid - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsVoid - name: IsVoid - nameWithType: DebugType.IsVoid - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsVoid - nameWithType.vb: DebugType(Of TNative, TDebug).IsVoid - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsVoid -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsStruct - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsStruct - name: IsStruct - nameWithType: DebugType.IsStruct - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsStruct - nameWithType.vb: DebugType(Of TNative, TDebug).IsStruct - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsStruct -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsPointer - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsPointer - name: IsPointer - nameWithType: DebugType.IsPointer - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsPointer - nameWithType.vb: DebugType(Of TNative, TDebug).IsPointer - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsPointer -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsSequence - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsSequence - name: IsSequence - nameWithType: DebugType.IsSequence - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsSequence - nameWithType.vb: DebugType(Of TNative, TDebug).IsSequence - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsSequence -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.IsFloatingPoint - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_IsFloatingPoint - name: IsFloatingPoint - nameWithType: DebugType.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.IsFloatingPoint - nameWithType.vb: DebugType(Of TNative, TDebug).IsFloatingPoint - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).IsFloatingPoint -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - name: GetNullValue() - nameWithType: DebugType.GetNullValue() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.GetNullValue() - nameWithType.vb: DebugType(Of TNative, TDebug).GetNullValue() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: DebugType.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - name: CreatePointerType() - nameWithType: DebugType.CreatePointerType() - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType() - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: DebugType.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: DebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: DebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - nameWithType.vb: DebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - name: HasDebugInfo(IDebugType) - nameWithType: DebugType.HasDebugInfo(IDebugType) - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType) - nameWithType.vb: DebugType.HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: HasDebugInfo(IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType.HasDebugInfo(Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}) - name: HasDebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html#Ubiquity_NET_Llvm_DebugInfo_DebugType_HasDebugInfo_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - href: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.html - name: DebugUnionType - nameWithType: DebugUnionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.#ctor - href: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugUnionType__ctor_Ubiquity_NET_Llvm_Types_IStructType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo__ - name: DebugUnionType - nameWithType: DebugUnionType.DebugUnionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugUnionType - nameWithType.vb: DebugUnionType.New - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.New - name.vb: New -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IStructType.html - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DebugMemberInfo) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo) - name.vb: IEnumerable(Of DebugMemberInfo) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque - href: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugUnionType_IsOpaque - name: IsOpaque - nameWithType: DebugUnionType.IsOpaque - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.IsOpaque -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_IsOpaque - name: IsOpaque - nameWithType: INamedStructuralType.IsOpaque - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members - href: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugUnionType_Members - name: Members - nameWithType: DebugUnionType.Members - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Members -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_Members - name: Members - nameWithType: INamedStructuralType.Members - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of ITypeRef) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IReadOnlyList(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name - href: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugUnionType_Name - name: Name - nameWithType: DebugUnionType.Name - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.Name -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_Name - name: Name - nameWithType: INamedStructuralType.Name - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers - href: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugUnionType_DebugMembers - name: DebugMembers - nameWithType: DebugUnionType.DebugMembers - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.DebugMembers -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of DebugMemberInfo) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo) - name.vb: IReadOnlyList(Of DebugMemberInfo) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody - href: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.html#Ubiquity_NET_Llvm_DebugInfo_DebugUnionType_SetBody_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_DIScope_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_DebugMemberInfo__ - name: SetBody - nameWithType: DebugUnionType.SetBody - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.SetBody diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml deleted file mode 100644 index 0dcad9b723..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.yml +++ /dev/null @@ -1,643 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - id: DiTypeKind - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ASCII - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Address - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Boolean - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ComplexFloat - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.DecimalFloat - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Edited - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Float - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.HiUser - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ImaginaryFloat - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Invalid - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.LoUser - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.NumericString - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.PackedDecimal - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Signed - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedChar - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedFixed - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UCS - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UTF - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Unsigned - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedChar - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedFixed - langs: - - csharp - - vb - name: DiTypeKind - nameWithType: DiTypeKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DiTypeKind - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 190 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Primitive type supported by the debug information - example: [] - syntax: - content: public enum DiTypeKind - content.vb: Public Enum DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Invalid - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Invalid - id: Invalid - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: Invalid - nameWithType: DiTypeKind.Invalid - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Invalid - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Invalid - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 192 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Invalid = 0 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Address - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Address - id: Address - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: Address - nameWithType: DiTypeKind.Address - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Address - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Address - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 193 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Address = 1 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Boolean - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Boolean - id: Boolean - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: Boolean - nameWithType: DiTypeKind.Boolean - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Boolean - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Boolean - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 194 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Boolean = 2 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ComplexFloat - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ComplexFloat - id: ComplexFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: ComplexFloat - nameWithType: DiTypeKind.ComplexFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ComplexFloat - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ComplexFloat - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 195 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ComplexFloat = 3 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Float - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Float - id: Float - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: Float - nameWithType: DiTypeKind.Float - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Float - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Float - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 196 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Float = 4 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Signed - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Signed - id: Signed - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: Signed - nameWithType: DiTypeKind.Signed - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Signed - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Signed - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 197 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Signed = 5 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedChar - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedChar - id: SignedChar - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: SignedChar - nameWithType: DiTypeKind.SignedChar - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedChar - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedChar - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 198 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SignedChar = 6 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Unsigned - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Unsigned - id: Unsigned - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: Unsigned - nameWithType: DiTypeKind.Unsigned - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Unsigned - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unsigned - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 199 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Unsigned = 7 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedChar - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedChar - id: UnsignedChar - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: UnsignedChar - nameWithType: DiTypeKind.UnsignedChar - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedChar - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedChar - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 200 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: UnsignedChar = 8 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ImaginaryFloat - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ImaginaryFloat - id: ImaginaryFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: ImaginaryFloat - nameWithType: DiTypeKind.ImaginaryFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ImaginaryFloat - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImaginaryFloat - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 201 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ImaginaryFloat = 9 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.PackedDecimal - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.PackedDecimal - id: PackedDecimal - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: PackedDecimal - nameWithType: DiTypeKind.PackedDecimal - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.PackedDecimal - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PackedDecimal - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 202 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PackedDecimal = 10 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.NumericString - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.NumericString - id: NumericString - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: NumericString - nameWithType: DiTypeKind.NumericString - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.NumericString - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NumericString - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 203 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: NumericString = 11 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Edited - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Edited - id: Edited - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: Edited - nameWithType: DiTypeKind.Edited - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.Edited - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Edited - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 204 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Edited = 12 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedFixed - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedFixed - id: SignedFixed - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: SignedFixed - nameWithType: DiTypeKind.SignedFixed - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.SignedFixed - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedFixed - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 205 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SignedFixed = 13 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedFixed - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedFixed - id: UnsignedFixed - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: UnsignedFixed - nameWithType: DiTypeKind.UnsignedFixed - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UnsignedFixed - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedFixed - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 206 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: UnsignedFixed = 14 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.DecimalFloat - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.DecimalFloat - id: DecimalFloat - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: DecimalFloat - nameWithType: DiTypeKind.DecimalFloat - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.DecimalFloat - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DecimalFloat - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 207 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: DecimalFloat = 15 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UTF - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UTF - id: UTF - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: UTF - nameWithType: DiTypeKind.UTF - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UTF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UTF - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 208 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: UTF = 16 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UCS - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UCS - id: UCS - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: UCS - nameWithType: DiTypeKind.UCS - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.UCS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UCS - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 209 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: UCS = 17 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ASCII - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ASCII - id: ASCII - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: ASCII - nameWithType: DiTypeKind.ASCII - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.ASCII - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ASCII - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 210 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ASCII = 18 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.LoUser - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.LoUser - id: LoUser - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: LoUser - nameWithType: DiTypeKind.LoUser - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.LoUser - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LoUser - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 211 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: LoUser = 128 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.HiUser - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.HiUser - id: HiUser - parent: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - langs: - - csharp - - vb - name: HiUser - nameWithType: DiTypeKind.HiUser - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.HiUser - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HiUser - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 212 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: HiUser = 255 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.html - name: DiTypeKind - nameWithType: DiTypeKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.yml deleted file mode 100644 index 19cb6dc8f2..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.yml +++ /dev/null @@ -1,192 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - id: DwarfEmissionKind - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.DebugDirectivesOnly - - Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.Full - - Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.LineTablesOnly - - Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.None - langs: - - csharp - - vb - name: DwarfEmissionKind - nameWithType: DwarfEmissionKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DwarfEmissionKind - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Defines the amount of debug information to emit - example: [] - syntax: - content: public enum DwarfEmissionKind - content.vb: Public Enum DwarfEmissionKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.None - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.None - id: None - parent: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - langs: - - csharp - - vb - name: None - nameWithType: DwarfEmissionKind.None - fullName: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: No debug information - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.Full - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.Full - id: Full - parent: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - langs: - - csharp - - vb - name: Full - nameWithType: DwarfEmissionKind.Full - fullName: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.Full - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Full - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Full Debug information - example: [] - syntax: - content: Full = 1 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.LineTablesOnly - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.LineTablesOnly - id: LineTablesOnly - parent: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - langs: - - csharp - - vb - name: LineTablesOnly - nameWithType: DwarfEmissionKind.LineTablesOnly - fullName: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.LineTablesOnly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LineTablesOnly - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Emit line tables only - example: [] - syntax: - content: LineTablesOnly = 2 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.DebugDirectivesOnly - commentId: F:Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.DebugDirectivesOnly - id: DebugDirectivesOnly - parent: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - langs: - - csharp - - vb - name: DebugDirectivesOnly - nameWithType: DwarfEmissionKind.DebugDirectivesOnly - fullName: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.DebugDirectivesOnly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugDirectivesOnly - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DICompileUnit.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Emit Debug directives only - example: [] - syntax: - content: DebugDirectivesOnly = 3 - return: - type: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.html - name: DwarfEmissionKind - nameWithType: DwarfEmissionKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml deleted file mode 100644 index e5fd41405d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.yml +++ /dev/null @@ -1,4342 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - commentId: T:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - id: ExpressionOp - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Abs - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Addr - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.And - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.BitPiece - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bra - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg0 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg1 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg10 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg11 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg12 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg13 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg14 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg15 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg16 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg17 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg18 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg19 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg2 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg20 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg21 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg22 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg23 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg24 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg25 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg26 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg27 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg28 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg29 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg3 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg30 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg31 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg4 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg5 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg6 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg7 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg8 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg9 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bregx - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call2 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call4 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallFrameCFA - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallRef - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1s - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1u - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2s - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2u - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4s - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4u - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8s - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8u - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Consts - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Constu - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Deref - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.DerefSize - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Div - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Drop - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Dup - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Eq - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Fbreg - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.FormTlsAddress - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ge - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuAddrIndex - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuConstIndex - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuPushTlsAddress - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Gt - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.ImplicitValue - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Invalid - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Le - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit0 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit1 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit10 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit11 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit12 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit13 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit14 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit15 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit16 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit17 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit18 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit19 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit2 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit20 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit21 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit22 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit23 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit24 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit25 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit26 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit27 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit28 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit29 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit3 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit30 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit31 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit4 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit5 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit6 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit7 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit8 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit9 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lt - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Minus - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mod - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mul - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ne - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Neg - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Nop - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Not - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Or - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Over - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Pick - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Piece - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Plus - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PlusUconst - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PushObjectAddress - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg0 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg1 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg10 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg11 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg12 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg13 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg14 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg15 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg16 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg17 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg18 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg19 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg2 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg20 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg21 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg22 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg23 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg24 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg25 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg26 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg27 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg28 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg29 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg3 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg30 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg31 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg4 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg5 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg6 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg7 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg8 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg9 - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Regx - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Rot - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shl - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shr - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shra - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Skip - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.StackValue - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Swap - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xderef - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.XderefSize - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xor - langs: - - csharp - - vb - name: ExpressionOp - nameWithType: ExpressionOp - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExpressionOp - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 262 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Debug information expression operator - example: [] - syntax: - content: 'public enum ExpressionOp : ulong' - content.vb: Public Enum ExpressionOp As ULong -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Invalid - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Invalid - id: Invalid - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Invalid - nameWithType: ExpressionOp.Invalid - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Invalid - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Invalid - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 266 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Invalid = 0 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Addr - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Addr - id: Addr - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Addr - nameWithType: ExpressionOp.Addr - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Addr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Addr - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 267 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Addr = 3 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Deref - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Deref - id: Deref - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Deref - nameWithType: ExpressionOp.Deref - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Deref - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Deref - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 268 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Deref = 6 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1u - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1u - id: Const1u - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Const1u - nameWithType: ExpressionOp.Const1u - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1u - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const1u - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 269 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const1u = 8 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1s - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1s - id: Const1s - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Const1s - nameWithType: ExpressionOp.Const1s - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const1s - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const1s - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 270 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const1s = 9 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2u - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2u - id: Const2u - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Const2u - nameWithType: ExpressionOp.Const2u - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2u - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const2u - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 271 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const2u = 10 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2s - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2s - id: Const2s - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Const2s - nameWithType: ExpressionOp.Const2s - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const2s - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const2s - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 272 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const2s = 11 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4u - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4u - id: Const4u - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Const4u - nameWithType: ExpressionOp.Const4u - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4u - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const4u - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 273 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const4u = 12 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4s - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4s - id: Const4s - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Const4s - nameWithType: ExpressionOp.Const4s - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const4s - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const4s - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 274 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const4s = 13 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8u - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8u - id: Const8u - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Const8u - nameWithType: ExpressionOp.Const8u - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8u - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const8u - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 275 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const8u = 14 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8s - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8s - id: Const8s - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Const8s - nameWithType: ExpressionOp.Const8s - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Const8s - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const8s - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 276 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const8s = 15 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Constu - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Constu - id: Constu - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Constu - nameWithType: ExpressionOp.Constu - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Constu - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Constu - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 277 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Constu = 16 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Consts - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Consts - id: Consts - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Consts - nameWithType: ExpressionOp.Consts - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Consts - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Consts - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 278 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Consts = 17 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Dup - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Dup - id: Dup - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Dup - nameWithType: ExpressionOp.Dup - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Dup - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dup - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 279 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Dup = 18 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Drop - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Drop - id: Drop - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Drop - nameWithType: ExpressionOp.Drop - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Drop - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Drop - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 280 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Drop = 19 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Over - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Over - id: Over - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Over - nameWithType: ExpressionOp.Over - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Over - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Over - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 281 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Over = 20 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Pick - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Pick - id: Pick - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Pick - nameWithType: ExpressionOp.Pick - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Pick - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Pick - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 282 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Pick = 21 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Swap - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Swap - id: Swap - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Swap - nameWithType: ExpressionOp.Swap - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Swap - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Swap - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 283 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Swap = 22 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Rot - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Rot - id: Rot - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Rot - nameWithType: ExpressionOp.Rot - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Rot - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Rot - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 284 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Rot = 23 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xderef - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xderef - id: Xderef - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Xderef - nameWithType: ExpressionOp.Xderef - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xderef - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Xderef - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 285 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Xderef = 24 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Abs - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Abs - id: Abs - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Abs - nameWithType: ExpressionOp.Abs - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Abs - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Abs - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 286 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Abs = 25 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.And - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.And - id: And - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: And - nameWithType: ExpressionOp.And - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.And - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: And - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 287 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: And = 26 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Div - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Div - id: Div - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Div - nameWithType: ExpressionOp.Div - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Div - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Div - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 288 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Div = 27 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Minus - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Minus - id: Minus - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Minus - nameWithType: ExpressionOp.Minus - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Minus - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Minus - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 289 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Minus = 28 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mod - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mod - id: Mod - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Mod - nameWithType: ExpressionOp.Mod - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mod - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Mod - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 290 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Mod = 29 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mul - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mul - id: Mul - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Mul - nameWithType: ExpressionOp.Mul - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Mul - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Mul - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 291 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Mul = 30 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Neg - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Neg - id: Neg - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Neg - nameWithType: ExpressionOp.Neg - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Neg - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Neg - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 292 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Neg = 31 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Not - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Not - id: Not - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Not - nameWithType: ExpressionOp.Not - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Not - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Not - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 293 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Not = 32 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Or - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Or - id: Or - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Or - nameWithType: ExpressionOp.Or - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Or - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Or - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 294 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Or = 33 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Plus - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Plus - id: Plus - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Plus - nameWithType: ExpressionOp.Plus - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Plus - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Plus - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 295 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Plus = 34 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PlusUconst - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PlusUconst - id: PlusUconst - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: PlusUconst - nameWithType: ExpressionOp.PlusUconst - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PlusUconst - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PlusUconst - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 296 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PlusUconst = 35 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shl - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shl - id: Shl - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Shl - nameWithType: ExpressionOp.Shl - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shl - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Shl - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 297 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Shl = 36 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shr - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shr - id: Shr - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Shr - nameWithType: ExpressionOp.Shr - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Shr - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 298 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Shr = 37 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shra - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shra - id: Shra - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Shra - nameWithType: ExpressionOp.Shra - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Shra - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Shra - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 299 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Shra = 38 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xor - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xor - id: Xor - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Xor - nameWithType: ExpressionOp.Xor - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Xor - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Xor - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 300 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Xor = 39 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Skip - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Skip - id: Skip - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Skip - nameWithType: ExpressionOp.Skip - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Skip - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Skip - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 301 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Skip = 47 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bra - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bra - id: Bra - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Bra - nameWithType: ExpressionOp.Bra - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bra - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Bra - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 302 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Bra = 40 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Eq - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Eq - id: Eq - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Eq - nameWithType: ExpressionOp.Eq - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Eq - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Eq - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 303 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Eq = 41 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ge - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ge - id: Ge - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Ge - nameWithType: ExpressionOp.Ge - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ge - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ge - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 304 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Ge = 42 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Gt - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Gt - id: Gt - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Gt - nameWithType: ExpressionOp.Gt - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Gt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Gt - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 305 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Gt = 43 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Le - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Le - id: Le - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Le - nameWithType: ExpressionOp.Le - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Le - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Le - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 306 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Le = 44 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lt - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lt - id: Lt - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lt - nameWithType: ExpressionOp.Lt - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lt - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 307 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lt = 45 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ne - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ne - id: Ne - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Ne - nameWithType: ExpressionOp.Ne - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Ne - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ne - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 308 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Ne = 46 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit0 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit0 - id: Lit0 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit0 - nameWithType: ExpressionOp.Lit0 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit0 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit0 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 309 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit0 = 48 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit1 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit1 - id: Lit1 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit1 - nameWithType: ExpressionOp.Lit1 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit1 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit1 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 310 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit1 = 49 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit2 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit2 - id: Lit2 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit2 - nameWithType: ExpressionOp.Lit2 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit2 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 311 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit2 = 50 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit3 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit3 - id: Lit3 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit3 - nameWithType: ExpressionOp.Lit3 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit3 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit3 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 312 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit3 = 51 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit4 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit4 - id: Lit4 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit4 - nameWithType: ExpressionOp.Lit4 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit4 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit4 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 313 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit4 = 52 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit5 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit5 - id: Lit5 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit5 - nameWithType: ExpressionOp.Lit5 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit5 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit5 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 314 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit5 = 53 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit6 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit6 - id: Lit6 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit6 - nameWithType: ExpressionOp.Lit6 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit6 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit6 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 315 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit6 = 54 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit7 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit7 - id: Lit7 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit7 - nameWithType: ExpressionOp.Lit7 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit7 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit7 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 316 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit7 = 55 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit8 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit8 - id: Lit8 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit8 - nameWithType: ExpressionOp.Lit8 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit8 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit8 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 317 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit8 = 56 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit9 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit9 - id: Lit9 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit9 - nameWithType: ExpressionOp.Lit9 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit9 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit9 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 318 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit9 = 57 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit10 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit10 - id: Lit10 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit10 - nameWithType: ExpressionOp.Lit10 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit10 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit10 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 319 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit10 = 58 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit11 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit11 - id: Lit11 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit11 - nameWithType: ExpressionOp.Lit11 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit11 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit11 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 320 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit11 = 59 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit12 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit12 - id: Lit12 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit12 - nameWithType: ExpressionOp.Lit12 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit12 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit12 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 321 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit12 = 60 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit13 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit13 - id: Lit13 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit13 - nameWithType: ExpressionOp.Lit13 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit13 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit13 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 322 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit13 = 61 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit14 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit14 - id: Lit14 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit14 - nameWithType: ExpressionOp.Lit14 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit14 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit14 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 323 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit14 = 62 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit15 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit15 - id: Lit15 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit15 - nameWithType: ExpressionOp.Lit15 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit15 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit15 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 324 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit15 = 63 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit16 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit16 - id: Lit16 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit16 - nameWithType: ExpressionOp.Lit16 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit16 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit16 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 325 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit16 = 64 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit17 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit17 - id: Lit17 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit17 - nameWithType: ExpressionOp.Lit17 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit17 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit17 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 326 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit17 = 65 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit18 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit18 - id: Lit18 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit18 - nameWithType: ExpressionOp.Lit18 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit18 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit18 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 327 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit18 = 66 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit19 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit19 - id: Lit19 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit19 - nameWithType: ExpressionOp.Lit19 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit19 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit19 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 328 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit19 = 67 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit20 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit20 - id: Lit20 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit20 - nameWithType: ExpressionOp.Lit20 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit20 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit20 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 329 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit20 = 68 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit21 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit21 - id: Lit21 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit21 - nameWithType: ExpressionOp.Lit21 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit21 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit21 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 330 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit21 = 69 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit22 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit22 - id: Lit22 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit22 - nameWithType: ExpressionOp.Lit22 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit22 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit22 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 331 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit22 = 70 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit23 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit23 - id: Lit23 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit23 - nameWithType: ExpressionOp.Lit23 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit23 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit23 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 332 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit23 = 71 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit24 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit24 - id: Lit24 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit24 - nameWithType: ExpressionOp.Lit24 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit24 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit24 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 333 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit24 = 72 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit25 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit25 - id: Lit25 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit25 - nameWithType: ExpressionOp.Lit25 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit25 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit25 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 334 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit25 = 73 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit26 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit26 - id: Lit26 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit26 - nameWithType: ExpressionOp.Lit26 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit26 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit26 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 335 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit26 = 74 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit27 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit27 - id: Lit27 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit27 - nameWithType: ExpressionOp.Lit27 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit27 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit27 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 336 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit27 = 75 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit28 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit28 - id: Lit28 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit28 - nameWithType: ExpressionOp.Lit28 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit28 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit28 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 337 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit28 = 76 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit29 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit29 - id: Lit29 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit29 - nameWithType: ExpressionOp.Lit29 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit29 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit29 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 338 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit29 = 77 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit30 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit30 - id: Lit30 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit30 - nameWithType: ExpressionOp.Lit30 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit30 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit30 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 339 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit30 = 78 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit31 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit31 - id: Lit31 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Lit31 - nameWithType: ExpressionOp.Lit31 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Lit31 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lit31 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 340 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Lit31 = 79 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg0 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg0 - id: Reg0 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg0 - nameWithType: ExpressionOp.Reg0 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg0 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg0 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 341 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg0 = 80 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg1 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg1 - id: Reg1 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg1 - nameWithType: ExpressionOp.Reg1 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg1 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg1 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 342 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg1 = 81 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg2 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg2 - id: Reg2 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg2 - nameWithType: ExpressionOp.Reg2 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg2 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 343 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg2 = 82 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg3 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg3 - id: Reg3 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg3 - nameWithType: ExpressionOp.Reg3 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg3 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg3 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 344 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg3 = 83 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg4 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg4 - id: Reg4 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg4 - nameWithType: ExpressionOp.Reg4 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg4 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg4 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 345 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg4 = 84 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg5 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg5 - id: Reg5 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg5 - nameWithType: ExpressionOp.Reg5 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg5 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg5 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 346 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg5 = 85 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg6 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg6 - id: Reg6 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg6 - nameWithType: ExpressionOp.Reg6 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg6 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg6 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 347 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg6 = 86 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg7 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg7 - id: Reg7 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg7 - nameWithType: ExpressionOp.Reg7 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg7 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg7 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 348 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg7 = 87 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg8 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg8 - id: Reg8 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg8 - nameWithType: ExpressionOp.Reg8 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg8 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg8 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 349 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg8 = 88 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg9 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg9 - id: Reg9 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg9 - nameWithType: ExpressionOp.Reg9 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg9 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg9 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 350 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg9 = 89 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg10 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg10 - id: Reg10 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg10 - nameWithType: ExpressionOp.Reg10 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg10 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg10 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 351 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg10 = 90 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg11 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg11 - id: Reg11 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg11 - nameWithType: ExpressionOp.Reg11 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg11 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg11 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 352 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg11 = 91 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg12 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg12 - id: Reg12 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg12 - nameWithType: ExpressionOp.Reg12 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg12 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg12 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 353 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg12 = 92 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg13 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg13 - id: Reg13 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg13 - nameWithType: ExpressionOp.Reg13 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg13 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg13 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 354 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg13 = 93 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg14 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg14 - id: Reg14 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg14 - nameWithType: ExpressionOp.Reg14 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg14 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg14 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 355 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg14 = 94 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg15 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg15 - id: Reg15 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg15 - nameWithType: ExpressionOp.Reg15 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg15 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg15 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 356 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg15 = 95 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg16 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg16 - id: Reg16 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg16 - nameWithType: ExpressionOp.Reg16 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg16 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg16 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 357 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg16 = 96 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg17 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg17 - id: Reg17 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg17 - nameWithType: ExpressionOp.Reg17 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg17 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg17 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 358 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg17 = 97 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg18 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg18 - id: Reg18 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg18 - nameWithType: ExpressionOp.Reg18 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg18 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg18 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 359 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg18 = 98 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg19 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg19 - id: Reg19 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg19 - nameWithType: ExpressionOp.Reg19 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg19 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg19 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 360 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg19 = 99 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg20 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg20 - id: Reg20 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg20 - nameWithType: ExpressionOp.Reg20 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg20 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg20 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 361 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg20 = 100 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg21 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg21 - id: Reg21 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg21 - nameWithType: ExpressionOp.Reg21 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg21 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg21 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 362 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg21 = 101 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg22 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg22 - id: Reg22 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg22 - nameWithType: ExpressionOp.Reg22 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg22 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg22 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 363 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg22 = 102 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg23 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg23 - id: Reg23 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg23 - nameWithType: ExpressionOp.Reg23 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg23 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg23 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 364 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg23 = 103 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg24 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg24 - id: Reg24 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg24 - nameWithType: ExpressionOp.Reg24 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg24 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg24 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 365 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg24 = 104 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg25 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg25 - id: Reg25 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg25 - nameWithType: ExpressionOp.Reg25 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg25 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg25 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 366 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg25 = 105 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg26 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg26 - id: Reg26 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg26 - nameWithType: ExpressionOp.Reg26 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg26 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg26 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 367 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg26 = 106 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg27 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg27 - id: Reg27 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg27 - nameWithType: ExpressionOp.Reg27 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg27 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg27 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 368 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg27 = 107 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg28 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg28 - id: Reg28 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg28 - nameWithType: ExpressionOp.Reg28 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg28 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg28 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 369 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg28 = 108 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg29 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg29 - id: Reg29 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg29 - nameWithType: ExpressionOp.Reg29 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg29 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg29 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 370 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg29 = 109 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg30 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg30 - id: Reg30 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg30 - nameWithType: ExpressionOp.Reg30 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg30 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg30 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 371 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg30 = 110 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg31 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg31 - id: Reg31 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Reg31 - nameWithType: ExpressionOp.Reg31 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Reg31 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Reg31 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 372 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Reg31 = 111 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg0 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg0 - id: Breg0 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg0 - nameWithType: ExpressionOp.Breg0 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg0 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg0 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 373 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg0 = 112 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg1 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg1 - id: Breg1 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg1 - nameWithType: ExpressionOp.Breg1 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg1 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg1 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 374 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg1 = 113 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg2 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg2 - id: Breg2 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg2 - nameWithType: ExpressionOp.Breg2 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg2 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 375 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg2 = 114 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg3 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg3 - id: Breg3 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg3 - nameWithType: ExpressionOp.Breg3 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg3 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg3 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 376 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg3 = 115 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg4 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg4 - id: Breg4 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg4 - nameWithType: ExpressionOp.Breg4 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg4 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg4 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 377 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg4 = 116 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg5 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg5 - id: Breg5 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg5 - nameWithType: ExpressionOp.Breg5 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg5 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg5 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 378 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg5 = 117 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg6 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg6 - id: Breg6 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg6 - nameWithType: ExpressionOp.Breg6 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg6 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg6 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 379 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg6 = 118 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg7 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg7 - id: Breg7 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg7 - nameWithType: ExpressionOp.Breg7 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg7 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg7 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 380 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg7 = 119 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg8 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg8 - id: Breg8 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg8 - nameWithType: ExpressionOp.Breg8 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg8 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg8 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 381 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg8 = 120 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg9 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg9 - id: Breg9 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg9 - nameWithType: ExpressionOp.Breg9 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg9 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg9 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 382 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg9 = 121 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg10 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg10 - id: Breg10 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg10 - nameWithType: ExpressionOp.Breg10 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg10 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg10 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 383 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg10 = 122 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg11 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg11 - id: Breg11 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg11 - nameWithType: ExpressionOp.Breg11 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg11 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg11 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 384 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg11 = 123 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg12 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg12 - id: Breg12 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg12 - nameWithType: ExpressionOp.Breg12 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg12 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg12 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 385 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg12 = 124 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg13 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg13 - id: Breg13 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg13 - nameWithType: ExpressionOp.Breg13 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg13 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg13 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 386 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg13 = 125 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg14 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg14 - id: Breg14 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg14 - nameWithType: ExpressionOp.Breg14 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg14 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg14 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 387 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg14 = 126 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg15 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg15 - id: Breg15 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg15 - nameWithType: ExpressionOp.Breg15 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg15 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg15 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 388 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg15 = 127 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg16 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg16 - id: Breg16 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg16 - nameWithType: ExpressionOp.Breg16 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg16 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg16 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 389 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg16 = 128 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg17 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg17 - id: Breg17 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg17 - nameWithType: ExpressionOp.Breg17 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg17 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg17 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 390 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg17 = 129 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg18 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg18 - id: Breg18 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg18 - nameWithType: ExpressionOp.Breg18 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg18 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg18 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 391 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg18 = 130 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg19 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg19 - id: Breg19 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg19 - nameWithType: ExpressionOp.Breg19 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg19 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg19 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 392 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg19 = 131 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg20 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg20 - id: Breg20 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg20 - nameWithType: ExpressionOp.Breg20 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg20 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg20 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 393 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg20 = 132 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg21 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg21 - id: Breg21 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg21 - nameWithType: ExpressionOp.Breg21 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg21 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg21 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 394 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg21 = 133 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg22 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg22 - id: Breg22 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg22 - nameWithType: ExpressionOp.Breg22 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg22 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg22 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 395 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg22 = 134 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg23 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg23 - id: Breg23 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg23 - nameWithType: ExpressionOp.Breg23 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg23 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg23 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 396 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg23 = 135 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg24 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg24 - id: Breg24 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg24 - nameWithType: ExpressionOp.Breg24 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg24 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg24 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 397 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg24 = 136 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg25 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg25 - id: Breg25 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg25 - nameWithType: ExpressionOp.Breg25 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg25 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg25 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 398 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg25 = 137 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg26 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg26 - id: Breg26 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg26 - nameWithType: ExpressionOp.Breg26 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg26 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg26 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 399 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg26 = 138 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg27 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg27 - id: Breg27 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg27 - nameWithType: ExpressionOp.Breg27 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg27 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg27 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 400 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg27 = 139 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg28 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg28 - id: Breg28 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg28 - nameWithType: ExpressionOp.Breg28 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg28 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg28 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 401 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg28 = 140 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg29 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg29 - id: Breg29 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg29 - nameWithType: ExpressionOp.Breg29 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg29 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg29 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 402 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg29 = 141 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg30 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg30 - id: Breg30 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg30 - nameWithType: ExpressionOp.Breg30 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg30 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg30 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 403 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg30 = 142 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg31 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg31 - id: Breg31 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Breg31 - nameWithType: ExpressionOp.Breg31 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Breg31 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Breg31 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 404 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Breg31 = 143 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Regx - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Regx - id: Regx - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Regx - nameWithType: ExpressionOp.Regx - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Regx - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Regx - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 405 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Regx = 144 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Fbreg - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Fbreg - id: Fbreg - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Fbreg - nameWithType: ExpressionOp.Fbreg - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Fbreg - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fbreg - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 406 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Fbreg = 145 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bregx - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bregx - id: Bregx - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Bregx - nameWithType: ExpressionOp.Bregx - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Bregx - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Bregx - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 407 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Bregx = 146 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Piece - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Piece - id: Piece - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Piece - nameWithType: ExpressionOp.Piece - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Piece - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Piece - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 408 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Piece = 147 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.DerefSize - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.DerefSize - id: DerefSize - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: DerefSize - nameWithType: ExpressionOp.DerefSize - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.DerefSize - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DerefSize - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 409 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: DerefSize = 148 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.XderefSize - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.XderefSize - id: XderefSize - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: XderefSize - nameWithType: ExpressionOp.XderefSize - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.XderefSize - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: XderefSize - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 410 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: XderefSize = 149 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Nop - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Nop - id: Nop - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Nop - nameWithType: ExpressionOp.Nop - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Nop - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Nop - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 411 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Nop = 150 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PushObjectAddress - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PushObjectAddress - id: PushObjectAddress - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: PushObjectAddress - nameWithType: ExpressionOp.PushObjectAddress - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.PushObjectAddress - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PushObjectAddress - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 412 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PushObjectAddress = 151 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call2 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call2 - id: Call2 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Call2 - nameWithType: ExpressionOp.Call2 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Call2 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 413 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Call2 = 152 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call4 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call4 - id: Call4 - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: Call4 - nameWithType: ExpressionOp.Call4 - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.Call4 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Call4 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 414 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Call4 = 153 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallRef - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallRef - id: CallRef - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: CallRef - nameWithType: ExpressionOp.CallRef - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallRef - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallRef - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 415 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CallRef = 154 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.FormTlsAddress - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.FormTlsAddress - id: FormTlsAddress - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: FormTlsAddress - nameWithType: ExpressionOp.FormTlsAddress - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.FormTlsAddress - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FormTlsAddress - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 416 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: FormTlsAddress = 155 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallFrameCFA - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallFrameCFA - id: CallFrameCFA - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: CallFrameCFA - nameWithType: ExpressionOp.CallFrameCFA - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.CallFrameCFA - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallFrameCFA - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 417 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CallFrameCFA = 156 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.BitPiece - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.BitPiece - id: BitPiece - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: BitPiece - nameWithType: ExpressionOp.BitPiece - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.BitPiece - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitPiece - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 418 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BitPiece = 157 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.ImplicitValue - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.ImplicitValue - id: ImplicitValue - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: ImplicitValue - nameWithType: ExpressionOp.ImplicitValue - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.ImplicitValue - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImplicitValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 419 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ImplicitValue = 158 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.StackValue - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.StackValue - id: StackValue - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: StackValue - nameWithType: ExpressionOp.StackValue - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.StackValue - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StackValue - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 420 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: StackValue = 159 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuPushTlsAddress - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuPushTlsAddress - id: GnuPushTlsAddress - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: GnuPushTlsAddress - nameWithType: ExpressionOp.GnuPushTlsAddress - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuPushTlsAddress - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GnuPushTlsAddress - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 423 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GnuPushTlsAddress = 224 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuAddrIndex - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuAddrIndex - id: GnuAddrIndex - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: GnuAddrIndex - nameWithType: ExpressionOp.GnuAddrIndex - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuAddrIndex - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GnuAddrIndex - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 426 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GnuAddrIndex = 251 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuConstIndex - commentId: F:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuConstIndex - id: GnuConstIndex - parent: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - langs: - - csharp - - vb - name: GnuConstIndex - nameWithType: ExpressionOp.GnuConstIndex - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.GnuConstIndex - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GnuConstIndex - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 427 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GnuConstIndex = 252 - return: - type: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - commentId: T:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.html - name: ExpressionOp - nameWithType: ExpressionOp - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.GenericDINode.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.GenericDINode.yml deleted file mode 100644 index 04dd086732..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.GenericDINode.yml +++ /dev/null @@ -1,686 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.GenericDINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.GenericDINode - id: GenericDINode - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header - langs: - - csharp - - vb - name: GenericDINode - nameWithType: GenericDINode - fullName: Ubiquity.NET.Llvm.DebugInfo.GenericDINode - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/GenericDINode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GenericDINode - path: ../src/Ubiquity.NET.Llvm/DebugInfo/GenericDINode.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Generic tagged DWARF-like IrMetadata node - example: [] - syntax: - content: 'public class GenericDINode : DINode, IEquatable' - content.vb: Public Class GenericDINode Inherits DINode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header - commentId: P:Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header - id: Header - parent: Ubiquity.NET.Llvm.DebugInfo.GenericDINode - langs: - - csharp - - vb - name: Header - nameWithType: GenericDINode.Header - fullName: Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/GenericDINode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Header - path: ../src/Ubiquity.NET.Llvm/DebugInfo/GenericDINode.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the header for this node - remarks: >- - The header is a, possibly empty, null separated string - - header that contains arbitrary fields. - example: [] - syntax: - content: public string Header { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Header As String - overload: Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header* -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - commentId: P:Ubiquity.NET.Llvm.DebugInfo.DINode.Tag - parent: Ubiquity.NET.Llvm.DebugInfo.DINode - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html#Ubiquity_NET_Llvm_DebugInfo_DINode_Tag - name: Tag - nameWithType: DINode.Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode.Tag -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header - href: Ubiquity.NET.Llvm.DebugInfo.GenericDINode.html#Ubiquity_NET_Llvm_DebugInfo_GenericDINode_Header - name: Header - nameWithType: GenericDINode.Header - fullName: Ubiquity.NET.Llvm.DebugInfo.GenericDINode.Header -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.yml deleted file mode 100644 index 87eeca6d9d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.yml +++ /dev/null @@ -1,730 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - id: IDebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - - Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - - Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - langs: - - csharp - - vb - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IDebugType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Provides pairing of a with a for function signatures - remarks: >- -

Primitive types and function signature types are all interned in LLVM, thus there won't be a - - strict one to one relationship between an LLVM type and corresponding language specific debug - - type. (e.g. unsigned char, char, byte and signed byte might all be 8 bit integer values as far - - as LLVM is concerned.) Also, when using the pointer+alloca+memcpy pattern to pass by value the - - actual source debug info type is different than the LLVM function signature. This interface and - - it's implementations are used to construct native type and debug info pairing to allow applications - - to maintain a link from their AST or IR types into the LLVM native type and debug information. - -

- -
note

- - It is important to note that the relationship from the to it's - - properties is strictly ***one way***. That is, there is no way to take an arbitrary - - and re-associate it with the DebugInfoType or an implementation of this interface as there may be many such - - mappings to choose from. - -

- example: [] - syntax: - content: 'public interface IDebugType : ITypeRef, IEquatable where TNative : ITypeRef where TDebug : DIType' - typeParameters: - - id: TNative - description: Native LLVM type - - id: TDebug - description: Debug type description for the type - content.vb: Public Interface IDebugType(Of Out TNative As ITypeRef, Out TDebug As DIType) Inherits ITypeRef, IEquatable(Of ITypeRef) - inheritedMembers: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - id: NativeType - parent: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - langs: - - csharp - - vb - name: NativeType - nameWithType: IDebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.NativeType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NativeType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the LLVM NativeType this interface is associating with debug info in - example: [] - syntax: - content: TNative NativeType { get; } - parameters: [] - return: - type: '{TNative}' - content.vb: ReadOnly Property NativeType As TNative - overload: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType* - nameWithType.vb: IDebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - id: DebugInfoType - parent: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - langs: - - csharp - - vb - name: DebugInfoType - nameWithType: IDebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.DebugInfoType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugInfoType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the debug information type this interface is associating with - example: [] - syntax: - content: TDebug? DebugInfoType { get; } - parameters: [] - return: - type: '{TDebug}' - content.vb: ReadOnly Property DebugInfoType As TDebug - overload: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType* - nameWithType.vb: IDebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - id: CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - langs: - - csharp - - vb - name: CreatePointerType(ref readonly DIBuilder, uint) - nameWithType: IDebugType.CreatePointerType(ref readonly DIBuilder, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.CreatePointerType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreatePointerType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a pointer to this type for a given module and address space - example: [] - syntax: - content: DebugPointerType CreatePointerType(ref readonly DIBuilder diBuilder, uint addressSpace) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - description: - content.vb: Function CreatePointerType(diBuilder As DIBuilder, addressSpace As UInteger) As DebugPointerType - overload: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType* - nameWithType.vb: IDebugType(Of TNative, TDebug).CreatePointerType(DIBuilder, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).CreatePointerType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger) - name.vb: CreatePointerType(DIBuilder, UInteger) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - id: CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.UInt32,System.UInt32) - parent: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - langs: - - csharp - - vb - name: CreateArrayType(ref readonly DIBuilder, uint, uint) - nameWithType: IDebugType.CreateArrayType(ref readonly DIBuilder, uint, uint) - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.CreateArrayType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, uint, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/IDebugType.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Creates a type defining an array of elements of this type - example: [] - syntax: - content: DebugArrayType CreateArrayType(ref readonly DIBuilder diBuilder, uint lowerBound, uint count) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: Debug information builder to use - - id: lowerBound - type: System.UInt32 - description: Lower bound of the array - - id: count - type: System.UInt32 - description: Count of elements in the array - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - description: - content.vb: Function CreateArrayType(diBuilder As DIBuilder, lowerBound As UInteger, count As UInteger) As DebugArrayType - overload: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType* - nameWithType.vb: IDebugType(Of TNative, TDebug).CreateArrayType(DIBuilder, UInteger, UInteger) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).CreateArrayType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, UInteger, UInteger) - name.vb: CreateArrayType(DIBuilder, UInteger, UInteger) -references: -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: IDebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.DebugInfoType - nameWithType.vb: IDebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).DebugInfoType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - commentId: P:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_NativeType - name: NativeType - nameWithType: IDebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.NativeType - nameWithType.vb: IDebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).NativeType -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.NativeType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_NativeType - name: NativeType - nameWithType: IDebugType.NativeType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.NativeType - nameWithType.vb: IDebugType(Of TNative, TDebug).NativeType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).NativeType -- uid: '{TNative}' - commentId: '!:TNative' - definition: TNative - name: TNative - nameWithType: TNative - fullName: TNative -- uid: TNative - name: TNative - nameWithType: TNative - fullName: TNative -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.DebugInfoType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_DebugInfoType - name: DebugInfoType - nameWithType: IDebugType.DebugInfoType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.DebugInfoType - nameWithType.vb: IDebugType(Of TNative, TDebug).DebugInfoType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).DebugInfoType -- uid: '{TDebug}' - commentId: '!:TDebug' - definition: TDebug - name: TDebug - nameWithType: TDebug - fullName: TDebug -- uid: TDebug - name: TDebug - nameWithType: TDebug - fullName: TDebug -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.html - name: DebugPointerType - nameWithType: DebugPointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreatePointerType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreatePointerType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_ - name: CreatePointerType - nameWithType: IDebugType.CreatePointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.CreatePointerType - nameWithType.vb: IDebugType(Of TNative, TDebug).CreatePointerType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).CreatePointerType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html - name: DebugArrayType - nameWithType: DebugArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2.CreateArrayType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html#Ubiquity_NET_Llvm_DebugInfo_IDebugType_2_CreateArrayType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_UInt32_System_UInt32_ - name: CreateArrayType - nameWithType: IDebugType.CreateArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType.CreateArrayType - nameWithType.vb: IDebugType(Of TNative, TDebug).CreateArrayType - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug).CreateArrayType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml deleted file mode 100644 index 9a16c9b007..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.MacroKind.yml +++ /dev/null @@ -1,250 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.MacroKind - id: MacroKind - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.MacroKind.Define - - Ubiquity.NET.Llvm.DebugInfo.MacroKind.EndFile - - Ubiquity.NET.Llvm.DebugInfo.MacroKind.None - - Ubiquity.NET.Llvm.DebugInfo.MacroKind.StartFile - - Ubiquity.NET.Llvm.DebugInfo.MacroKind.Undefine - - Ubiquity.NET.Llvm.DebugInfo.MacroKind.VendorExt - langs: - - csharp - - vb - name: MacroKind - nameWithType: MacroKind - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MacroKind - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Describes the kind of macro declaration - example: [] - syntax: - content: public enum MacroKind - content.vb: Public Enum MacroKind -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind.None - commentId: F:Ubiquity.NET.Llvm.DebugInfo.MacroKind.None - id: None - parent: Ubiquity.NET.Llvm.DebugInfo.MacroKind - langs: - - csharp - - vb - name: None - nameWithType: MacroKind.None - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Default None value. This is an invalid value that is not supported by LLVM - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.DebugInfo.MacroKind -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind.Define - commentId: F:Ubiquity.NET.Llvm.DebugInfo.MacroKind.Define - id: Define - parent: Ubiquity.NET.Llvm.DebugInfo.MacroKind - langs: - - csharp - - vb - name: Define - nameWithType: MacroKind.Define - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind.Define - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Define - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Macro definition - example: [] - syntax: - content: Define = 1 - return: - type: Ubiquity.NET.Llvm.DebugInfo.MacroKind -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind.Undefine - commentId: F:Ubiquity.NET.Llvm.DebugInfo.MacroKind.Undefine - id: Undefine - parent: Ubiquity.NET.Llvm.DebugInfo.MacroKind - langs: - - csharp - - vb - name: Undefine - nameWithType: MacroKind.Undefine - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind.Undefine - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Undefine - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Undefine a macro - example: [] - syntax: - content: Undefine = 2 - return: - type: Ubiquity.NET.Llvm.DebugInfo.MacroKind -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind.StartFile - commentId: F:Ubiquity.NET.Llvm.DebugInfo.MacroKind.StartFile - id: StartFile - parent: Ubiquity.NET.Llvm.DebugInfo.MacroKind - langs: - - csharp - - vb - name: StartFile - nameWithType: MacroKind.StartFile - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind.StartFile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StartFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Start of file macro - example: [] - syntax: - content: StartFile = 3 - return: - type: Ubiquity.NET.Llvm.DebugInfo.MacroKind -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind.EndFile - commentId: F:Ubiquity.NET.Llvm.DebugInfo.MacroKind.EndFile - id: EndFile - parent: Ubiquity.NET.Llvm.DebugInfo.MacroKind - langs: - - csharp - - vb - name: EndFile - nameWithType: MacroKind.EndFile - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind.EndFile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EndFile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: End of file macro - example: [] - syntax: - content: EndFile = 4 - return: - type: Ubiquity.NET.Llvm.DebugInfo.MacroKind -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind.VendorExt - commentId: F:Ubiquity.NET.Llvm.DebugInfo.MacroKind.VendorExt - id: VendorExt - parent: Ubiquity.NET.Llvm.DebugInfo.MacroKind - langs: - - csharp - - vb - name: VendorExt - nameWithType: MacroKind.VendorExt - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind.VendorExt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VendorExt - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DIBuilder.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Vendor specific extension type - example: [] - syntax: - content: VendorExt = 255 - return: - type: Ubiquity.NET.Llvm.DebugInfo.MacroKind -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.MacroKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.MacroKind.html - name: MacroKind - nameWithType: MacroKind - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.yml deleted file mode 100644 index b7b0dcc470..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.yml +++ /dev/null @@ -1,157 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - id: QualifiedTypeTag - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Const - - Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.None - - Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Volatile - langs: - - csharp - - vb - name: QualifiedTypeTag - nameWithType: QualifiedTypeTag - fullName: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: QualifiedTypeTag - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 182 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Tags for qualified types - example: [] - syntax: - content: public enum QualifiedTypeTag - content.vb: Public Enum QualifiedTypeTag -- uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.None - commentId: F:Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.None - id: None - parent: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - langs: - - csharp - - vb - name: None - nameWithType: QualifiedTypeTag.None - fullName: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 184 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag -- uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Const - commentId: F:Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Const - id: Const - parent: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - langs: - - csharp - - vb - name: Const - nameWithType: QualifiedTypeTag.Const - fullName: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Const - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Const - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 185 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Const = 38 - return: - type: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag -- uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Volatile - commentId: F:Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Volatile - id: Volatile - parent: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - langs: - - csharp - - vb - name: Volatile - nameWithType: QualifiedTypeTag.Volatile - fullName: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.Volatile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Volatile - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 186 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Volatile = 53 - return: - type: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.html - name: QualifiedTypeTag - nameWithType: QualifiedTypeTag - fullName: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml deleted file mode 100644 index a8a99b5eb2..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.yml +++ /dev/null @@ -1,1777 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - commentId: T:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - id: SourceLanguage - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2005 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2012 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada83 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada95 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Assembly - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Bliss - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.BorlandDelphi - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C11 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C17 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C89 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C99 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus03 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus11 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus14 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CSharp - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol74 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol85 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp17 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp20 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CppForOpenCL - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Crystal - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.D - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Dylan - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran03 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran08 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran18 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran77 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran90 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran95 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL_ES - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Go - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GoogleRenderScript - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HIP - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HLSL - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Haskell - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HyLo - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Java - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Julia - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Kotlin - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Metal - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.MipsAssembler - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula2 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula3 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Mojo - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Move - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OCaml - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjC - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjCPlusPlus - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenCL - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenClCPP - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.PLI - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Pascal83 - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Python - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.RenderScript - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ruby - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Rust - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.SYCL - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Swift - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.UPC - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Zig - langs: - - csharp - - vb - name: SourceLanguage - nameWithType: SourceLanguage - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SourceLanguage - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: DWARF Debug information language - example: [] - syntax: - content: public enum SourceLanguage - content.vb: Public Enum SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C89 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C89 - id: C89 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: C89 - nameWithType: SourceLanguage.C89 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C89 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: C89 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: C89 = 0 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C - id: C - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: C - nameWithType: SourceLanguage.C - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: C - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: C = 1 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada83 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada83 - id: Ada83 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Ada83 - nameWithType: SourceLanguage.Ada83 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada83 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ada83 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Ada83 = 2 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus - id: CPlusPlus - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: CPlusPlus - nameWithType: SourceLanguage.CPlusPlus - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CPlusPlus - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CPlusPlus = 3 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol74 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol74 - id: Cobol74 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Cobol74 - nameWithType: SourceLanguage.Cobol74 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol74 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cobol74 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Cobol74 = 4 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol85 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol85 - id: Cobol85 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Cobol85 - nameWithType: SourceLanguage.Cobol85 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cobol85 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cobol85 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Cobol85 = 5 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran77 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran77 - id: Fortran77 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Fortran77 - nameWithType: SourceLanguage.Fortran77 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran77 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fortran77 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Fortran77 = 6 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran90 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran90 - id: Fortran90 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Fortran90 - nameWithType: SourceLanguage.Fortran90 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran90 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fortran90 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Fortran90 = 7 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Pascal83 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Pascal83 - id: Pascal83 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Pascal83 - nameWithType: SourceLanguage.Pascal83 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Pascal83 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Pascal83 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Pascal83 = 8 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula2 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula2 - id: Modula2 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Modula2 - nameWithType: SourceLanguage.Modula2 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Modula2 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Modula2 = 9 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Java - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Java - id: Java - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Java - nameWithType: SourceLanguage.Java - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Java - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Java - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Java = 10 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C99 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C99 - id: C99 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: C99 - nameWithType: SourceLanguage.C99 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C99 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: C99 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: C99 = 11 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada95 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada95 - id: Ada95 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Ada95 - nameWithType: SourceLanguage.Ada95 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada95 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ada95 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Ada95 = 12 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran95 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran95 - id: Fortran95 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Fortran95 - nameWithType: SourceLanguage.Fortran95 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran95 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fortran95 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Fortran95 = 13 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.PLI - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.PLI - id: PLI - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: PLI - nameWithType: SourceLanguage.PLI - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.PLI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PLI - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PLI = 14 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjC - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjC - id: ObjC - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: ObjC - nameWithType: SourceLanguage.ObjC - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjC - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ObjC - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ObjC = 15 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjCPlusPlus - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjCPlusPlus - id: ObjCPlusPlus - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: ObjCPlusPlus - nameWithType: SourceLanguage.ObjCPlusPlus - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.ObjCPlusPlus - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ObjCPlusPlus - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ObjCPlusPlus = 16 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.UPC - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.UPC - id: UPC - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: UPC - nameWithType: SourceLanguage.UPC - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.UPC - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UPC - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: UPC = 17 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.D - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.D - id: D - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: D - nameWithType: SourceLanguage.D - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.D - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: D - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: D = 18 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Python - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Python - id: Python - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Python - nameWithType: SourceLanguage.Python - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Python - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Python - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Python = 19 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenCL - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenCL - id: OpenCL - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: OpenCL - nameWithType: SourceLanguage.OpenCL - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenCL - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpenCL - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: OpenCL = 20 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Go - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Go - id: Go - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Go - nameWithType: SourceLanguage.Go - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Go - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Go - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Go = 21 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula3 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula3 - id: Modula3 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Modula3 - nameWithType: SourceLanguage.Modula3 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Modula3 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Modula3 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Modula3 = 22 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Haskell - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Haskell - id: Haskell - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Haskell - nameWithType: SourceLanguage.Haskell - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Haskell - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Haskell - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Haskell = 23 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus03 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus03 - id: CPlusPlus03 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: CPlusPlus03 - nameWithType: SourceLanguage.CPlusPlus03 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus03 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CPlusPlus03 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CPlusPlus03 = 24 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus11 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus11 - id: CPlusPlus11 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: CPlusPlus11 - nameWithType: SourceLanguage.CPlusPlus11 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus11 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CPlusPlus11 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CPlusPlus11 = 25 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OCaml - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OCaml - id: OCaml - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: OCaml - nameWithType: SourceLanguage.OCaml - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OCaml - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OCaml - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: OCaml = 26 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Rust - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Rust - id: Rust - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Rust - nameWithType: SourceLanguage.Rust - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Rust - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Rust - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Rust = 27 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C11 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C11 - id: C11 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: C11 - nameWithType: SourceLanguage.C11 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C11 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: C11 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: C11 = 28 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Swift - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Swift - id: Swift - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Swift - nameWithType: SourceLanguage.Swift - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Swift - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Swift - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Swift = 29 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Julia - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Julia - id: Julia - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Julia - nameWithType: SourceLanguage.Julia - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Julia - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Julia - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Julia = 30 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Dylan - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Dylan - id: Dylan - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Dylan - nameWithType: SourceLanguage.Dylan - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Dylan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dylan - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Dylan = 31 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus14 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus14 - id: CPlusPlus14 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: CPlusPlus14 - nameWithType: SourceLanguage.CPlusPlus14 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CPlusPlus14 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CPlusPlus14 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CPlusPlus14 = 32 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran03 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran03 - id: Fortran03 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Fortran03 - nameWithType: SourceLanguage.Fortran03 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran03 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fortran03 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Fortran03 = 33 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran08 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran08 - id: Fortran08 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Fortran08 - nameWithType: SourceLanguage.Fortran08 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran08 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fortran08 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Fortran08 = 34 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.RenderScript - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.RenderScript - id: RenderScript - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: RenderScript - nameWithType: SourceLanguage.RenderScript - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.RenderScript - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RenderScript - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 50 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: RenderScript = 35 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Bliss - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Bliss - id: Bliss - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Bliss - nameWithType: SourceLanguage.Bliss - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Bliss - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Bliss - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Bliss = 36 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Kotlin - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Kotlin - id: Kotlin - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Kotlin - nameWithType: SourceLanguage.Kotlin - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Kotlin - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kotlin - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Kotlin = 37 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Zig - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Zig - id: Zig - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Zig - nameWithType: SourceLanguage.Zig - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Zig - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Zig - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 53 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Zig = 38 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Crystal - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Crystal - id: Crystal - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Crystal - nameWithType: SourceLanguage.Crystal - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Crystal - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Crystal - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Crystal = 39 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp17 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp17 - id: Cpp17 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Cpp17 - nameWithType: SourceLanguage.Cpp17 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp17 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cpp17 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Cpp17 = 40 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp20 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp20 - id: Cpp20 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Cpp20 - nameWithType: SourceLanguage.Cpp20 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Cpp20 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cpp20 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Cpp20 = 41 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C17 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C17 - id: C17 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: C17 - nameWithType: SourceLanguage.C17 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.C17 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: C17 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: C17 = 42 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran18 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran18 - id: Fortran18 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Fortran18 - nameWithType: SourceLanguage.Fortran18 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Fortran18 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fortran18 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Fortran18 = 43 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2005 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2005 - id: Ada2005 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Ada2005 - nameWithType: SourceLanguage.Ada2005 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2005 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ada2005 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 59 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Ada2005 = 44 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2012 - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2012 - id: Ada2012 - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Ada2012 - nameWithType: SourceLanguage.Ada2012 - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ada2012 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ada2012 - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Ada2012 = 45 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HIP - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HIP - id: HIP - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: HIP - nameWithType: SourceLanguage.HIP - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HIP - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HIP - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: HIP = 46 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Assembly - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Assembly - id: Assembly - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Assembly - nameWithType: SourceLanguage.Assembly - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Assembly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Assembly - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Assembly = 47 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CSharp - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CSharp - id: CSharp - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: CSharp - nameWithType: SourceLanguage.CSharp - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CSharp - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CSharp - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CSharp = 48 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Mojo - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Mojo - id: Mojo - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Mojo - nameWithType: SourceLanguage.Mojo - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Mojo - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Mojo - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Mojo = 49 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL - id: GLSL - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: GLSL - nameWithType: SourceLanguage.GLSL - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GLSL - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 65 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GLSL = 50 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL_ES - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL_ES - id: GLSL_ES - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: GLSL_ES - nameWithType: SourceLanguage.GLSL_ES - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GLSL_ES - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GLSL_ES - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GLSL_ES = 51 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HLSL - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HLSL - id: HLSL - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: HLSL - nameWithType: SourceLanguage.HLSL - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HLSL - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HLSL - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: HLSL = 52 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenClCPP - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenClCPP - id: OpenClCPP - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: OpenClCPP - nameWithType: SourceLanguage.OpenClCPP - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.OpenClCPP - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpenClCPP - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 68 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: OpenClCPP = 53 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CppForOpenCL - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CppForOpenCL - id: CppForOpenCL - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: CppForOpenCL - nameWithType: SourceLanguage.CppForOpenCL - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.CppForOpenCL - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CppForOpenCL - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CppForOpenCL = 54 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.SYCL - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.SYCL - id: SYCL - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: SYCL - nameWithType: SourceLanguage.SYCL - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.SYCL - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SYCL - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SYCL = 55 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ruby - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ruby - id: Ruby - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Ruby - nameWithType: SourceLanguage.Ruby - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Ruby - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ruby - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 71 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Ruby = 56 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Move - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Move - id: Move - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Move - nameWithType: SourceLanguage.Move - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Move - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Move - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 72 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Move = 57 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HyLo - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HyLo - id: HyLo - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: HyLo - nameWithType: SourceLanguage.HyLo - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.HyLo - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HyLo - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: HyLo = 58 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Metal - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Metal - id: Metal - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: Metal - nameWithType: SourceLanguage.Metal - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.Metal - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Metal - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 74 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Metal = 59 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.MipsAssembler - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.MipsAssembler - id: MipsAssembler - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: MipsAssembler - nameWithType: SourceLanguage.MipsAssembler - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.MipsAssembler - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MipsAssembler - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 75 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: MipsAssembler = 60 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GoogleRenderScript - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GoogleRenderScript - id: GoogleRenderScript - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: GoogleRenderScript - nameWithType: SourceLanguage.GoogleRenderScript - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.GoogleRenderScript - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GoogleRenderScript - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GoogleRenderScript = 61 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.BorlandDelphi - commentId: F:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.BorlandDelphi - id: BorlandDelphi - parent: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - langs: - - csharp - - vb - name: BorlandDelphi - nameWithType: SourceLanguage.BorlandDelphi - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.BorlandDelphi - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BorlandDelphi - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 77 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BorlandDelphi = 62 - return: - type: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - commentId: T:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.html - name: SourceLanguage - nameWithType: SourceLanguage - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.Tag.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.Tag.yml deleted file mode 100644 index 6c445901ef..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.Tag.yml +++ /dev/null @@ -1,2342 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.Tag - id: Tag - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.Tag.AccessDeclaration - - Ubiquity.NET.Llvm.DebugInfo.Tag.AppleProperty - - Ubiquity.NET.Llvm.DebugInfo.Tag.ArrayType - - Ubiquity.NET.Llvm.DebugInfo.Tag.AtomicType - - Ubiquity.NET.Llvm.DebugInfo.Tag.BaseType - - Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiDynamicString - - Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiSet - - Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiString - - Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiVariant - - Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandProperty - - Ubiquity.NET.Llvm.DebugInfo.Tag.CallSite - - Ubiquity.NET.Llvm.DebugInfo.Tag.CallSiteParameter - - Ubiquity.NET.Llvm.DebugInfo.Tag.CatchBlock - - Ubiquity.NET.Llvm.DebugInfo.Tag.ClassTemplate - - Ubiquity.NET.Llvm.DebugInfo.Tag.ClassType - - Ubiquity.NET.Llvm.DebugInfo.Tag.CoArrayType - - Ubiquity.NET.Llvm.DebugInfo.Tag.CommonBlock - - Ubiquity.NET.Llvm.DebugInfo.Tag.CommonInclusion - - Ubiquity.NET.Llvm.DebugInfo.Tag.CompileUnit - - Ubiquity.NET.Llvm.DebugInfo.Tag.Condition - - Ubiquity.NET.Llvm.DebugInfo.Tag.ConstType - - Ubiquity.NET.Llvm.DebugInfo.Tag.Constant - - Ubiquity.NET.Llvm.DebugInfo.Tag.DwarfProcedure - - Ubiquity.NET.Llvm.DebugInfo.Tag.DynamicType - - Ubiquity.NET.Llvm.DebugInfo.Tag.EntryPoint - - Ubiquity.NET.Llvm.DebugInfo.Tag.EnumerationType - - Ubiquity.NET.Llvm.DebugInfo.Tag.Enumerator - - Ubiquity.NET.Llvm.DebugInfo.Tag.FileType - - Ubiquity.NET.Llvm.DebugInfo.Tag.FormalParameter - - Ubiquity.NET.Llvm.DebugInfo.Tag.FormatLabel - - Ubiquity.NET.Llvm.DebugInfo.Tag.Friend - - Ubiquity.NET.Llvm.DebugInfo.Tag.FunctionTemplate - - Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSite - - Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSiteParameter - - Ubiquity.NET.Llvm.DebugInfo.Tag.GNUFormalParameterPack - - Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameter - - Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameterPack - - Ubiquity.NET.Llvm.DebugInfo.Tag.GenericSubrange - - Ubiquity.NET.Llvm.DebugInfo.Tag.ImmutableType - - Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedDeclaration - - Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedModule - - Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedUnit - - Ubiquity.NET.Llvm.DebugInfo.Tag.Inheritance - - Ubiquity.NET.Llvm.DebugInfo.Tag.InlinedSubroutine - - Ubiquity.NET.Llvm.DebugInfo.Tag.InterfaceType - - Ubiquity.NET.Llvm.DebugInfo.Tag.LexicalBlock - - Ubiquity.NET.Llvm.DebugInfo.Tag.MIPSLoop - - Ubiquity.NET.Llvm.DebugInfo.Tag.Member - - Ubiquity.NET.Llvm.DebugInfo.Tag.Module - - Ubiquity.NET.Llvm.DebugInfo.Tag.NameList - - Ubiquity.NET.Llvm.DebugInfo.Tag.NameListItem - - Ubiquity.NET.Llvm.DebugInfo.Tag.Namespace - - Ubiquity.NET.Llvm.DebugInfo.Tag.None - - Ubiquity.NET.Llvm.DebugInfo.Tag.PackedType - - Ubiquity.NET.Llvm.DebugInfo.Tag.PartialUnit - - Ubiquity.NET.Llvm.DebugInfo.Tag.PointerToMemberType - - Ubiquity.NET.Llvm.DebugInfo.Tag.PointerType - - Ubiquity.NET.Llvm.DebugInfo.Tag.RValueReferenceType - - Ubiquity.NET.Llvm.DebugInfo.Tag.ReferenceType - - Ubiquity.NET.Llvm.DebugInfo.Tag.RestrictType - - Ubiquity.NET.Llvm.DebugInfo.Tag.SetType - - Ubiquity.NET.Llvm.DebugInfo.Tag.SharedType - - Ubiquity.NET.Llvm.DebugInfo.Tag.SkeletonUnit - - Ubiquity.NET.Llvm.DebugInfo.Tag.StringType - - Ubiquity.NET.Llvm.DebugInfo.Tag.StructureType - - Ubiquity.NET.Llvm.DebugInfo.Tag.SubProgram - - Ubiquity.NET.Llvm.DebugInfo.Tag.SubrangeType - - Ubiquity.NET.Llvm.DebugInfo.Tag.SubroutineType - - Ubiquity.NET.Llvm.DebugInfo.Tag.TagLabel - - Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateAlias - - Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateTypeParameter - - Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateValueParameter - - Ubiquity.NET.Llvm.DebugInfo.Tag.ThrownType - - Ubiquity.NET.Llvm.DebugInfo.Tag.TryBlock - - Ubiquity.NET.Llvm.DebugInfo.Tag.TypeDef - - Ubiquity.NET.Llvm.DebugInfo.Tag.TypeUnit - - Ubiquity.NET.Llvm.DebugInfo.Tag.UnionType - - Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedParameters - - Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedType - - Ubiquity.NET.Llvm.DebugInfo.Tag.Variable - - Ubiquity.NET.Llvm.DebugInfo.Tag.Variant - - Ubiquity.NET.Llvm.DebugInfo.Tag.VariantPart - - Ubiquity.NET.Llvm.DebugInfo.Tag.VolatileType - - Ubiquity.NET.Llvm.DebugInfo.Tag.WithStatement - langs: - - csharp - - vb - name: Tag - nameWithType: Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Tag - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 92 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: 'public enum Tag : ushort' - content.vb: Public Enum Tag As UShort -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.None - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.None - id: None - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: None - nameWithType: Tag.None - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 95 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ArrayType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ArrayType - id: ArrayType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ArrayType - nameWithType: Tag.ArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ArrayType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 96 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ArrayType = 1 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ClassType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ClassType - id: ClassType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ClassType - nameWithType: Tag.ClassType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ClassType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ClassType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 97 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ClassType = 2 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.EntryPoint - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.EntryPoint - id: EntryPoint - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: EntryPoint - nameWithType: Tag.EntryPoint - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.EntryPoint - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EntryPoint - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 98 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: EntryPoint = 3 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.EnumerationType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.EnumerationType - id: EnumerationType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: EnumerationType - nameWithType: Tag.EnumerationType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.EnumerationType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EnumerationType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 99 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: EnumerationType = 4 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.FormalParameter - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.FormalParameter - id: FormalParameter - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: FormalParameter - nameWithType: Tag.FormalParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.FormalParameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FormalParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 100 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: FormalParameter = 5 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedDeclaration - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedDeclaration - id: ImportedDeclaration - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ImportedDeclaration - nameWithType: Tag.ImportedDeclaration - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedDeclaration - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImportedDeclaration - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 101 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ImportedDeclaration = 8 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.TagLabel - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.TagLabel - id: TagLabel - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: TagLabel - nameWithType: Tag.TagLabel - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.TagLabel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TagLabel - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 102 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TagLabel = 10 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.LexicalBlock - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.LexicalBlock - id: LexicalBlock - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: LexicalBlock - nameWithType: Tag.LexicalBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.LexicalBlock - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LexicalBlock - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 103 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: LexicalBlock = 11 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Member - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Member - id: Member - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Member - nameWithType: Tag.Member - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Member - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Member - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Member = 13 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.PointerType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.PointerType - id: PointerType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: PointerType - nameWithType: Tag.PointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.PointerType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 105 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PointerType = 15 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ReferenceType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ReferenceType - id: ReferenceType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ReferenceType - nameWithType: Tag.ReferenceType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ReferenceType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReferenceType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 106 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ReferenceType = 16 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.CompileUnit - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.CompileUnit - id: CompileUnit - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: CompileUnit - nameWithType: Tag.CompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.CompileUnit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CompileUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 107 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CompileUnit = 17 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.StringType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.StringType - id: StringType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: StringType - nameWithType: Tag.StringType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.StringType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StringType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 108 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: StringType = 18 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.StructureType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.StructureType - id: StructureType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: StructureType - nameWithType: Tag.StructureType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.StructureType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StructureType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 109 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: StructureType = 19 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.SubroutineType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.SubroutineType - id: SubroutineType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: SubroutineType - nameWithType: Tag.SubroutineType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.SubroutineType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SubroutineType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 110 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SubroutineType = 21 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.TypeDef - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.TypeDef - id: TypeDef - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: TypeDef - nameWithType: Tag.TypeDef - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.TypeDef - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TypeDef - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 111 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TypeDef = 22 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.UnionType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.UnionType - id: UnionType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: UnionType - nameWithType: Tag.UnionType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.UnionType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnionType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 112 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: UnionType = 23 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedParameters - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedParameters - id: UnspecifiedParameters - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: UnspecifiedParameters - nameWithType: Tag.UnspecifiedParameters - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedParameters - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnspecifiedParameters - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 113 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: UnspecifiedParameters = 24 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Variant - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Variant - id: Variant - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Variant - nameWithType: Tag.Variant - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Variant - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Variant - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 114 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Variant = 25 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.CommonBlock - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.CommonBlock - id: CommonBlock - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: CommonBlock - nameWithType: Tag.CommonBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.CommonBlock - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CommonBlock - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 115 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CommonBlock = 26 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.CommonInclusion - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.CommonInclusion - id: CommonInclusion - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: CommonInclusion - nameWithType: Tag.CommonInclusion - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.CommonInclusion - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CommonInclusion - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 116 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CommonInclusion = 27 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Inheritance - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Inheritance - id: Inheritance - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Inheritance - nameWithType: Tag.Inheritance - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Inheritance - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Inheritance - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 117 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Inheritance = 28 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.InlinedSubroutine - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.InlinedSubroutine - id: InlinedSubroutine - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: InlinedSubroutine - nameWithType: Tag.InlinedSubroutine - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.InlinedSubroutine - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InlinedSubroutine - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 118 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: InlinedSubroutine = 29 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Module - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Module - id: Module - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Module - nameWithType: Tag.Module - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Module - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Module - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 119 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Module = 30 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.PointerToMemberType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.PointerToMemberType - id: PointerToMemberType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: PointerToMemberType - nameWithType: Tag.PointerToMemberType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.PointerToMemberType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerToMemberType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 120 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PointerToMemberType = 31 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.SetType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.SetType - id: SetType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: SetType - nameWithType: Tag.SetType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.SetType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 121 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SetType = 32 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.SubrangeType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.SubrangeType - id: SubrangeType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: SubrangeType - nameWithType: Tag.SubrangeType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.SubrangeType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SubrangeType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 122 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SubrangeType = 33 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.WithStatement - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.WithStatement - id: WithStatement - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: WithStatement - nameWithType: Tag.WithStatement - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.WithStatement - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WithStatement - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 123 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: WithStatement = 34 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.AccessDeclaration - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.AccessDeclaration - id: AccessDeclaration - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: AccessDeclaration - nameWithType: Tag.AccessDeclaration - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.AccessDeclaration - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AccessDeclaration - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 124 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: AccessDeclaration = 35 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.BaseType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.BaseType - id: BaseType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: BaseType - nameWithType: Tag.BaseType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.BaseType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BaseType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 125 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BaseType = 36 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.CatchBlock - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.CatchBlock - id: CatchBlock - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: CatchBlock - nameWithType: Tag.CatchBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.CatchBlock - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchBlock - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 126 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CatchBlock = 37 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ConstType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ConstType - id: ConstType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ConstType - nameWithType: Tag.ConstType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ConstType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 127 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ConstType = 38 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Constant - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Constant - id: Constant - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Constant - nameWithType: Tag.Constant - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Constant - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Constant - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 128 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Constant = 39 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Enumerator - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Enumerator - id: Enumerator - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Enumerator - nameWithType: Tag.Enumerator - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Enumerator - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Enumerator - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Enumerator = 40 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.FileType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.FileType - id: FileType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: FileType - nameWithType: Tag.FileType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.FileType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FileType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 130 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: FileType = 41 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Friend - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Friend - id: Friend - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Friend - nameWithType: Tag.Friend - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Friend - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Friend - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 131 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Friend = 42 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.NameList - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.NameList - id: NameList - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: NameList - nameWithType: Tag.NameList - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.NameList - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NameList - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 132 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: NameList = 43 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.NameListItem - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.NameListItem - id: NameListItem - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: NameListItem - nameWithType: Tag.NameListItem - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.NameListItem - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NameListItem - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 133 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: NameListItem = 44 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.PackedType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.PackedType - id: PackedType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: PackedType - nameWithType: Tag.PackedType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.PackedType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PackedType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 134 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PackedType = 45 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.SubProgram - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.SubProgram - id: SubProgram - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: SubProgram - nameWithType: Tag.SubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.SubProgram - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SubProgram - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 135 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SubProgram = 46 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateTypeParameter - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateTypeParameter - id: TemplateTypeParameter - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: TemplateTypeParameter - nameWithType: Tag.TemplateTypeParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateTypeParameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TemplateTypeParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 136 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TemplateTypeParameter = 47 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateValueParameter - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateValueParameter - id: TemplateValueParameter - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: TemplateValueParameter - nameWithType: Tag.TemplateValueParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateValueParameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TemplateValueParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 137 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TemplateValueParameter = 48 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ThrownType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ThrownType - id: ThrownType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ThrownType - nameWithType: Tag.ThrownType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ThrownType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ThrownType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 138 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ThrownType = 49 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.TryBlock - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.TryBlock - id: TryBlock - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: TryBlock - nameWithType: Tag.TryBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.TryBlock - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryBlock - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 139 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TryBlock = 50 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.VariantPart - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.VariantPart - id: VariantPart - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: VariantPart - nameWithType: Tag.VariantPart - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.VariantPart - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VariantPart - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 140 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: VariantPart = 51 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Variable - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Variable - id: Variable - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Variable - nameWithType: Tag.Variable - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Variable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Variable - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 141 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Variable = 52 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.VolatileType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.VolatileType - id: VolatileType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: VolatileType - nameWithType: Tag.VolatileType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.VolatileType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VolatileType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 142 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: VolatileType = 53 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.DwarfProcedure - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.DwarfProcedure - id: DwarfProcedure - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: DwarfProcedure - nameWithType: Tag.DwarfProcedure - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.DwarfProcedure - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DwarfProcedure - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 143 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: DwarfProcedure = 54 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.RestrictType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.RestrictType - id: RestrictType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: RestrictType - nameWithType: Tag.RestrictType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.RestrictType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RestrictType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 144 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: RestrictType = 55 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.InterfaceType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.InterfaceType - id: InterfaceType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: InterfaceType - nameWithType: Tag.InterfaceType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.InterfaceType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InterfaceType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 145 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: InterfaceType = 56 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Namespace - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Namespace - id: Namespace - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Namespace - nameWithType: Tag.Namespace - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Namespace - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Namespace - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 146 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Namespace = 57 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedModule - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedModule - id: ImportedModule - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ImportedModule - nameWithType: Tag.ImportedModule - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedModule - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImportedModule - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 147 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ImportedModule = 58 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedType - id: UnspecifiedType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: UnspecifiedType - nameWithType: Tag.UnspecifiedType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.UnspecifiedType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnspecifiedType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 148 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: UnspecifiedType = 59 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.PartialUnit - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.PartialUnit - id: PartialUnit - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: PartialUnit - nameWithType: Tag.PartialUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.PartialUnit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PartialUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 149 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: PartialUnit = 60 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedUnit - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedUnit - id: ImportedUnit - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ImportedUnit - nameWithType: Tag.ImportedUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ImportedUnit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImportedUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 150 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ImportedUnit = 61 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.Condition - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.Condition - id: Condition - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: Condition - nameWithType: Tag.Condition - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.Condition - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Condition - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 151 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: Condition = 63 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.SharedType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.SharedType - id: SharedType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: SharedType - nameWithType: Tag.SharedType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.SharedType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SharedType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 152 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SharedType = 64 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.TypeUnit - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.TypeUnit - id: TypeUnit - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: TypeUnit - nameWithType: Tag.TypeUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.TypeUnit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TypeUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 153 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TypeUnit = 65 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.RValueReferenceType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.RValueReferenceType - id: RValueReferenceType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: RValueReferenceType - nameWithType: Tag.RValueReferenceType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.RValueReferenceType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RValueReferenceType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 154 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: RValueReferenceType = 66 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateAlias - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateAlias - id: TemplateAlias - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: TemplateAlias - nameWithType: Tag.TemplateAlias - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.TemplateAlias - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TemplateAlias - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 155 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: TemplateAlias = 67 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.CoArrayType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.CoArrayType - id: CoArrayType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: CoArrayType - nameWithType: Tag.CoArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.CoArrayType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CoArrayType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 156 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CoArrayType = 68 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.GenericSubrange - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.GenericSubrange - id: GenericSubrange - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: GenericSubrange - nameWithType: Tag.GenericSubrange - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.GenericSubrange - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GenericSubrange - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 157 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GenericSubrange = 69 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.DynamicType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.DynamicType - id: DynamicType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: DynamicType - nameWithType: Tag.DynamicType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.DynamicType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DynamicType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 158 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: DynamicType = 70 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.AtomicType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.AtomicType - id: AtomicType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: AtomicType - nameWithType: Tag.AtomicType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.AtomicType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 159 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: AtomicType = 71 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.CallSite - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.CallSite - id: CallSite - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: CallSite - nameWithType: Tag.CallSite - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.CallSite - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallSite - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 160 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CallSite = 72 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.CallSiteParameter - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.CallSiteParameter - id: CallSiteParameter - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: CallSiteParameter - nameWithType: Tag.CallSiteParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.CallSiteParameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallSiteParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 161 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: CallSiteParameter = 73 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.SkeletonUnit - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.SkeletonUnit - id: SkeletonUnit - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: SkeletonUnit - nameWithType: Tag.SkeletonUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.SkeletonUnit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SkeletonUnit - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 162 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: SkeletonUnit = 74 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ImmutableType - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ImmutableType - id: ImmutableType - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ImmutableType - nameWithType: Tag.ImmutableType - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ImmutableType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImmutableType - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 163 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ImmutableType = 75 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.MIPSLoop - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.MIPSLoop - id: MIPSLoop - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: MIPSLoop - nameWithType: Tag.MIPSLoop - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.MIPSLoop - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MIPSLoop - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 164 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: MIPSLoop = 16513 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.FormatLabel - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.FormatLabel - id: FormatLabel - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: FormatLabel - nameWithType: Tag.FormatLabel - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.FormatLabel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FormatLabel - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 165 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: FormatLabel = 16641 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.FunctionTemplate - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.FunctionTemplate - id: FunctionTemplate - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: FunctionTemplate - nameWithType: Tag.FunctionTemplate - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.FunctionTemplate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FunctionTemplate - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 166 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: FunctionTemplate = 16642 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.ClassTemplate - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.ClassTemplate - id: ClassTemplate - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: ClassTemplate - nameWithType: Tag.ClassTemplate - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.ClassTemplate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ClassTemplate - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 167 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: ClassTemplate = 16643 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameter - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameter - id: GNUTemplateParameter - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: GNUTemplateParameter - nameWithType: Tag.GNUTemplateParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUTemplateParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 168 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GNUTemplateParameter = 16646 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameterPack - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameterPack - id: GNUTemplateParameterPack - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: GNUTemplateParameterPack - nameWithType: Tag.GNUTemplateParameterPack - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUTemplateParameterPack - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUTemplateParameterPack - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 169 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GNUTemplateParameterPack = 16647 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUFormalParameterPack - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.GNUFormalParameterPack - id: GNUFormalParameterPack - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: GNUFormalParameterPack - nameWithType: Tag.GNUFormalParameterPack - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUFormalParameterPack - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUFormalParameterPack - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 170 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GNUFormalParameterPack = 16648 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSite - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSite - id: GNUCallSite - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: GNUCallSite - nameWithType: Tag.GNUCallSite - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSite - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUCallSite - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 171 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GNUCallSite = 16649 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSiteParameter - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSiteParameter - id: GNUCallSiteParameter - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: GNUCallSiteParameter - nameWithType: Tag.GNUCallSiteParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.GNUCallSiteParameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUCallSiteParameter - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 172 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: GNUCallSiteParameter = 16650 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.AppleProperty - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.AppleProperty - id: AppleProperty - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: AppleProperty - nameWithType: Tag.AppleProperty - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.AppleProperty - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AppleProperty - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 173 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: AppleProperty = 16896 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandProperty - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandProperty - id: BorlandProperty - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: BorlandProperty - nameWithType: Tag.BorlandProperty - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandProperty - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BorlandProperty - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 174 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BorlandProperty = 45056 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiString - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiString - id: BorlandDelphiString - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: BorlandDelphiString - nameWithType: Tag.BorlandDelphiString - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiString - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BorlandDelphiString - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 175 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BorlandDelphiString = 45057 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiDynamicString - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiDynamicString - id: BorlandDelphiDynamicString - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: BorlandDelphiDynamicString - nameWithType: Tag.BorlandDelphiDynamicString - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiDynamicString - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BorlandDelphiDynamicString - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 176 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BorlandDelphiDynamicString = 45058 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiSet - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiSet - id: BorlandDelphiSet - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: BorlandDelphiSet - nameWithType: Tag.BorlandDelphiSet - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiSet - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BorlandDelphiSet - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 177 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BorlandDelphiSet = 45059 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiVariant - commentId: F:Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiVariant - id: BorlandDelphiVariant - parent: Ubiquity.NET.Llvm.DebugInfo.Tag - langs: - - csharp - - vb - name: BorlandDelphiVariant - nameWithType: Tag.BorlandDelphiVariant - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag.BorlandDelphiVariant - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BorlandDelphiVariant - path: ../src/Ubiquity.NET.Llvm/DebugInfo/DwarfEnumerations.cs - startLine: 178 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - syntax: - content: BorlandDelphiVariant = 45060 - return: - type: Ubiquity.NET.Llvm.DebugInfo.Tag -references: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.Tag - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.Tag.html - name: Tag - nameWithType: Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.yml deleted file mode 100644 index 500169d98e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.yml +++ /dev/null @@ -1,1015 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - id: TupleTypedArrayWrapper`1 - parent: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - langs: - - csharp - - vb - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TupleTypedArrayWrapper - path: ../src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Generic wrapper to treat an MDTuple as an array of elements of a specific type - remarks: >- - This implements a façade pattern that presents an for the - - operands of an . This allows treating the tuple like an array of nodes of a - - particular type. - example: [] - syntax: - content: 'public class TupleTypedArrayWrapper : IReadOnlyList, IReadOnlyCollection, IEnumerable, IEnumerable where T : IrMetadata' - typeParameters: - - id: T - description: Type of elements - content.vb: Public Class TupleTypedArrayWrapper(Of T As IrMetadata) Implements IReadOnlyList(Of T), IReadOnlyCollection(Of T), IEnumerable(Of T), IEnumerable - inheritance: - - System.Object - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - - Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - - Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - - Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - - Ubiquity.NET.Llvm.DebugInfo.DINodeArray - - Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - - Ubiquity.NET.Llvm.DebugInfo.DITypeArray - implements: - - System.Collections.Generic.IReadOnlyList{{T}} - - System.Collections.Generic.IReadOnlyCollection{{T}} - - System.Collections.Generic.IEnumerable{{T}} - - System.Collections.IEnumerable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - id: Tuple - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - langs: - - csharp - - vb - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Tuple - path: ../src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the underlying tuple for this wrapper - example: [] - syntax: - content: public MDTuple? Tuple { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Metadata.MDTuple - content.vb: Public ReadOnly Property Tuple As MDTuple - overload: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple* - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - id: Count - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - langs: - - csharp - - vb - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Count - path: ../src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets the count of operands in the - example: [] - syntax: - content: public int Count { get; } - parameters: [] - return: - type: System.Int32 - content.vb: Public ReadOnly Property Count As Integer - overload: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count* - implements: - - System.Collections.Generic.IReadOnlyCollection{{T}}.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item(System.Int32) - id: Item(System.Int32) - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - langs: - - csharp - - vb - name: this[int] - nameWithType: TupleTypedArrayWrapper.this[int] - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this[int] - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: this[] - path: ../src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets an item from the tuple - example: [] - syntax: - content: public T? this[int index] { get; } - parameters: - - id: index - type: System.Int32 - description: Index of the item to retrieve - return: - type: '{T}' - description: The element at index in the tuple - content.vb: Public ReadOnly Default Property this[](index As Integer) As T - overload: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item* - implements: - - System.Collections.Generic.IReadOnlyList{{T}}.Item(System.Int32) - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[](Integer) - name.vb: this[](Integer) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - id: GetEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - langs: - - csharp - - vb - name: GetEnumerator() - nameWithType: TupleTypedArrayWrapper.GetEnumerator() - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetEnumerator - path: ../src/Ubiquity.NET.Llvm/DebugInfo/TupleTypedArrayWrapper.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.DebugInfo - summary: Gets an enumerator for the items in the - remarks: If the underlying tuple is empty this is an empty enumeration - example: [] - syntax: - content: public IEnumerator GetEnumerator() - return: - type: System.Collections.Generic.IEnumerator{{T}} - description: Enumerator - content.vb: Public Function GetEnumerator() As IEnumerator(Of T) - overload: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator* - implements: - - System.Collections.Generic.IEnumerable{{T}}.GetEnumerator - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator() -references: -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDTuple - commentId: T:Ubiquity.NET.Llvm.Metadata.MDTuple - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDTuple.html - name: MDTuple - nameWithType: MDTuple - fullName: Ubiquity.NET.Llvm.Metadata.MDTuple -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Collections.Generic.IReadOnlyList{{T}} - commentId: T:System.Collections.Generic.IReadOnlyList{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{{T}} - commentId: T:System.Collections.Generic.IReadOnlyCollection{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable{{T}} - commentId: T:System.Collections.Generic.IEnumerable{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Tuple - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Tuple - name: Tuple - nameWithType: TupleTypedArrayWrapper.Tuple - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Tuple - nameWithType.vb: TupleTypedArrayWrapper(Of T).Tuple - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Tuple -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Count - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Count - name: Count - nameWithType: TupleTypedArrayWrapper.Count - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.Count - nameWithType.vb: TupleTypedArrayWrapper(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).Count -- uid: System.Collections.Generic.IReadOnlyCollection{{T}}.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection{`0}.Count - parent: System.Collections.Generic.IReadOnlyCollection{{T}} - definition: System.Collections.Generic.IReadOnlyCollection`1.Count - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Collections.Generic.IReadOnlyCollection`1.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection`1.Count - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.Item - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_Item_System_Int32_ - name: this - nameWithType: TupleTypedArrayWrapper.this - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.this - nameWithType.vb: TupleTypedArrayWrapper(Of T).this[] - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).this[] - name.vb: this[] -- uid: System.Collections.Generic.IReadOnlyList{{T}}.Item(System.Int32) - commentId: P:System.Collections.Generic.IReadOnlyList{`0}.Item(System.Int32) - parent: System.Collections.Generic.IReadOnlyList{{T}} - definition: System.Collections.Generic.IReadOnlyList`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: IReadOnlyList.this[int] - fullName: System.Collections.Generic.IReadOnlyList.this[int] - nameWithType.vb: IReadOnlyList(Of T).this[](Integer) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList{`0}.Item(System.Int32) - name: this[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1.item - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: System.Collections.Generic.IReadOnlyList`1.Item(System.Int32) - commentId: P:System.Collections.Generic.IReadOnlyList`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: IReadOnlyList.this[int] - fullName: System.Collections.Generic.IReadOnlyList.this[int] - nameWithType.vb: IReadOnlyList(Of T).this[](Integer) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1.Item(System.Int32) - name: this[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1.item - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator* - commentId: Overload:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1.GetEnumerator - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html#Ubiquity_NET_Llvm_DebugInfo_TupleTypedArrayWrapper_1_GetEnumerator - name: GetEnumerator - nameWithType: TupleTypedArrayWrapper.GetEnumerator - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper.GetEnumerator - nameWithType.vb: TupleTypedArrayWrapper(Of T).GetEnumerator - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T).GetEnumerator -- uid: System.Collections.Generic.IEnumerable{{T}}.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable{`0}.GetEnumerator - parent: System.Collections.Generic.IEnumerable{{T}} - definition: System.Collections.Generic.IEnumerable`1.GetEnumerator - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable{`0}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable{`0}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerator{{T}} - commentId: T:System.Collections.Generic.IEnumerator{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerator`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - name: IEnumerator - nameWithType: IEnumerator - fullName: System.Collections.Generic.IEnumerator - nameWithType.vb: IEnumerator(Of T) - fullName.vb: System.Collections.Generic.IEnumerator(Of T) - name.vb: IEnumerator(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable`1.GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerator`1 - commentId: T:System.Collections.Generic.IEnumerator`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - name: IEnumerator - nameWithType: IEnumerator - fullName: System.Collections.Generic.IEnumerator - nameWithType.vb: IEnumerator(Of T) - fullName.vb: System.Collections.Generic.IEnumerator(Of T) - name.vb: IEnumerator(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.yml deleted file mode 100644 index 954c42703b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DebugInfo.yml +++ /dev/null @@ -1,624 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - id: Ubiquity.NET.Llvm.DebugInfo - children: - - Ubiquity.NET.Llvm.DebugInfo.DIBasicType - - Ubiquity.NET.Llvm.DebugInfo.DIBuilder - - Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - - Ubiquity.NET.Llvm.DebugInfo.DICompositeType - - Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - - Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - - Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - - Ubiquity.NET.Llvm.DebugInfo.DIExpression - - Ubiquity.NET.Llvm.DebugInfo.DIFile - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - - Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - - Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - - Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - - Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - - Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - - Ubiquity.NET.Llvm.DebugInfo.DILocalScope - - Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - - Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - - Ubiquity.NET.Llvm.DebugInfo.DILocation - - Ubiquity.NET.Llvm.DebugInfo.DIMacro - - Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - - Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - - Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - - Ubiquity.NET.Llvm.DebugInfo.DIModule - - Ubiquity.NET.Llvm.DebugInfo.DINamespace - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.DebugInfo.DINodeArray - - Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - - Ubiquity.NET.Llvm.DebugInfo.DIScope - - Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - - Ubiquity.NET.Llvm.DebugInfo.DISubProgram - - Ubiquity.NET.Llvm.DebugInfo.DISubRange - - Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - - Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - - Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - - Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - - Ubiquity.NET.Llvm.DebugInfo.DIType - - Ubiquity.NET.Llvm.DebugInfo.DITypeArray - - Ubiquity.NET.Llvm.DebugInfo.DIVariable - - Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - - Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - - Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - - Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - - Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - - Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - - Ubiquity.NET.Llvm.DebugInfo.DebugRecord - - Ubiquity.NET.Llvm.DebugInfo.DebugStructType - - Ubiquity.NET.Llvm.DebugInfo.DebugType - - Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - - Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - - Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - - Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - - Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - - Ubiquity.NET.Llvm.DebugInfo.GenericDINode - - Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - - Ubiquity.NET.Llvm.DebugInfo.MacroKind - - Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - - Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - - Ubiquity.NET.Llvm.DebugInfo.Tag - - Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType.html - name: DebugArrayType - nameWithType: DebugArrayType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - href: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType.html - name: DebugBasicType - nameWithType: DebugBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html - name: DebugFunctionType - nameWithType: DebugFunctionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo.html - name: DebugMemberInfo - nameWithType: DebugMemberInfo - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout.html - name: DebugMemberLayout - nameWithType: DebugMemberLayout - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType.html - name: DebugPointerType - nameWithType: DebugPointerType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugRecord - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html - name: DebugRecord - nameWithType: DebugRecord - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugRecord -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugStructType - href: Ubiquity.NET.Llvm.DebugInfo.DebugStructType.html - name: DebugStructType - nameWithType: DebugStructType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugStructType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType - nameWithType.vb: DebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.DebugType(Of TNative, TDebug) - name.vb: DebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - href: Ubiquity.NET.Llvm.DebugInfo.DebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugType.html - name: DebugType - nameWithType: DebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - href: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType.html - name: DebugUnionType - nameWithType: DebugUnionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBasicType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBasicType.html - name: DIBasicType - nameWithType: DIBasicType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBasicType -- uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.MacroKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.MacroKind.html - name: MacroKind - nameWithType: MacroKind - fullName: Ubiquity.NET.Llvm.DebugInfo.MacroKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind.html - name: DwarfEmissionKind - nameWithType: DwarfEmissionKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html - name: DICompileUnit - nameWithType: DICompileUnit - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeType.html - name: DICompositeType - nameWithType: DICompositeType - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeType -- uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray.html - name: DICompositeTypeArray - nameWithType: DICompositeTypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType.html - name: DIDerivedType - nameWithType: DIDerivedType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType -- uid: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator.html - name: DIEnumerator - nameWithType: DIEnumerator - fullName: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator -- uid: Ubiquity.NET.Llvm.DebugInfo.DIExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIExpression - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIExpression.html - name: DIExpression - nameWithType: DIExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIExpression -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable.html - name: DIGlobalVariable - nameWithType: DIGlobalVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.html - name: DIGlobalVariableExpression - nameWithType: DIGlobalVariableExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray.html - name: DIGlobalVariableExpressionArray - nameWithType: DIGlobalVariableExpressionArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - href: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity.html - name: DIImportedEntity - nameWithType: DIImportedEntity - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity -- uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray.html - name: DIImportedEntityArray - nameWithType: DIImportedEntityArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock.html - name: DILexicalBlock - nameWithType: DILexicalBlock - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase.html - name: DILexicalBlockBase - nameWithType: DILexicalBlockBase - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase -- uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile.html - name: DILexicalBlockFile - nameWithType: DILexicalBlockFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable.html - name: DILocalVariable - nameWithType: DILocalVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray.html - name: DILocalVariableArray - nameWithType: DILocalVariableArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocation - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html - name: DILocation - nameWithType: DILocation - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacro - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacro - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacro.html - name: DIMacro - nameWithType: DIMacro - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacro -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile.html - name: DIMacroFile - nameWithType: DIMacroFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode.html - name: DIMacroNode - nameWithType: DIMacroNode - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode -- uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray.html - name: DIMacroNodeArray - nameWithType: DIMacroNodeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIModule - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIModule - href: Ubiquity.NET.Llvm.DebugInfo.DIModule.html - name: DIModule - nameWithType: DIModule - fullName: Ubiquity.NET.Llvm.DebugInfo.DIModule -- uid: Ubiquity.NET.Llvm.DebugInfo.DINamespace - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINamespace - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINamespace.html - name: DINamespace - nameWithType: DINamespace - fullName: Ubiquity.NET.Llvm.DebugInfo.DINamespace -- uid: Ubiquity.NET.Llvm.DebugInfo.DINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINode - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINode.html - name: DINode - nameWithType: DINode - fullName: Ubiquity.NET.Llvm.DebugInfo.DINode -- uid: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DINodeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DINodeArray.html - name: DINodeArray - nameWithType: DINodeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DINodeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty.html - name: DIObjCProperty - nameWithType: DIObjCProperty - fullName: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray.html - name: DIScopeArray - nameWithType: DIScopeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubProgram - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html - name: DISubProgram - nameWithType: DISubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubRange - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubRange.html - name: DISubRange - nameWithType: DISubRange - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubRange -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType.html - name: DISubroutineType - nameWithType: DISubroutineType - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter.html - name: DITemplateParameter - nameWithType: DITemplateParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray.html - name: DITemplateParameterArray - nameWithType: DITemplateParameterArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter.html - name: DITemplateTypeParameter - nameWithType: DITemplateTypeParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter -- uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - href: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter.html - name: DITemplateValueParameter - nameWithType: DITemplateValueParameter - fullName: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter -- uid: Ubiquity.NET.Llvm.DebugInfo.DIType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - name: DIType - nameWithType: DIType - fullName: Ubiquity.NET.Llvm.DebugInfo.DIType -- uid: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DITypeArray - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DITypeArray.html - name: DITypeArray - nameWithType: DITypeArray - fullName: Ubiquity.NET.Llvm.DebugInfo.DITypeArray -- uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIVariable - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIVariable.html - name: DIVariable - nameWithType: DIVariable - fullName: Ubiquity.NET.Llvm.DebugInfo.DIVariable -- uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - commentId: T:Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage.html - name: SourceLanguage - nameWithType: SourceLanguage - fullName: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage -- uid: Ubiquity.NET.Llvm.DebugInfo.Tag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.Tag - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.Tag.html - name: Tag - nameWithType: Tag - fullName: Ubiquity.NET.Llvm.DebugInfo.Tag -- uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - commentId: T:Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag.html - name: QualifiedTypeTag - nameWithType: QualifiedTypeTag - fullName: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag -- uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind.html - name: DiTypeKind - nameWithType: DiTypeKind - fullName: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - commentId: T:Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp.html - name: ExpressionOp - nameWithType: ExpressionOp - fullName: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp -- uid: Ubiquity.NET.Llvm.DebugInfo.GenericDINode - commentId: T:Ubiquity.NET.Llvm.DebugInfo.GenericDINode - href: Ubiquity.NET.Llvm.DebugInfo.GenericDINode.html - name: GenericDINode - nameWithType: GenericDINode - fullName: Ubiquity.NET.Llvm.DebugInfo.GenericDINode -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - name: TupleTypedArrayWrapper - nameWithType: TupleTypedArrayWrapper - fullName: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper - nameWithType.vb: TupleTypedArrayWrapper(Of T) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper(Of T) - name.vb: TupleTypedArrayWrapper(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - href: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticInfo.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticInfo.yml deleted file mode 100644 index a33a3b6117..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticInfo.yml +++ /dev/null @@ -1,379 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DiagnosticInfo - commentId: T:Ubiquity.NET.Llvm.DiagnosticInfo - id: DiagnosticInfo - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.DiagnosticInfo.Description - - Ubiquity.NET.Llvm.DiagnosticInfo.Severity - langs: - - csharp - - vb - name: DiagnosticInfo - nameWithType: DiagnosticInfo - fullName: Ubiquity.NET.Llvm.DiagnosticInfo - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DiagnosticInfo - path: ../src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Structure to represent a Diagnostic information reported from a context diagnostic handler - example: [] - syntax: - content: public readonly ref struct DiagnosticInfo - content.vb: Public Structure DiagnosticInfo - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.DiagnosticInfo.Severity - commentId: P:Ubiquity.NET.Llvm.DiagnosticInfo.Severity - id: Severity - parent: Ubiquity.NET.Llvm.DiagnosticInfo - langs: - - csharp - - vb - name: Severity - nameWithType: DiagnosticInfo.Severity - fullName: Ubiquity.NET.Llvm.DiagnosticInfo.Severity - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Severity - path: ../src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the severity for this diagnostic - example: [] - syntax: - content: public DiagnosticSeverity Severity { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DiagnosticSeverity - content.vb: Public ReadOnly Property Severity As DiagnosticSeverity - overload: Ubiquity.NET.Llvm.DiagnosticInfo.Severity* -- uid: Ubiquity.NET.Llvm.DiagnosticInfo.Description - commentId: P:Ubiquity.NET.Llvm.DiagnosticInfo.Description - id: Description - parent: Ubiquity.NET.Llvm.DiagnosticInfo - langs: - - csharp - - vb - name: Description - nameWithType: DiagnosticInfo.Description - fullName: Ubiquity.NET.Llvm.DiagnosticInfo.Description - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Description - path: ../src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the description for this diagnostic - example: [] - syntax: - content: public string Description { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Description As String - overload: Ubiquity.NET.Llvm.DiagnosticInfo.Description* -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DiagnosticInfo.Severity* - commentId: Overload:Ubiquity.NET.Llvm.DiagnosticInfo.Severity - href: Ubiquity.NET.Llvm.DiagnosticInfo.html#Ubiquity_NET_Llvm_DiagnosticInfo_Severity - name: Severity - nameWithType: DiagnosticInfo.Severity - fullName: Ubiquity.NET.Llvm.DiagnosticInfo.Severity -- uid: Ubiquity.NET.Llvm.DiagnosticSeverity - commentId: T:Ubiquity.NET.Llvm.DiagnosticSeverity - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DiagnosticSeverity.html - name: DiagnosticSeverity - nameWithType: DiagnosticSeverity - fullName: Ubiquity.NET.Llvm.DiagnosticSeverity -- uid: Ubiquity.NET.Llvm.DiagnosticInfo.Description* - commentId: Overload:Ubiquity.NET.Llvm.DiagnosticInfo.Description - href: Ubiquity.NET.Llvm.DiagnosticInfo.html#Ubiquity_NET_Llvm_DiagnosticInfo_Description - name: Description - nameWithType: DiagnosticInfo.Description - fullName: Ubiquity.NET.Llvm.DiagnosticInfo.Description -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.yml deleted file mode 100644 index ac22d94676..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.yml +++ /dev/null @@ -1,79 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - commentId: T:Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - id: DiagnosticInfoCallbackAction - parent: Ubiquity.NET.Llvm - children: [] - langs: - - csharp - - vb - name: DiagnosticInfoCallbackAction - nameWithType: DiagnosticInfoCallbackAction - fullName: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - type: Delegate - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticCallbackHolder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DiagnosticInfoCallbackAction - path: ../src/Ubiquity.NET.Llvm/DiagnosticCallbackHolder.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Delegate for a diagnostic info callback - example: - - >- -
if( info.Severity <= DiagnosticSeverity.Warning)
-
-    {
-        using var msg = info.Description
-        Debug.WriteLine( "{0}: {1}", level, msg );
-    }
- syntax: - content: public delegate void DiagnosticInfoCallbackAction(DiagnosticInfo info) - parameters: - - id: info - type: Ubiquity.NET.Llvm.DiagnosticInfo - description: Diagnostic information to process - content.vb: Public Delegate Sub DiagnosticInfoCallbackAction(info As DiagnosticInfo) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.DiagnosticInfo - commentId: T:Ubiquity.NET.Llvm.DiagnosticInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DiagnosticInfo.html - name: DiagnosticInfo - nameWithType: DiagnosticInfo - fullName: Ubiquity.NET.Llvm.DiagnosticInfo diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticSeverity.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticSeverity.yml deleted file mode 100644 index ccf8fb92bc..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DiagnosticSeverity.yml +++ /dev/null @@ -1,184 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DiagnosticSeverity - commentId: T:Ubiquity.NET.Llvm.DiagnosticSeverity - id: DiagnosticSeverity - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.DiagnosticSeverity.Error - - Ubiquity.NET.Llvm.DiagnosticSeverity.Note - - Ubiquity.NET.Llvm.DiagnosticSeverity.Remark - - Ubiquity.NET.Llvm.DiagnosticSeverity.Warning - langs: - - csharp - - vb - name: DiagnosticSeverity - nameWithType: DiagnosticSeverity - fullName: Ubiquity.NET.Llvm.DiagnosticSeverity - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DiagnosticSeverity - path: ../src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Severity level for diagnostics - example: [] - syntax: - content: public enum DiagnosticSeverity - content.vb: Public Enum DiagnosticSeverity -- uid: Ubiquity.NET.Llvm.DiagnosticSeverity.Error - commentId: F:Ubiquity.NET.Llvm.DiagnosticSeverity.Error - id: Error - parent: Ubiquity.NET.Llvm.DiagnosticSeverity - langs: - - csharp - - vb - name: Error - nameWithType: DiagnosticSeverity.Error - fullName: Ubiquity.NET.Llvm.DiagnosticSeverity.Error - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Error - path: ../src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Errors reported from native code - example: [] - syntax: - content: Error = 0 - return: - type: Ubiquity.NET.Llvm.DiagnosticSeverity -- uid: Ubiquity.NET.Llvm.DiagnosticSeverity.Warning - commentId: F:Ubiquity.NET.Llvm.DiagnosticSeverity.Warning - id: Warning - parent: Ubiquity.NET.Llvm.DiagnosticSeverity - langs: - - csharp - - vb - name: Warning - nameWithType: DiagnosticSeverity.Warning - fullName: Ubiquity.NET.Llvm.DiagnosticSeverity.Warning - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Warning - path: ../src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Warnings reported from native code - example: [] - syntax: - content: Warning = 1 - return: - type: Ubiquity.NET.Llvm.DiagnosticSeverity -- uid: Ubiquity.NET.Llvm.DiagnosticSeverity.Remark - commentId: F:Ubiquity.NET.Llvm.DiagnosticSeverity.Remark - id: Remark - parent: Ubiquity.NET.Llvm.DiagnosticSeverity - langs: - - csharp - - vb - name: Remark - nameWithType: DiagnosticSeverity.Remark - fullName: Ubiquity.NET.Llvm.DiagnosticSeverity.Remark - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Remark - path: ../src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Remarks reported from native code - example: [] - syntax: - content: Remark = 2 - return: - type: Ubiquity.NET.Llvm.DiagnosticSeverity -- uid: Ubiquity.NET.Llvm.DiagnosticSeverity.Note - commentId: F:Ubiquity.NET.Llvm.DiagnosticSeverity.Note - id: Note - parent: Ubiquity.NET.Llvm.DiagnosticSeverity - langs: - - csharp - - vb - name: Note - nameWithType: DiagnosticSeverity.Note - fullName: Ubiquity.NET.Llvm.DiagnosticSeverity.Note - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Note - path: ../src/Ubiquity.NET.Llvm/DiagnosticInfo.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Note level diagnostics reported from native code - example: [] - syntax: - content: Note = 3 - return: - type: Ubiquity.NET.Llvm.DiagnosticSeverity -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.DiagnosticSeverity - commentId: T:Ubiquity.NET.Llvm.DiagnosticSeverity - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DiagnosticSeverity.html - name: DiagnosticSeverity - nameWithType: DiagnosticSeverity - fullName: Ubiquity.NET.Llvm.DiagnosticSeverity diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Disassembler.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Disassembler.yml deleted file mode 100644 index 3621aa1135..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Disassembler.yml +++ /dev/null @@ -1,802 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Disassembler - commentId: T:Ubiquity.NET.Llvm.Disassembler - id: Disassembler - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - - Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - - Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - - Ubiquity.NET.Llvm.Disassembler.Disassemble(System.ReadOnlySpan{System.Byte},System.UInt64,System.Int32) - - Ubiquity.NET.Llvm.Disassembler.Dispose - - Ubiquity.NET.Llvm.Disassembler.SetOptions(Ubiquity.NET.Llvm.DisassemblerOptions) - langs: - - csharp - - vb - name: Disassembler - nameWithType: Disassembler - fullName: Ubiquity.NET.Llvm.Disassembler - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Disassembler - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 74 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: LLVM Disassembler - example: [] - syntax: - content: 'public sealed class Disassembler : IDisposable' - content.vb: Public NotInheritable Class Disassembler Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Disassembler.Dispose - commentId: M:Ubiquity.NET.Llvm.Disassembler.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.Disassembler - langs: - - csharp - - vb - name: Dispose() - nameWithType: Disassembler.Dispose() - fullName: Ubiquity.NET.Llvm.Disassembler.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 78 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.Disassembler.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - commentId: M:Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - id: '#ctor(Ubiquity.NET.Llvm.Triple,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks)' - parent: Ubiquity.NET.Llvm.Disassembler - langs: - - csharp - - vb - name: Disassembler(Triple, int, IDisassemblerCallbacks?) - nameWithType: Disassembler.Disassembler(Triple, int, IDisassemblerCallbacks?) - fullName: Ubiquity.NET.Llvm.Disassembler.Disassembler(Ubiquity.NET.Llvm.Triple, int, Ubiquity.NET.Llvm.IDisassemblerCallbacks?) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class. - remarks: The callBacks parameter is experimental and recommended left as the default value - example: [] - syntax: - content: public Disassembler(Triple triple, int tagType, IDisassemblerCallbacks? callBacks = null) - parameters: - - id: triple - type: Ubiquity.NET.Llvm.Triple - description: Triple for the instruction set to disassemble - - id: tagType - type: System.Int32 - description: 'TODO: Explain this...' - - id: callBacks - type: Ubiquity.NET.Llvm.IDisassemblerCallbacks - description: 'Optional callbacks [Default: null]' - content.vb: Public Sub New(triple As Triple, tagType As Integer, callBacks As IDisassemblerCallbacks = Nothing) - overload: Ubiquity.NET.Llvm.Disassembler.#ctor* - nameWithType.vb: Disassembler.New(Triple, Integer, IDisassemblerCallbacks) - fullName.vb: Ubiquity.NET.Llvm.Disassembler.New(Ubiquity.NET.Llvm.Triple, Integer, Ubiquity.NET.Llvm.IDisassemblerCallbacks) - name.vb: New(Triple, Integer, IDisassemblerCallbacks) -- uid: Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - commentId: M:Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - id: '#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks)' - parent: Ubiquity.NET.Llvm.Disassembler - langs: - - csharp - - vb - name: Disassembler(Triple, string, int, IDisassemblerCallbacks?) - nameWithType: Disassembler.Disassembler(Triple, string, int, IDisassemblerCallbacks?) - fullName: Ubiquity.NET.Llvm.Disassembler.Disassembler(Ubiquity.NET.Llvm.Triple, string, int, Ubiquity.NET.Llvm.IDisassemblerCallbacks?) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 96 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class. - remarks: The callBacks parameter is experimental and recommended left as the default value - example: [] - syntax: - content: public Disassembler(Triple triple, string cpu, int tagType, IDisassemblerCallbacks? callBacks = null) - parameters: - - id: triple - type: Ubiquity.NET.Llvm.Triple - description: Triple for the instruction set to disassemble - - id: cpu - type: System.String - description: CPU string for the instruction set - - id: tagType - type: System.Int32 - description: 'TODO: Explain this...' - - id: callBacks - type: Ubiquity.NET.Llvm.IDisassemblerCallbacks - description: 'Optional callbacks [Default: null]' - content.vb: Public Sub New(triple As Triple, cpu As String, tagType As Integer, callBacks As IDisassemblerCallbacks = Nothing) - overload: Ubiquity.NET.Llvm.Disassembler.#ctor* - nameWithType.vb: Disassembler.New(Triple, String, Integer, IDisassemblerCallbacks) - fullName.vb: Ubiquity.NET.Llvm.Disassembler.New(Ubiquity.NET.Llvm.Triple, String, Integer, Ubiquity.NET.Llvm.IDisassemblerCallbacks) - name.vb: New(Triple, String, Integer, IDisassemblerCallbacks) -- uid: Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - commentId: M:Ubiquity.NET.Llvm.Disassembler.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks) - id: '#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,System.Int32,Ubiquity.NET.Llvm.IDisassemblerCallbacks)' - parent: Ubiquity.NET.Llvm.Disassembler - langs: - - csharp - - vb - name: Disassembler(Triple, string, string, int, IDisassemblerCallbacks?) - nameWithType: Disassembler.Disassembler(Triple, string, string, int, IDisassemblerCallbacks?) - fullName: Ubiquity.NET.Llvm.Disassembler.Disassembler(Ubiquity.NET.Llvm.Triple, string, string, int, Ubiquity.NET.Llvm.IDisassemblerCallbacks?) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 112 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class. - remarks: The callBacks parameter is experimental and recommended left as the default value - example: [] - syntax: - content: public Disassembler(Triple triple, string cpu, string features, int tagType, IDisassemblerCallbacks? callBacks = null) - parameters: - - id: triple - type: Ubiquity.NET.Llvm.Triple - description: Triple for the instruction set to disassemble - - id: cpu - type: System.String - description: CPU string for the instruction set - - id: features - type: System.String - description: CPU features for disassembling the instruction set - - id: tagType - type: System.Int32 - description: TODO:Explain this... - - id: callBacks - type: Ubiquity.NET.Llvm.IDisassemblerCallbacks - description: 'Optional callbacks [Default: null]' - content.vb: Public Sub New(triple As Triple, cpu As String, features As String, tagType As Integer, callBacks As IDisassemblerCallbacks = Nothing) - overload: Ubiquity.NET.Llvm.Disassembler.#ctor* - nameWithType.vb: Disassembler.New(Triple, String, String, Integer, IDisassemblerCallbacks) - fullName.vb: Ubiquity.NET.Llvm.Disassembler.New(Ubiquity.NET.Llvm.Triple, String, String, Integer, Ubiquity.NET.Llvm.IDisassemblerCallbacks) - name.vb: New(Triple, String, String, Integer, IDisassemblerCallbacks) -- uid: Ubiquity.NET.Llvm.Disassembler.SetOptions(Ubiquity.NET.Llvm.DisassemblerOptions) - commentId: M:Ubiquity.NET.Llvm.Disassembler.SetOptions(Ubiquity.NET.Llvm.DisassemblerOptions) - id: SetOptions(Ubiquity.NET.Llvm.DisassemblerOptions) - parent: Ubiquity.NET.Llvm.Disassembler - langs: - - csharp - - vb - name: SetOptions(DisassemblerOptions) - nameWithType: Disassembler.SetOptions(DisassemblerOptions) - fullName: Ubiquity.NET.Llvm.Disassembler.SetOptions(Ubiquity.NET.Llvm.DisassemblerOptions) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetOptions - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 142 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Set the options for the disassembly - example: [] - syntax: - content: public bool SetOptions(DisassemblerOptions options) - parameters: - - id: options - type: Ubiquity.NET.Llvm.DisassemblerOptions - description: Options - return: - type: System.Boolean - description: true if the options are all supported - content.vb: Public Function SetOptions(options As DisassemblerOptions) As Boolean - overload: Ubiquity.NET.Llvm.Disassembler.SetOptions* -- uid: Ubiquity.NET.Llvm.Disassembler.Disassemble(System.ReadOnlySpan{System.Byte},System.UInt64,System.Int32) - commentId: M:Ubiquity.NET.Llvm.Disassembler.Disassemble(System.ReadOnlySpan{System.Byte},System.UInt64,System.Int32) - id: Disassemble(System.ReadOnlySpan{System.Byte},System.UInt64,System.Int32) - parent: Ubiquity.NET.Llvm.Disassembler - langs: - - csharp - - vb - name: Disassemble(ReadOnlySpan, ulong, int) - nameWithType: Disassembler.Disassemble(ReadOnlySpan, ulong, int) - fullName: Ubiquity.NET.Llvm.Disassembler.Disassemble(System.ReadOnlySpan, ulong, int) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Disassemble - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 152 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Disassembles an instruction - example: [] - syntax: - content: public (string Disassembly, int InstructionByteCount) Disassemble(ReadOnlySpan instruction, ulong pc, int stringBufferSize = 1024) - parameters: - - id: instruction - type: System.ReadOnlySpan{System.Byte} - description: Start of instruction stream - - id: pc - type: System.UInt64 - description: Program counter address to assume for the instruction disassembly - - id: stringBufferSize - type: System.Int32 - description: Size of string buffer to use for the disassembly (default=1024) - return: - type: System.ValueTuple{System.String,System.Int32} - description: Disassembly string and count of bytes in the instruction as a tuple - content.vb: Public Function Disassemble(instruction As ReadOnlySpan(Of Byte), pc As ULong, stringBufferSize As Integer = 1024) As (Disassembly As String, InstructionByteCount As Integer) - overload: Ubiquity.NET.Llvm.Disassembler.Disassemble* - nameWithType.vb: Disassembler.Disassemble(ReadOnlySpan(Of Byte), ULong, Integer) - fullName.vb: Ubiquity.NET.Llvm.Disassembler.Disassemble(System.ReadOnlySpan(Of Byte), ULong, Integer) - name.vb: Disassemble(ReadOnlySpan(Of Byte), ULong, Integer) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Disassembler.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.Disassembler.Dispose - href: Ubiquity.NET.Llvm.Disassembler.html#Ubiquity_NET_Llvm_Disassembler_Dispose - name: Dispose - nameWithType: Disassembler.Dispose - fullName: Ubiquity.NET.Llvm.Disassembler.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Disassembler - commentId: T:Ubiquity.NET.Llvm.Disassembler - href: Ubiquity.NET.Llvm.Disassembler.html - name: Disassembler - nameWithType: Disassembler - fullName: Ubiquity.NET.Llvm.Disassembler -- uid: Ubiquity.NET.Llvm.Disassembler.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.Disassembler.#ctor - href: Ubiquity.NET.Llvm.Disassembler.html#Ubiquity_NET_Llvm_Disassembler__ctor_Ubiquity_NET_Llvm_Triple_System_Int32_Ubiquity_NET_Llvm_IDisassemblerCallbacks_ - name: Disassembler - nameWithType: Disassembler.Disassembler - fullName: Ubiquity.NET.Llvm.Disassembler.Disassembler - nameWithType.vb: Disassembler.New - fullName.vb: Ubiquity.NET.Llvm.Disassembler.New - name.vb: New -- uid: Ubiquity.NET.Llvm.Triple - commentId: T:Ubiquity.NET.Llvm.Triple - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Triple.html - name: Triple - nameWithType: Triple - fullName: Ubiquity.NET.Llvm.Triple -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks - commentId: T:Ubiquity.NET.Llvm.IDisassemblerCallbacks - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html - name: IDisassemblerCallbacks - nameWithType: IDisassemblerCallbacks - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Disassembler.SetOptions* - commentId: Overload:Ubiquity.NET.Llvm.Disassembler.SetOptions - href: Ubiquity.NET.Llvm.Disassembler.html#Ubiquity_NET_Llvm_Disassembler_SetOptions_Ubiquity_NET_Llvm_DisassemblerOptions_ - name: SetOptions - nameWithType: Disassembler.SetOptions - fullName: Ubiquity.NET.Llvm.Disassembler.SetOptions -- uid: Ubiquity.NET.Llvm.DisassemblerOptions - commentId: T:Ubiquity.NET.Llvm.DisassemblerOptions - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisassemblerOptions.html - name: DisassemblerOptions - nameWithType: DisassemblerOptions - fullName: Ubiquity.NET.Llvm.DisassemblerOptions -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Disassembler.Disassemble* - commentId: Overload:Ubiquity.NET.Llvm.Disassembler.Disassemble - href: Ubiquity.NET.Llvm.Disassembler.html#Ubiquity_NET_Llvm_Disassembler_Disassemble_System_ReadOnlySpan_System_Byte__System_UInt64_System_Int32_ - name: Disassemble - nameWithType: Disassembler.Disassemble - fullName: Ubiquity.NET.Llvm.Disassembler.Disassemble -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: System.ValueTuple{System.String,System.Int32} - commentId: T:System.ValueTuple{System.String,System.Int32} - parent: System - definition: System.ValueTuple`2 - href: https://learn.microsoft.com/dotnet/api/system.string - name: (string Disassembly, int InstructionByteCount) - nameWithType: (string Disassembly, int InstructionByteCount) - fullName: (string Disassembly, int InstructionByteCount) - nameWithType.vb: (Disassembly As String, InstructionByteCount As Integer) - fullName.vb: (Disassembly As String, InstructionByteCount As Integer) - name.vb: (Disassembly As String, InstructionByteCount As Integer) - spec.csharp: - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: " " - - uid: System.ValueTuple{System.String,System.Int32}.Disassembly - name: Disassembly - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.int32-.disassembly - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: " " - - uid: System.ValueTuple{System.String,System.Int32}.InstructionByteCount - name: InstructionByteCount - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.int32-.instructionbytecount - - name: ) - spec.vb: - - name: ( - - uid: System.ValueTuple{System.String,System.Int32}.Disassembly - name: Disassembly - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.int32-.disassembly - - name: " " - - name: As - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.ValueTuple{System.String,System.Int32}.InstructionByteCount - name: InstructionByteCount - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-system.string,system.int32-.instructionbytecount - - name: " " - - name: As - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.ValueTuple`2 - commentId: T:System.ValueTuple`2 - name: (T1, T2) - nameWithType: (T1, T2) - fullName: (T1, T2) - spec.csharp: - - name: ( - - name: T1 - - name: ',' - - name: " " - - name: T2 - - name: ) - spec.vb: - - name: ( - - name: T1 - - name: ',' - - name: " " - - name: T2 - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DisassemblerOptions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DisassemblerOptions.yml deleted file mode 100644 index 4ea75c0d14..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DisassemblerOptions.yml +++ /dev/null @@ -1,281 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DisassemblerOptions - commentId: T:Ubiquity.NET.Llvm.DisassemblerOptions - id: DisassemblerOptions - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.DisassemblerOptions.AsmPrinterVariant - - Ubiquity.NET.Llvm.DisassemblerOptions.Color - - Ubiquity.NET.Llvm.DisassemblerOptions.ImmediateAsHex - - Ubiquity.NET.Llvm.DisassemblerOptions.InstructionComments - - Ubiquity.NET.Llvm.DisassemblerOptions.None - - Ubiquity.NET.Llvm.DisassemblerOptions.PrintLatency - - Ubiquity.NET.Llvm.DisassemblerOptions.UseMarkup - langs: - - csharp - - vb - name: DisassemblerOptions - nameWithType: DisassemblerOptions - fullName: Ubiquity.NET.Llvm.DisassemblerOptions - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DisassemblerOptions - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Options flags for the disassembler - example: [] - syntax: - content: >- - [Flags] - - public enum DisassemblerOptions - content.vb: >- - - - Public Enum DisassemblerOptions - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: Ubiquity.NET.Llvm.DisassemblerOptions.None - commentId: F:Ubiquity.NET.Llvm.DisassemblerOptions.None - id: None - parent: Ubiquity.NET.Llvm.DisassemblerOptions - langs: - - csharp - - vb - name: None - nameWithType: DisassemblerOptions.None - fullName: Ubiquity.NET.Llvm.DisassemblerOptions.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: No options - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.DisassemblerOptions -- uid: Ubiquity.NET.Llvm.DisassemblerOptions.UseMarkup - commentId: F:Ubiquity.NET.Llvm.DisassemblerOptions.UseMarkup - id: UseMarkup - parent: Ubiquity.NET.Llvm.DisassemblerOptions - langs: - - csharp - - vb - name: UseMarkup - nameWithType: DisassemblerOptions.UseMarkup - fullName: Ubiquity.NET.Llvm.DisassemblerOptions.UseMarkup - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UseMarkup - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Produce marked up assembly - example: [] - syntax: - content: UseMarkup = 1 - return: - type: Ubiquity.NET.Llvm.DisassemblerOptions -- uid: Ubiquity.NET.Llvm.DisassemblerOptions.ImmediateAsHex - commentId: F:Ubiquity.NET.Llvm.DisassemblerOptions.ImmediateAsHex - id: ImmediateAsHex - parent: Ubiquity.NET.Llvm.DisassemblerOptions - langs: - - csharp - - vb - name: ImmediateAsHex - nameWithType: DisassemblerOptions.ImmediateAsHex - fullName: Ubiquity.NET.Llvm.DisassemblerOptions.ImmediateAsHex - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImmediateAsHex - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Print immediate as HEX - example: [] - syntax: - content: ImmediateAsHex = 2 - return: - type: Ubiquity.NET.Llvm.DisassemblerOptions -- uid: Ubiquity.NET.Llvm.DisassemblerOptions.AsmPrinterVariant - commentId: F:Ubiquity.NET.Llvm.DisassemblerOptions.AsmPrinterVariant - id: AsmPrinterVariant - parent: Ubiquity.NET.Llvm.DisassemblerOptions - langs: - - csharp - - vb - name: AsmPrinterVariant - nameWithType: DisassemblerOptions.AsmPrinterVariant - fullName: Ubiquity.NET.Llvm.DisassemblerOptions.AsmPrinterVariant - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AsmPrinterVariant - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Use the alternate assembly printer variant - example: [] - syntax: - content: AsmPrinterVariant = 4 - return: - type: Ubiquity.NET.Llvm.DisassemblerOptions -- uid: Ubiquity.NET.Llvm.DisassemblerOptions.InstructionComments - commentId: F:Ubiquity.NET.Llvm.DisassemblerOptions.InstructionComments - id: InstructionComments - parent: Ubiquity.NET.Llvm.DisassemblerOptions - langs: - - csharp - - vb - name: InstructionComments - nameWithType: DisassemblerOptions.InstructionComments - fullName: Ubiquity.NET.Llvm.DisassemblerOptions.InstructionComments - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InstructionComments - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Set comments on instructions - example: [] - syntax: - content: InstructionComments = 8 - return: - type: Ubiquity.NET.Llvm.DisassemblerOptions -- uid: Ubiquity.NET.Llvm.DisassemblerOptions.PrintLatency - commentId: F:Ubiquity.NET.Llvm.DisassemblerOptions.PrintLatency - id: PrintLatency - parent: Ubiquity.NET.Llvm.DisassemblerOptions - langs: - - csharp - - vb - name: PrintLatency - nameWithType: DisassemblerOptions.PrintLatency - fullName: Ubiquity.NET.Llvm.DisassemblerOptions.PrintLatency - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PrintLatency - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Print latency information alongside instructions - example: [] - syntax: - content: PrintLatency = 16 - return: - type: Ubiquity.NET.Llvm.DisassemblerOptions -- uid: Ubiquity.NET.Llvm.DisassemblerOptions.Color - commentId: F:Ubiquity.NET.Llvm.DisassemblerOptions.Color - id: Color - parent: Ubiquity.NET.Llvm.DisassemblerOptions - langs: - - csharp - - vb - name: Color - nameWithType: DisassemblerOptions.Color - fullName: Ubiquity.NET.Llvm.DisassemblerOptions.Color - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Color - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Print in color - example: [] - syntax: - content: Color = 32 - return: - type: Ubiquity.NET.Llvm.DisassemblerOptions -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.DisassemblerOptions - commentId: T:Ubiquity.NET.Llvm.DisassemblerOptions - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisassemblerOptions.html - name: DisassemblerOptions - nameWithType: DisassemblerOptions - fullName: Ubiquity.NET.Llvm.DisassemblerOptions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.DisposableObject.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.DisposableObject.yml deleted file mode 100644 index 6081805ece..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.DisposableObject.yml +++ /dev/null @@ -1,569 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.DisposableObject - commentId: T:Ubiquity.NET.Llvm.DisposableObject - id: DisposableObject - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.DisposableObject.Dispose - - Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - - Ubiquity.NET.Llvm.DisposableObject.Finalize - - Ubiquity.NET.Llvm.DisposableObject.IsDisposed - langs: - - csharp - - vb - name: DisposableObject - nameWithType: DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/DisposableObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DisposableObject - path: ../src/Ubiquity.NET.Llvm/DisposableObject.cs - startLine: 7 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Abstract base class for implementing the Disposable pattern - example: [] - syntax: - content: 'public abstract class DisposableObject : IDisposable' - content.vb: Public MustInherit Class DisposableObject Implements IDisposable - inheritance: - - System.Object - derivedClasses: - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.DisposableObject.Finalize - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Finalize - id: Finalize - parent: Ubiquity.NET.Llvm.DisposableObject - langs: - - csharp - - vb - name: ~DisposableObject() - nameWithType: DisposableObject.~DisposableObject() - fullName: Ubiquity.NET.Llvm.DisposableObject.~DisposableObject() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DisposableObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Finalize - path: ../src/Ubiquity.NET.Llvm/DisposableObject.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Finalizes an instance of the class. This releases any unmanaged resources it owns - example: [] - syntax: - content: protected ~DisposableObject() - content.vb: 'Protected ' - overload: Ubiquity.NET.Llvm.DisposableObject.Finalize* - nameWithType.vb: '' - fullName.vb: '' - name.vb: '' -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.DisposableObject - langs: - - csharp - - vb - name: Dispose() - nameWithType: DisposableObject.Dispose() - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DisposableObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/DisposableObject.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - remarks: >- - This implementation guarantees that Dispose is an idempotent call and does NOT trigger any exceptions. That is, - - if already disposed, derived types will never see a call to as this will silently - - treat it as a NOP. Additionally, this follows the standard pattern such that finalization is suppressed when - - disposing. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.DisposableObject.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.DisposableObject.IsDisposed - commentId: P:Ubiquity.NET.Llvm.DisposableObject.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.DisposableObject - langs: - - csharp - - vb - name: IsDisposed - nameWithType: DisposableObject.IsDisposed - fullName: Ubiquity.NET.Llvm.DisposableObject.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/DisposableObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/DisposableObject.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether the object is disposed or not - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.DisposableObject.IsDisposed* -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - id: Dispose(System.Boolean) - parent: Ubiquity.NET.Llvm.DisposableObject - langs: - - csharp - - vb - name: Dispose(bool) - nameWithType: DisposableObject.Dispose(bool) - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose(bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DisposableObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/DisposableObject.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Abstract method that is implemented by derived types to perform the dispose operation - remarks: >- - This is guaranteed to only be called if returns false - - so the implementation should only be concerned with the actual release of resources. If disposing - - is true then the implementation should release managed and unmanaged resources, otherwise it should - - only release the unmanaged resources - example: [] - syntax: - content: protected virtual void Dispose(bool disposing) - parameters: - - id: disposing - type: System.Boolean - description: Indicates if this is a dispose or finalize operation - content.vb: Protected Overridable Sub Dispose(disposing As Boolean) - overload: Ubiquity.NET.Llvm.DisposableObject.Dispose* - nameWithType.vb: DisposableObject.Dispose(Boolean) - fullName.vb: Ubiquity.NET.Llvm.DisposableObject.Dispose(Boolean) - name.vb: Dispose(Boolean) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.DisposableObject - commentId: T:Ubiquity.NET.Llvm.DisposableObject - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisposableObject.html - name: DisposableObject - nameWithType: DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject -- uid: Ubiquity.NET.Llvm.DisposableObject.Finalize* - commentId: Overload:Ubiquity.NET.Llvm.DisposableObject.Finalize - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Finalize - name: ~DisposableObject - nameWithType: DisposableObject.~DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject.~DisposableObject - spec.csharp: - - name: "~" - - uid: Ubiquity.NET.Llvm.DisposableObject.Finalize* - name: DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Finalize -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - parent: Ubiquity.NET.Llvm.DisposableObject - isExternal: true - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - name: Dispose(bool) - nameWithType: DisposableObject.Dispose(bool) - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose(bool) - nameWithType.vb: DisposableObject.Dispose(Boolean) - fullName.vb: Ubiquity.NET.Llvm.DisposableObject.Dispose(Boolean) - name.vb: Dispose(Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.DisposableObject.Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - name: Dispose - nameWithType: DisposableObject.Dispose - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.DisposableObject.IsDisposed - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_IsDisposed - name: IsDisposed - nameWithType: DisposableObject.IsDisposed - fullName: Ubiquity.NET.Llvm.DisposableObject.IsDisposed -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.DisposableObject.IsDisposed - commentId: P:Ubiquity.NET.Llvm.DisposableObject.IsDisposed - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_IsDisposed - name: IsDisposed - nameWithType: DisposableObject.IsDisposed - fullName: Ubiquity.NET.Llvm.DisposableObject.IsDisposed diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.EnvironmentKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.EnvironmentKind.yml deleted file mode 100644 index 3a62d0302b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.EnvironmentKind.yml +++ /dev/null @@ -1,1420 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.EnvironmentKind - commentId: T:Ubiquity.NET.Llvm.EnvironmentKind - id: EnvironmentKind - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.EnvironmentKind.Amplification - - Ubiquity.NET.Llvm.EnvironmentKind.Android - - Ubiquity.NET.Llvm.EnvironmentKind.AnyHit - - Ubiquity.NET.Llvm.EnvironmentKind.CODE16 - - Ubiquity.NET.Llvm.EnvironmentKind.Callable - - Ubiquity.NET.Llvm.EnvironmentKind.ClosestHit - - Ubiquity.NET.Llvm.EnvironmentKind.Compute - - Ubiquity.NET.Llvm.EnvironmentKind.CoreCLR - - Ubiquity.NET.Llvm.EnvironmentKind.Cygnus - - Ubiquity.NET.Llvm.EnvironmentKind.Domain - - Ubiquity.NET.Llvm.EnvironmentKind.EABI - - Ubiquity.NET.Llvm.EnvironmentKind.EABIHF - - Ubiquity.NET.Llvm.EnvironmentKind.GNU - - Ubiquity.NET.Llvm.EnvironmentKind.GNUABI64 - - Ubiquity.NET.Llvm.EnvironmentKind.GNUABIN32 - - Ubiquity.NET.Llvm.EnvironmentKind.GNUEABI - - Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHF - - Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHFT64 - - Ubiquity.NET.Llvm.EnvironmentKind.GNUF32 - - Ubiquity.NET.Llvm.EnvironmentKind.GNUF64 - - Ubiquity.NET.Llvm.EnvironmentKind.GNUILP32 - - Ubiquity.NET.Llvm.EnvironmentKind.GNUSF - - Ubiquity.NET.Llvm.EnvironmentKind.GNUT64 - - Ubiquity.NET.Llvm.EnvironmentKind.GNUX32 - - Ubiquity.NET.Llvm.EnvironmentKind.Geometry - - Ubiquity.NET.Llvm.EnvironmentKind.Hull - - Ubiquity.NET.Llvm.EnvironmentKind.Intersection - - Ubiquity.NET.Llvm.EnvironmentKind.Itanium - - Ubiquity.NET.Llvm.EnvironmentKind.LLVM - - Ubiquity.NET.Llvm.EnvironmentKind.Library - - Ubiquity.NET.Llvm.EnvironmentKind.MSVC - - Ubiquity.NET.Llvm.EnvironmentKind.MacABI - - Ubiquity.NET.Llvm.EnvironmentKind.Mesh - - Ubiquity.NET.Llvm.EnvironmentKind.Miss - - Ubiquity.NET.Llvm.EnvironmentKind.Musl - - Ubiquity.NET.Llvm.EnvironmentKind.MuslABI64 - - Ubiquity.NET.Llvm.EnvironmentKind.MuslABIN32 - - Ubiquity.NET.Llvm.EnvironmentKind.MuslEABI - - Ubiquity.NET.Llvm.EnvironmentKind.MuslEABIHF - - Ubiquity.NET.Llvm.EnvironmentKind.MuslF32 - - Ubiquity.NET.Llvm.EnvironmentKind.MuslSF - - Ubiquity.NET.Llvm.EnvironmentKind.MuslX32 - - Ubiquity.NET.Llvm.EnvironmentKind.OpenCL - - Ubiquity.NET.Llvm.EnvironmentKind.OpenHOS - - Ubiquity.NET.Llvm.EnvironmentKind.PAuthTest - - Ubiquity.NET.Llvm.EnvironmentKind.Pixel - - Ubiquity.NET.Llvm.EnvironmentKind.RayGeneration - - Ubiquity.NET.Llvm.EnvironmentKind.Simulator - - Ubiquity.NET.Llvm.EnvironmentKind.Unknown - - Ubiquity.NET.Llvm.EnvironmentKind.Vertex - langs: - - csharp - - vb - name: EnvironmentKind - nameWithType: EnvironmentKind - fullName: Ubiquity.NET.Llvm.EnvironmentKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EnvironmentKind - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 528 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Triple EnvironmentKind type - example: [] - syntax: - content: public enum EnvironmentKind - content.vb: Public Enum EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Unknown - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Unknown - id: Unknown - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Unknown - nameWithType: EnvironmentKind.Unknown - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Unknown - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unknown - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 534 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Unknown environment - example: [] - syntax: - content: Unknown = 0 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNU - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNU - id: GNU - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNU - nameWithType: EnvironmentKind.GNU - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNU - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNU - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 535 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNU = 1 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUT64 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUT64 - id: GNUT64 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUT64 - nameWithType: EnvironmentKind.GNUT64 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUT64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUT64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 536 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUT64 = 2 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUABIN32 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUABIN32 - id: GNUABIN32 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUABIN32 - nameWithType: EnvironmentKind.GNUABIN32 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUABIN32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUABIN32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 537 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUABIN32 = 3 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUABI64 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUABI64 - id: GNUABI64 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUABI64 - nameWithType: EnvironmentKind.GNUABI64 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUABI64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUABI64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 538 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUABI64 = 4 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUEABI - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUEABI - id: GNUEABI - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUEABI - nameWithType: EnvironmentKind.GNUEABI - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUEABI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUEABI - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 539 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUEABI = 5 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHF - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHF - id: GNUEABIHF - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUEABIHF - nameWithType: EnvironmentKind.GNUEABIHF - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUEABIHF - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 540 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUEABIHF = 7 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHFT64 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHFT64 - id: GNUEABIHFT64 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUEABIHFT64 - nameWithType: EnvironmentKind.GNUEABIHFT64 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUEABIHFT64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUEABIHFT64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 541 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUEABIHFT64 = 8 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUF32 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUF32 - id: GNUF32 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUF32 - nameWithType: EnvironmentKind.GNUF32 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUF32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUF32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 542 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUF32 = 9 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUF64 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUF64 - id: GNUF64 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUF64 - nameWithType: EnvironmentKind.GNUF64 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUF64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUF64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 543 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUF64 = 9 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUSF - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUSF - id: GNUSF - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUSF - nameWithType: EnvironmentKind.GNUSF - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUSF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUSF - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 544 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUSF = 11 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUX32 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUX32 - id: GNUX32 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUX32 - nameWithType: EnvironmentKind.GNUX32 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUX32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUX32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 545 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUX32 = 12 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.GNUILP32 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.GNUILP32 - id: GNUILP32 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: GNUILP32 - nameWithType: EnvironmentKind.GNUILP32 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.GNUILP32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GNUILP32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 546 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: GNUILP32 = 13 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.CODE16 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.CODE16 - id: CODE16 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: CODE16 - nameWithType: EnvironmentKind.CODE16 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.CODE16 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CODE16 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 547 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: CODE16 = 14 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.EABI - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.EABI - id: EABI - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: EABI - nameWithType: EnvironmentKind.EABI - fullName: Ubiquity.NET.Llvm.EnvironmentKind.EABI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EABI - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 548 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: EABI = 15 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.EABIHF - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.EABIHF - id: EABIHF - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: EABIHF - nameWithType: EnvironmentKind.EABIHF - fullName: Ubiquity.NET.Llvm.EnvironmentKind.EABIHF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EABIHF - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 549 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: EABIHF = 16 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Android - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Android - id: Android - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Android - nameWithType: EnvironmentKind.Android - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Android - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Android - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 550 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Android = 17 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Musl - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Musl - id: Musl - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Musl - nameWithType: EnvironmentKind.Musl - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Musl - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Musl - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 551 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Musl = 18 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MuslABIN32 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MuslABIN32 - id: MuslABIN32 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MuslABIN32 - nameWithType: EnvironmentKind.MuslABIN32 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MuslABIN32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MuslABIN32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 552 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MuslABIN32 = 19 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MuslABI64 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MuslABI64 - id: MuslABI64 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MuslABI64 - nameWithType: EnvironmentKind.MuslABI64 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MuslABI64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MuslABI64 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 553 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MuslABI64 = 20 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MuslEABI - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MuslEABI - id: MuslEABI - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MuslEABI - nameWithType: EnvironmentKind.MuslEABI - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MuslEABI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MuslEABI - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 554 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MuslEABI = 21 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MuslEABIHF - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MuslEABIHF - id: MuslEABIHF - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MuslEABIHF - nameWithType: EnvironmentKind.MuslEABIHF - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MuslEABIHF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MuslEABIHF - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 555 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MuslEABIHF = 22 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MuslF32 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MuslF32 - id: MuslF32 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MuslF32 - nameWithType: EnvironmentKind.MuslF32 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MuslF32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MuslF32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 556 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MuslF32 = 23 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MuslSF - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MuslSF - id: MuslSF - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MuslSF - nameWithType: EnvironmentKind.MuslSF - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MuslSF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MuslSF - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 557 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MuslSF = 23 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MuslX32 - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MuslX32 - id: MuslX32 - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MuslX32 - nameWithType: EnvironmentKind.MuslX32 - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MuslX32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MuslX32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 558 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MuslX32 = 25 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.LLVM - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.LLVM - id: LLVM - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: LLVM - nameWithType: EnvironmentKind.LLVM - fullName: Ubiquity.NET.Llvm.EnvironmentKind.LLVM - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LLVM - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 559 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: LLVM = 26 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MSVC - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MSVC - id: MSVC - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MSVC - nameWithType: EnvironmentKind.MSVC - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MSVC - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MSVC - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 560 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MSVC = 27 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Itanium - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Itanium - id: Itanium - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Itanium - nameWithType: EnvironmentKind.Itanium - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Itanium - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Itanium - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 561 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Itanium = 28 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Cygnus - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Cygnus - id: Cygnus - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Cygnus - nameWithType: EnvironmentKind.Cygnus - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Cygnus - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cygnus - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 562 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Cygnus = 29 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.CoreCLR - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.CoreCLR - id: CoreCLR - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: CoreCLR - nameWithType: EnvironmentKind.CoreCLR - fullName: Ubiquity.NET.Llvm.EnvironmentKind.CoreCLR - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CoreCLR - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 563 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: CoreCLR = 30 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Simulator - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Simulator - id: Simulator - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Simulator - nameWithType: EnvironmentKind.Simulator - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Simulator - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Simulator - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 564 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Simulator = 31 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.MacABI - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.MacABI - id: MacABI - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: MacABI - nameWithType: EnvironmentKind.MacABI - fullName: Ubiquity.NET.Llvm.EnvironmentKind.MacABI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MacABI - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 565 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MacABI = 32 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Pixel - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Pixel - id: Pixel - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Pixel - nameWithType: EnvironmentKind.Pixel - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Pixel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Pixel - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 566 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Pixel = 33 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Vertex - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Vertex - id: Vertex - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Vertex - nameWithType: EnvironmentKind.Vertex - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Vertex - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Vertex - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 567 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Vertex = 34 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Geometry - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Geometry - id: Geometry - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Geometry - nameWithType: EnvironmentKind.Geometry - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Geometry - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Geometry - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 568 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Geometry = 35 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Hull - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Hull - id: Hull - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Hull - nameWithType: EnvironmentKind.Hull - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Hull - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Hull - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 569 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Hull = 36 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Domain - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Domain - id: Domain - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Domain - nameWithType: EnvironmentKind.Domain - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Domain - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Domain - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 570 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Domain = 37 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Compute - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Compute - id: Compute - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Compute - nameWithType: EnvironmentKind.Compute - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Compute - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Compute - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 571 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Compute = 38 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Library - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Library - id: Library - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Library - nameWithType: EnvironmentKind.Library - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Library - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Library - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 572 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Library = 39 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.RayGeneration - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.RayGeneration - id: RayGeneration - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: RayGeneration - nameWithType: EnvironmentKind.RayGeneration - fullName: Ubiquity.NET.Llvm.EnvironmentKind.RayGeneration - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RayGeneration - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 573 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: RayGeneration = 40 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Intersection - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Intersection - id: Intersection - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Intersection - nameWithType: EnvironmentKind.Intersection - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Intersection - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Intersection - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 574 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Intersection = 41 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.AnyHit - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.AnyHit - id: AnyHit - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: AnyHit - nameWithType: EnvironmentKind.AnyHit - fullName: Ubiquity.NET.Llvm.EnvironmentKind.AnyHit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AnyHit - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 575 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: AnyHit = 42 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.ClosestHit - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.ClosestHit - id: ClosestHit - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: ClosestHit - nameWithType: EnvironmentKind.ClosestHit - fullName: Ubiquity.NET.Llvm.EnvironmentKind.ClosestHit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ClosestHit - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 576 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: ClosestHit = 43 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Miss - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Miss - id: Miss - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Miss - nameWithType: EnvironmentKind.Miss - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Miss - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Miss - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 577 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Miss = 44 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Callable - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Callable - id: Callable - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Callable - nameWithType: EnvironmentKind.Callable - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Callable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Callable - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 578 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Callable = 45 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Mesh - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Mesh - id: Mesh - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Mesh - nameWithType: EnvironmentKind.Mesh - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Mesh - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Mesh - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 579 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Mesh = 46 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.Amplification - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.Amplification - id: Amplification - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: Amplification - nameWithType: EnvironmentKind.Amplification - fullName: Ubiquity.NET.Llvm.EnvironmentKind.Amplification - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Amplification - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 580 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Amplification = 47 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.OpenCL - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.OpenCL - id: OpenCL - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: OpenCL - nameWithType: EnvironmentKind.OpenCL - fullName: Ubiquity.NET.Llvm.EnvironmentKind.OpenCL - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpenCL - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 581 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: OpenCL = 48 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.OpenHOS - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.OpenHOS - id: OpenHOS - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: OpenHOS - nameWithType: EnvironmentKind.OpenHOS - fullName: Ubiquity.NET.Llvm.EnvironmentKind.OpenHOS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpenHOS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 582 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: OpenHOS = 49 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind.PAuthTest - commentId: F:Ubiquity.NET.Llvm.EnvironmentKind.PAuthTest - id: PAuthTest - parent: Ubiquity.NET.Llvm.EnvironmentKind - langs: - - csharp - - vb - name: PAuthTest - nameWithType: EnvironmentKind.PAuthTest - fullName: Ubiquity.NET.Llvm.EnvironmentKind.PAuthTest - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PAuthTest - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 583 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: PAuthTest = 50 - return: - type: Ubiquity.NET.Llvm.EnvironmentKind -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.EnvironmentKind - commentId: T:Ubiquity.NET.Llvm.EnvironmentKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.EnvironmentKind.html - name: EnvironmentKind - nameWithType: EnvironmentKind - fullName: Ubiquity.NET.Llvm.EnvironmentKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ErrorInfo.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ErrorInfo.yml deleted file mode 100644 index 720c783dcf..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ErrorInfo.yml +++ /dev/null @@ -1,672 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - id: ErrorInfo - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ErrorInfo.Create(System.Exception) - - Ubiquity.NET.Llvm.ErrorInfo.Create(System.String) - - Ubiquity.NET.Llvm.ErrorInfo.Dispose - - Ubiquity.NET.Llvm.ErrorInfo.Failed - - Ubiquity.NET.Llvm.ErrorInfo.IsDisposed - - Ubiquity.NET.Llvm.ErrorInfo.Success - - Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed - - Ubiquity.NET.Llvm.ErrorInfo.ToString - langs: - - csharp - - vb - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ErrorInfo - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Represents the success or failure of an operation with "try" semantics - remarks: >- - In addition to the and states this also tracks - - any error messages in the event of a failure. - example: [] - syntax: - content: public readonly ref struct ErrorInfo - content.vb: Public Structure ErrorInfo - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.ErrorInfo.Success - commentId: P:Ubiquity.NET.Llvm.ErrorInfo.Success - id: Success - parent: Ubiquity.NET.Llvm.ErrorInfo - langs: - - csharp - - vb - name: Success - nameWithType: ErrorInfo.Success - fullName: Ubiquity.NET.Llvm.ErrorInfo.Success - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Success - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this instance represents success - example: [] - syntax: - content: public bool Success { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property Success As Boolean - overload: Ubiquity.NET.Llvm.ErrorInfo.Success* -- uid: Ubiquity.NET.Llvm.ErrorInfo.Failed - commentId: P:Ubiquity.NET.Llvm.ErrorInfo.Failed - id: Failed - parent: Ubiquity.NET.Llvm.ErrorInfo - langs: - - csharp - - vb - name: Failed - nameWithType: ErrorInfo.Failed - fullName: Ubiquity.NET.Llvm.ErrorInfo.Failed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Failed - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this instance represents a failure - example: [] - syntax: - content: public bool Failed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property Failed As Boolean - overload: Ubiquity.NET.Llvm.ErrorInfo.Failed* -- uid: Ubiquity.NET.Llvm.ErrorInfo.IsDisposed - commentId: P:Ubiquity.NET.Llvm.ErrorInfo.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.ErrorInfo - langs: - - csharp - - vb - name: IsDisposed - nameWithType: ErrorInfo.IsDisposed - fullName: Ubiquity.NET.Llvm.ErrorInfo.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this instance is disposed - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.ErrorInfo.IsDisposed* -- uid: Ubiquity.NET.Llvm.ErrorInfo.ToString - commentId: M:Ubiquity.NET.Llvm.ErrorInfo.ToString - id: ToString - parent: Ubiquity.NET.Llvm.ErrorInfo - langs: - - csharp - - vb - name: ToString() - nameWithType: ErrorInfo.ToString() - fullName: Ubiquity.NET.Llvm.ErrorInfo.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Returns the fully qualified type name of this instance. - example: [] - syntax: - content: public override string ToString() - return: - type: System.String - description: The fully qualified type name. - content.vb: Public Overrides Function ToString() As String - overridden: System.ValueType.ToString - overload: Ubiquity.NET.Llvm.ErrorInfo.ToString* -- uid: Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed - commentId: M:Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed - id: ThrowIfFailed - parent: Ubiquity.NET.Llvm.ErrorInfo - langs: - - csharp - - vb - name: ThrowIfFailed() - nameWithType: ErrorInfo.ThrowIfFailed() - fullName: Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ThrowIfFailed - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Throws an exception if this instance is a failure result ( is true) - remarks: The is set to the text of this error result. - example: [] - syntax: - content: public void ThrowIfFailed() - content.vb: Public Sub ThrowIfFailed() - overload: Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed* - exceptions: - - type: Ubiquity.NET.Llvm.InternalCodeGeneratorException - commentId: T:Ubiquity.NET.Llvm.InternalCodeGeneratorException - description: is true -- uid: Ubiquity.NET.Llvm.ErrorInfo.Dispose - commentId: M:Ubiquity.NET.Llvm.ErrorInfo.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.ErrorInfo - langs: - - csharp - - vb - name: Dispose() - nameWithType: ErrorInfo.Dispose() - fullName: Ubiquity.NET.Llvm.ErrorInfo.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Releases the underlying LLVM handle - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.ErrorInfo.Dispose* -- uid: Ubiquity.NET.Llvm.ErrorInfo.Create(System.String) - commentId: M:Ubiquity.NET.Llvm.ErrorInfo.Create(System.String) - id: Create(System.String) - parent: Ubiquity.NET.Llvm.ErrorInfo - langs: - - csharp - - vb - name: Create(string) - nameWithType: ErrorInfo.Create(string) - fullName: Ubiquity.NET.Llvm.ErrorInfo.Create(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Create - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Factory function to create a new from a string - example: [] - syntax: - content: public static ErrorInfo Create(string msg) - parameters: - - id: msg - type: System.String - description: message for the error - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Newly constructed with the provided message - content.vb: Public Shared Function Create(msg As String) As ErrorInfo - overload: Ubiquity.NET.Llvm.ErrorInfo.Create* - nameWithType.vb: ErrorInfo.Create(String) - fullName.vb: Ubiquity.NET.Llvm.ErrorInfo.Create(String) - name.vb: Create(String) -- uid: Ubiquity.NET.Llvm.ErrorInfo.Create(System.Exception) - commentId: M:Ubiquity.NET.Llvm.ErrorInfo.Create(System.Exception) - id: Create(System.Exception) - parent: Ubiquity.NET.Llvm.ErrorInfo - langs: - - csharp - - vb - name: Create(Exception) - nameWithType: ErrorInfo.Create(Exception) - fullName: Ubiquity.NET.Llvm.ErrorInfo.Create(System.Exception) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ErrorInfo.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Create - path: ../src/Ubiquity.NET.Llvm/ErrorInfo.cs - startLine: 80 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Factory function to create a new from an exception - remarks: >- -
important

- - It is important to note that this will convert a null for ex into - - a failed result with an empty string. This is to prevent exception within a catch handler. This - - condition is asserted in a debug build so that any attempts to provide a null value are caught and - - fixed. - -

- example: [] - syntax: - content: public static ErrorInfo Create(Exception ex) - parameters: - - id: ex - type: System.Exception - description: Exception to create an instance from - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Newly constructed with the message from ex - content.vb: Public Shared Function Create(ex As Exception) As ErrorInfo - overload: Ubiquity.NET.Llvm.ErrorInfo.Create* -references: -- uid: Ubiquity.NET.Llvm.ErrorInfo.Success - commentId: P:Ubiquity.NET.Llvm.ErrorInfo.Success - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_Success - name: Success - nameWithType: ErrorInfo.Success - fullName: Ubiquity.NET.Llvm.ErrorInfo.Success -- uid: Ubiquity.NET.Llvm.ErrorInfo.Failed - commentId: P:Ubiquity.NET.Llvm.ErrorInfo.Failed - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_Failed - name: Failed - nameWithType: ErrorInfo.Failed - fullName: Ubiquity.NET.Llvm.ErrorInfo.Failed -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.ErrorInfo.Success* - commentId: Overload:Ubiquity.NET.Llvm.ErrorInfo.Success - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_Success - name: Success - nameWithType: ErrorInfo.Success - fullName: Ubiquity.NET.Llvm.ErrorInfo.Success -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.ErrorInfo.Failed* - commentId: Overload:Ubiquity.NET.Llvm.ErrorInfo.Failed - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_Failed - name: Failed - nameWithType: ErrorInfo.Failed - fullName: Ubiquity.NET.Llvm.ErrorInfo.Failed -- uid: Ubiquity.NET.Llvm.ErrorInfo.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.ErrorInfo.IsDisposed - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_IsDisposed - name: IsDisposed - nameWithType: ErrorInfo.IsDisposed - fullName: Ubiquity.NET.Llvm.ErrorInfo.IsDisposed -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.ErrorInfo.ToString* - commentId: Overload:Ubiquity.NET.Llvm.ErrorInfo.ToString - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_ToString - name: ToString - nameWithType: ErrorInfo.ToString - fullName: Ubiquity.NET.Llvm.ErrorInfo.ToString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.Exception.Message - commentId: P:System.Exception.Message - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.message - name: Message - nameWithType: Exception.Message - fullName: System.Exception.Message -- uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException - commentId: T:Ubiquity.NET.Llvm.InternalCodeGeneratorException - href: Ubiquity.NET.Llvm.InternalCodeGeneratorException.html - name: InternalCodeGeneratorException - nameWithType: InternalCodeGeneratorException - fullName: Ubiquity.NET.Llvm.InternalCodeGeneratorException -- uid: Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed* - commentId: Overload:Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_ThrowIfFailed - name: ThrowIfFailed - nameWithType: ErrorInfo.ThrowIfFailed - fullName: Ubiquity.NET.Llvm.ErrorInfo.ThrowIfFailed -- uid: System.Exception - commentId: T:System.Exception - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception - name: Exception - nameWithType: Exception - fullName: System.Exception -- uid: Ubiquity.NET.Llvm.ErrorInfo.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.ErrorInfo.Dispose - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_Dispose - name: Dispose - nameWithType: ErrorInfo.Dispose - fullName: Ubiquity.NET.Llvm.ErrorInfo.Dispose -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ErrorInfo.html - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo -- uid: Ubiquity.NET.Llvm.ErrorInfo.Create* - commentId: Overload:Ubiquity.NET.Llvm.ErrorInfo.Create - href: Ubiquity.NET.Llvm.ErrorInfo.html#Ubiquity_NET_Llvm_ErrorInfo_Create_System_String_ - name: Create - nameWithType: ErrorInfo.Create - fullName: Ubiquity.NET.Llvm.ErrorInfo.Create diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.IContext.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.IContext.yml deleted file mode 100644 index 088130206f..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.IContext.yml +++ /dev/null @@ -1,3405 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - id: IContext - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.IContext.BoolType - - Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String) - - Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String) - - Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - - Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String) - - Ubiquity.NET.Llvm.IContext.CreateBitcodeModule - - Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - - Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64) - - Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - - Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String) - - Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - - Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - - Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - - Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - - Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String) - - Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String) - - Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - - Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.IContext.CreateStructType(System.String) - - Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.IContext.DiscardValueName - - Ubiquity.NET.Llvm.IContext.DoubleType - - Ubiquity.NET.Llvm.IContext.Float128Type - - Ubiquity.NET.Llvm.IContext.FloatType - - Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - - Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32) - - Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String) - - Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IContext.HalfFloatType - - Ubiquity.NET.Llvm.IContext.Int128Type - - Ubiquity.NET.Llvm.IContext.Int16Type - - Ubiquity.NET.Llvm.IContext.Int32Type - - Ubiquity.NET.Llvm.IContext.Int64Type - - Ubiquity.NET.Llvm.IContext.Int8Type - - Ubiquity.NET.Llvm.IContext.MetadataType - - Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes - - Ubiquity.NET.Llvm.IContext.OpenBinary(System.String) - - Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - - Ubiquity.NET.Llvm.IContext.PpcFloat128Type - - Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - - Ubiquity.NET.Llvm.IContext.TokenType - - Ubiquity.NET.Llvm.IContext.VoidType - - Ubiquity.NET.Llvm.IContext.X86Float80Type - langs: - - csharp - - vb - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IContext - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Interface for an unowned LLVM Context - remarks: >- - This interface is intended to distinguish between an unowned reference to - - a context and something that is owned and requires a call to - - . A is an owned - - type that callers ***MUST** dispose, an interface - - is not. - example: [] - syntax: - content: public interface IContext - content.vb: Public Interface IContext -- uid: Ubiquity.NET.Llvm.IContext.VoidType - commentId: P:Ubiquity.NET.Llvm.IContext.VoidType - id: VoidType - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: VoidType - nameWithType: IContext.VoidType - fullName: Ubiquity.NET.Llvm.IContext.VoidType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VoidType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM void type for this context - example: [] - syntax: - content: ITypeRef VoidType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property VoidType As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.VoidType* -- uid: Ubiquity.NET.Llvm.IContext.BoolType - commentId: P:Ubiquity.NET.Llvm.IContext.BoolType - id: BoolType - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: BoolType - nameWithType: IContext.BoolType - fullName: Ubiquity.NET.Llvm.IContext.BoolType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BoolType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM boolean type for this context - example: [] - syntax: - content: ITypeRef BoolType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property BoolType As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.BoolType* -- uid: Ubiquity.NET.Llvm.IContext.Int8Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int8Type - id: Int8Type - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: Int8Type - nameWithType: IContext.Int8Type - fullName: Ubiquity.NET.Llvm.IContext.Int8Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int8Type - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 8 bit integer type for this context - example: [] - syntax: - content: ITypeRef Int8Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property Int8Type As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.Int8Type* -- uid: Ubiquity.NET.Llvm.IContext.Int16Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int16Type - id: Int16Type - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: Int16Type - nameWithType: IContext.Int16Type - fullName: Ubiquity.NET.Llvm.IContext.Int16Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int16Type - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 16 bit integer type for this context - example: [] - syntax: - content: ITypeRef Int16Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property Int16Type As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.Int16Type* -- uid: Ubiquity.NET.Llvm.IContext.Int32Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int32Type - id: Int32Type - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: Int32Type - nameWithType: IContext.Int32Type - fullName: Ubiquity.NET.Llvm.IContext.Int32Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int32Type - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 32 bit integer type for this context - example: [] - syntax: - content: ITypeRef Int32Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property Int32Type As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.Int32Type* -- uid: Ubiquity.NET.Llvm.IContext.Int64Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int64Type - id: Int64Type - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: Int64Type - nameWithType: IContext.Int64Type - fullName: Ubiquity.NET.Llvm.IContext.Int64Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int64Type - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 64 bit integer type for this context - example: [] - syntax: - content: ITypeRef Int64Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property Int64Type As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.Int64Type* -- uid: Ubiquity.NET.Llvm.IContext.Int128Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int128Type - id: Int128Type - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: Int128Type - nameWithType: IContext.Int128Type - fullName: Ubiquity.NET.Llvm.IContext.Int128Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Int128Type - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 128 bit integer type for this context - example: [] - syntax: - content: ITypeRef Int128Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property Int128Type As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.Int128Type* -- uid: Ubiquity.NET.Llvm.IContext.HalfFloatType - commentId: P:Ubiquity.NET.Llvm.IContext.HalfFloatType - id: HalfFloatType - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: HalfFloatType - nameWithType: IContext.HalfFloatType - fullName: Ubiquity.NET.Llvm.IContext.HalfFloatType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HalfFloatType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM half precision floating point type for this context - example: [] - syntax: - content: ITypeRef HalfFloatType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property HalfFloatType As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.HalfFloatType* -- uid: Ubiquity.NET.Llvm.IContext.FloatType - commentId: P:Ubiquity.NET.Llvm.IContext.FloatType - id: FloatType - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: FloatType - nameWithType: IContext.FloatType - fullName: Ubiquity.NET.Llvm.IContext.FloatType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FloatType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM single precision floating point type for this context - example: [] - syntax: - content: ITypeRef FloatType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property FloatType As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.FloatType* -- uid: Ubiquity.NET.Llvm.IContext.DoubleType - commentId: P:Ubiquity.NET.Llvm.IContext.DoubleType - id: DoubleType - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: DoubleType - nameWithType: IContext.DoubleType - fullName: Ubiquity.NET.Llvm.IContext.DoubleType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DoubleType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM double precision floating point type for this context - example: [] - syntax: - content: ITypeRef DoubleType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property DoubleType As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.DoubleType* -- uid: Ubiquity.NET.Llvm.IContext.TokenType - commentId: P:Ubiquity.NET.Llvm.IContext.TokenType - id: TokenType - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: TokenType - nameWithType: IContext.TokenType - fullName: Ubiquity.NET.Llvm.IContext.TokenType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TokenType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM token type for this context - example: [] - syntax: - content: ITypeRef TokenType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property TokenType As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.TokenType* -- uid: Ubiquity.NET.Llvm.IContext.MetadataType - commentId: P:Ubiquity.NET.Llvm.IContext.MetadataType - id: MetadataType - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: MetadataType - nameWithType: IContext.MetadataType - fullName: Ubiquity.NET.Llvm.IContext.MetadataType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MetadataType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM IrMetadata type for this context - example: [] - syntax: - content: ITypeRef MetadataType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property MetadataType As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.MetadataType* -- uid: Ubiquity.NET.Llvm.IContext.X86Float80Type - commentId: P:Ubiquity.NET.Llvm.IContext.X86Float80Type - id: X86Float80Type - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: X86Float80Type - nameWithType: IContext.X86Float80Type - fullName: Ubiquity.NET.Llvm.IContext.X86Float80Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86Float80Type - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM X86 80-bit floating point type for this context - example: [] - syntax: - content: ITypeRef X86Float80Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property X86Float80Type As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.X86Float80Type* -- uid: Ubiquity.NET.Llvm.IContext.Float128Type - commentId: P:Ubiquity.NET.Llvm.IContext.Float128Type - id: Float128Type - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: Float128Type - nameWithType: IContext.Float128Type - fullName: Ubiquity.NET.Llvm.IContext.Float128Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Float128Type - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM 128-Bit floating point type - example: [] - syntax: - content: ITypeRef Float128Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property Float128Type As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.Float128Type* -- uid: Ubiquity.NET.Llvm.IContext.PpcFloat128Type - commentId: P:Ubiquity.NET.Llvm.IContext.PpcFloat128Type - id: PpcFloat128Type - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: PpcFloat128Type - nameWithType: IContext.PpcFloat128Type - fullName: Ubiquity.NET.Llvm.IContext.PpcFloat128Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PpcFloat128Type - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the LLVM PPC 128-bit floating point type - example: [] - syntax: - content: ITypeRef PpcFloat128Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property PpcFloat128Type As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.PpcFloat128Type* -- uid: Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes - commentId: P:Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes - id: OdrUniqueDebugTypes - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: OdrUniqueDebugTypes - nameWithType: IContext.OdrUniqueDebugTypes - fullName: Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OdrUniqueDebugTypes - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets a value indicating whether the context keeps a map for uniqueing debug info identifiers across the context - example: [] - syntax: - content: bool OdrUniqueDebugTypes { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Property OdrUniqueDebugTypes As Boolean - overload: Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes* -- uid: Ubiquity.NET.Llvm.IContext.DiscardValueName - commentId: P:Ubiquity.NET.Llvm.IContext.DiscardValueName - id: DiscardValueName - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: DiscardValueName - nameWithType: IContext.DiscardValueName - fullName: Ubiquity.NET.Llvm.IContext.DiscardValueName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DiscardValueName - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets a value indicating whether this context is configured to discard value names - example: [] - syntax: - content: bool DiscardValueName { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Property DiscardValueName As Boolean - overload: Ubiquity.NET.Llvm.IContext.DiscardValueName* -- uid: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - commentId: M:Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - id: SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: SetDiagnosticHandler(DiagnosticInfoCallbackAction) - nameWithType: IContext.SetDiagnosticHandler(DiagnosticInfoCallbackAction) - fullName: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler(Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetDiagnosticHandler - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Set a custom diagnostic handler - example: [] - syntax: - content: void SetDiagnosticHandler(DiagnosticInfoCallbackAction handler) - parameters: - - id: handler - type: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - description: handler - content.vb: Sub SetDiagnosticHandler(handler As DiagnosticInfoCallbackAction) - overload: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler* -- uid: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - id: GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: GetPointerTypeFor(ITypeRef) - nameWithType: IContext.GetPointerTypeFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetPointerTypeFor - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 93 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get a type that is a pointer to a value of a given type - example: [] - syntax: - content: IPointerType GetPointerTypeFor(ITypeRef elementType) - parameters: - - id: elementType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of value the pointer points to - return: - type: Ubiquity.NET.Llvm.Types.IPointerType - description: for a pointer that references a value of type elementType - content.vb: Function GetPointerTypeFor(elementType As ITypeRef) As IPointerType - overload: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor* -- uid: Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IContext.GetIntType(System.UInt32) - id: GetIntType(System.UInt32) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: GetIntType(uint) - nameWithType: IContext.GetIntType(uint) - fullName: Ubiquity.NET.Llvm.IContext.GetIntType(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetIntType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get's an LLVM integer type of arbitrary bit width - remarks: >- - For standard integer bit widths (e.g. 1,8,16,32,64) this will return - - the same type as the corresponding specialized property. - - (e.g. GetIntType(1) is the same as , - GetIntType(16) is the same as , etc... ) - example: [] - syntax: - content: ITypeRef GetIntType(uint bitWidth) - parameters: - - id: bitWidth - type: System.UInt32 - description: Width of the integer type in bits - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer for the specified width - content.vb: Function GetIntType(bitWidth As UInteger) As ITypeRef - overload: Ubiquity.NET.Llvm.IContext.GetIntType* - nameWithType.vb: IContext.GetIntType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.IContext.GetIntType(UInteger) - name.vb: GetIntType(UInteger) -- uid: Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: GetFunctionType(ITypeRef, params IEnumerable) - nameWithType: IContext.GetFunctionType(ITypeRef, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetFunctionType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 110 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get an LLVM Function type (e.g. signature) - example: [] - syntax: - content: IFunctionType GetFunctionType(ITypeRef returnType, params IEnumerable args) - parameters: - - id: returnType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Return type of the function - - id: args - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Potentially empty set of function argument types - return: - type: Ubiquity.NET.Llvm.Types.IFunctionType - description: Signature type for the specified signature - content.vb: Function GetFunctionType(returnType As ITypeRef, args As IEnumerable(Of ITypeRef)) As IFunctionType - overload: Ubiquity.NET.Llvm.IContext.GetFunctionType* - nameWithType.vb: IContext.GetFunctionType(ITypeRef, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.IContext.GetFunctionType(Ubiquity.NET.Llvm.Types.ITypeRef, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: GetFunctionType(ITypeRef, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.IContext.GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: GetFunctionType(System.Boolean,Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: GetFunctionType(bool, ITypeRef, params IEnumerable) - nameWithType: IContext.GetFunctionType(bool, ITypeRef, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.GetFunctionType(bool, Ubiquity.NET.Llvm.Types.ITypeRef, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetFunctionType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 117 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get an LLVM Function type (e.g. signature) - example: [] - syntax: - content: IFunctionType GetFunctionType(bool isVarArgs, ITypeRef returnType, params IEnumerable args) - parameters: - - id: isVarArgs - type: System.Boolean - description: Flag to indicate if the method supports C/C++ style VarArgs - - id: returnType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Return type of the function - - id: args - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Potentially empty set of function argument types - return: - type: Ubiquity.NET.Llvm.Types.IFunctionType - description: Signature type for the specified signature - content.vb: Function GetFunctionType(isVarArgs As Boolean, returnType As ITypeRef, args As IEnumerable(Of ITypeRef)) As IFunctionType - overload: Ubiquity.NET.Llvm.IContext.GetFunctionType* - nameWithType.vb: IContext.GetFunctionType(Boolean, ITypeRef, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.IContext.GetFunctionType(Boolean, Ubiquity.NET.Llvm.Types.ITypeRef, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: GetFunctionType(Boolean, ITypeRef, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - id: CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateFunctionType(ref readonly DIBuilder, IDebugType, params IEnumerable>) - nameWithType: IContext.CreateFunctionType(ref readonly DIBuilder, IDebugType, params IEnumerable>) - fullName: Ubiquity.NET.Llvm.IContext.CreateFunctionType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params System.Collections.Generic.IEnumerable>) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunctionType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 124 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a FunctionType with Debug information - example: [] - syntax: - content: DebugFunctionType CreateFunctionType(ref readonly DIBuilder diBuilder, IDebugType retType, params IEnumerable> argTypes) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: to use to create the debug information - - id: retType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type of the function - - id: argTypes - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - description: Argument types of the function - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - description: Function signature - content.vb: Function CreateFunctionType(diBuilder As DIBuilder, retType As IDebugType(Of ITypeRef, DIType), argTypes As IEnumerable(Of IDebugType(Of ITypeRef, DIType))) As DebugFunctionType - overload: Ubiquity.NET.Llvm.IContext.CreateFunctionType* - nameWithType.vb: IContext.CreateFunctionType(DIBuilder, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunctionType(DIBuilder, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) -- uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - id: CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateFunctionType(ref readonly DIBuilder, bool, IDebugType, params IEnumerable>) - nameWithType: IContext.CreateFunctionType(ref readonly DIBuilder, bool, IDebugType, params IEnumerable>) - fullName: Ubiquity.NET.Llvm.IContext.CreateFunctionType(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params System.Collections.Generic.IEnumerable>) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunctionType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 135 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a FunctionType with Debug information - example: [] - syntax: - content: DebugFunctionType CreateFunctionType(ref readonly DIBuilder diBuilder, bool isVarArg, IDebugType retType, params IEnumerable> argTypes) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: to use to create the debug information - - id: isVarArg - type: System.Boolean - description: Flag to indicate if this function is variadic - - id: retType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type of the function - - id: argTypes - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - description: Argument types of the function - return: - type: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - description: Function signature - content.vb: Function CreateFunctionType(diBuilder As DIBuilder, isVarArg As Boolean, retType As IDebugType(Of ITypeRef, DIType), argTypes As IEnumerable(Of IDebugType(Of ITypeRef, DIType))) As DebugFunctionType - overload: Ubiquity.NET.Llvm.IContext.CreateFunctionType* - nameWithType.vb: IContext.CreateFunctionType(DIBuilder, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateFunctionType(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunctionType(DIBuilder, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - id: CreateConstantStruct(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstantStruct(bool, params IEnumerable) - nameWithType: IContext.CreateConstantStruct(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantStruct(bool, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstantStruct - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 157 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a constant structure from a set of values - remarks: >- -
note

The actual concrete return type depends on the parameters provided and will be one of the following: - -
derived typeDescription
ConstantAggregateZeroIf all the member values are zero constants
UndefValueIf all the member values are UndefValue
ConstantStructAll other cases
- -

- example: [] - syntax: - content: Constant CreateConstantStruct(bool packed, params IEnumerable values) - parameters: - - id: packed - type: System.Boolean - description: Flag to indicate if the structure is packed and no alignment should be applied to the members - - id: values - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant} - description: Set of values to use in forming the structure - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Newly created - content.vb: Function CreateConstantStruct(packed As Boolean, values As IEnumerable(Of Constant)) As Constant - overload: Ubiquity.NET.Llvm.IContext.CreateConstantStruct* - nameWithType.vb: IContext.CreateConstantStruct(Boolean, IEnumerable(Of Constant)) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstantStruct(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Constant)) - name.vb: CreateConstantStruct(Boolean, IEnumerable(Of Constant)) -- uid: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - id: CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant}) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateNamedConstantStruct(IStructType, params IEnumerable) - nameWithType: IContext.CreateNamedConstantStruct(IStructType, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateNamedConstantStruct - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 175 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a constant instance of a specified structure type from a set of values - remarks: >- -
note

The actual concrete return type depends on the parameters provided and will be one of the following: - -
derived typeDescription
ConstantAggregateZeroIf all the member values are zero constants
UndefValueIf all the member values are UndefValue
ConstantStructAll other cases
- -

- example: [] - syntax: - content: Constant CreateNamedConstantStruct(IStructType type, params IEnumerable values) - parameters: - - id: type - type: Ubiquity.NET.Llvm.Types.IStructType - description: Type of the structure to create - - id: values - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant} - description: Set of values to use in forming the structure - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Newly created - content.vb: Function CreateNamedConstantStruct(type As IStructType, values As IEnumerable(Of Constant)) As Constant - overload: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct* - nameWithType.vb: IContext.CreateNamedConstantStruct(IStructType, IEnumerable(Of Constant)) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct(Ubiquity.NET.Llvm.Types.IStructType, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Constant)) - name.vb: CreateNamedConstantStruct(IStructType, IEnumerable(Of Constant)) -- uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateStructType(System.String) - id: CreateStructType(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateStructType(string) - nameWithType: IContext.CreateStructType(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateStructType(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateStructType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 186 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create an opaque structure type (e.g. a forward reference) - remarks: >- - This method creates an opaque type. The method provides a means - - to add a body, including indication of packed status, to an opaque type at a later time if the - - details of the body are required. (If only pointers to the type are required then the body isn't - - required) - example: [] - syntax: - content: IStructType CreateStructType(string name) - parameters: - - id: name - type: System.String - description: Name of the type (use for anonymous types) - return: - type: Ubiquity.NET.Llvm.Types.IStructType - description: New type - content.vb: Function CreateStructType(name As String) As IStructType - overload: Ubiquity.NET.Llvm.IContext.CreateStructType* - nameWithType.vb: IContext.CreateStructType(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateStructType(String) - name.vb: CreateStructType(String) -- uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: CreateStructType(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateStructType(bool, params IEnumerable) - nameWithType: IContext.CreateStructType(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.CreateStructType(bool, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateStructType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 194 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create an anonymous structure type (e.g. Tuple) - example: [] - syntax: - content: IStructType CreateStructType(bool packed, params IEnumerable elements) - parameters: - - id: packed - type: System.Boolean - description: Flag to indicate if the structure is "packed" - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Types of the fields of the structure - return: - type: Ubiquity.NET.Llvm.Types.IStructType - description: with the specified body defined. - content.vb: Function CreateStructType(packed As Boolean, elements As IEnumerable(Of ITypeRef)) As IStructType - overload: Ubiquity.NET.Llvm.IContext.CreateStructType* - nameWithType.vb: IContext.CreateStructType(Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateStructType(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: CreateStructType(Boolean, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: CreateStructType(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateStructType(string, bool, params IEnumerable) - nameWithType: IContext.CreateStructType(string, bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.IContext.CreateStructType(string, bool, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateStructType - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 206 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new structure type in this - remarks: If the elements argument list is empty then a complete 0 sized struct is created - example: [] - syntax: - content: IStructType CreateStructType(string name, bool packed, params IEnumerable elements) - parameters: - - id: name - type: System.String - description: Name of the structure (use for anonymous types) - - id: packed - type: System.Boolean - description: Flag indicating if the structure is packed - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Types for the structures elements in layout order - return: - type: Ubiquity.NET.Llvm.Types.IStructType - description: with the specified body defined. - content.vb: Function CreateStructType(name As String, packed As Boolean, elements As IEnumerable(Of ITypeRef)) As IStructType - overload: Ubiquity.NET.Llvm.IContext.CreateStructType* - nameWithType.vb: IContext.CreateStructType(String, Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateStructType(String, Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: CreateStructType(String, Boolean, IEnumerable(Of ITypeRef)) -- uid: Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateMetadataString(System.String) - id: CreateMetadataString(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateMetadataString(string?) - nameWithType: IContext.CreateMetadataString(string?) - fullName: Ubiquity.NET.Llvm.IContext.CreateMetadataString(string?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateMetadataString - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 215 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a metadata string from the given string - remarks: >- - if value is null then the result - - represents an empty string. - example: [] - syntax: - content: MDString CreateMetadataString(string? value) - parameters: - - id: value - type: System.String - description: string to create as metadata - return: - type: Ubiquity.NET.Llvm.Metadata.MDString - description: new metadata string - content.vb: Function CreateMetadataString(value As String) As MDString - overload: Ubiquity.NET.Llvm.IContext.CreateMetadataString* - nameWithType.vb: IContext.CreateMetadataString(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateMetadataString(String) - name.vb: CreateMetadataString(String) -- uid: Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateMDNode(System.String) - id: CreateMDNode(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateMDNode(string) - nameWithType: IContext.CreateMDNode(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateMDNode(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateMDNode - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 220 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create an from a string - example: [] - syntax: - content: MDNode CreateMDNode(string value) - parameters: - - id: value - type: System.String - description: String value - return: - type: Ubiquity.NET.Llvm.Metadata.MDNode - description: New node with the string as the first element of the property (as an MDString) - content.vb: Function CreateMDNode(value As String) As MDNode - overload: Ubiquity.NET.Llvm.IContext.CreateMDNode* - nameWithType.vb: IContext.CreateMDNode(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateMDNode(String) - name.vb: CreateMDNode(String) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String) - id: CreateConstantString(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstantString(string) - nameWithType: IContext.CreateConstantString(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantString(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstantString - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 231 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a constant data string value - remarks: >- - This converts the string to ANSI form and creates an LLVM constant array of i8 - - characters for the data with a terminating null character. To control the enforcement - - of a terminating null character, use the - - overload to specify the intended behavior. - example: [] - syntax: - content: ConstantDataArray CreateConstantString(string value) - parameters: - - id: value - type: System.String - description: string to convert into an LLVM constant value - return: - type: Ubiquity.NET.Llvm.Values.ConstantDataArray - description: new - content.vb: Function CreateConstantString(value As String) As ConstantDataArray - overload: Ubiquity.NET.Llvm.IContext.CreateConstantString* - nameWithType.vb: IContext.CreateConstantString(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstantString(String) - name.vb: CreateConstantString(String) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - id: CreateConstantString(System.String,System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstantString(string, bool) - nameWithType: IContext.CreateConstantString(string, bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantString(string, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstantString - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 241 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a constant data string value - remarks: >- - This converts the string to ANSI form and creates an LLVM constant array of i8 - - characters for the data. Enforcement of a null terminator depends on the value of nullTerminate - example: [] - syntax: - content: ConstantDataArray CreateConstantString(string value, bool nullTerminate) - parameters: - - id: value - type: System.String - description: string to convert into an LLVM constant value - - id: nullTerminate - type: System.Boolean - description: flag to indicate if the string should include a null terminator - return: - type: Ubiquity.NET.Llvm.Values.ConstantDataArray - description: new - content.vb: Function CreateConstantString(value As String, nullTerminate As Boolean) As ConstantDataArray - overload: Ubiquity.NET.Llvm.IContext.CreateConstantString* - nameWithType.vb: IContext.CreateConstantString(String, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstantString(String, Boolean) - name.vb: CreateConstantString(String, Boolean) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Boolean) - id: CreateConstant(System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(bool) - nameWithType: IContext.CreateConstant(bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 246 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 1 - example: [] - syntax: - content: ConstantInt CreateConstant(bool constValue) - parameters: - - id: constValue - type: System.Boolean - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(constValue As Boolean) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Boolean) - name.vb: CreateConstant(Boolean) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Byte) - id: CreateConstant(System.Byte) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(byte) - nameWithType: IContext.CreateConstant(byte) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(byte) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 251 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 8 - example: [] - syntax: - content: ConstantInt CreateConstant(byte constValue) - parameters: - - id: constValue - type: System.Byte - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(constValue As Byte) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(Byte) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Byte) - name.vb: CreateConstant(Byte) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.SByte) - id: CreateConstant(System.SByte) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(sbyte) - nameWithType: IContext.CreateConstant(sbyte) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(sbyte) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 256 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 8 - example: [] - syntax: - content: Constant CreateConstant(sbyte constValue) - parameters: - - id: constValue - type: System.SByte - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: representing the value - content.vb: Function CreateConstant(constValue As SByte) As Constant - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(SByte) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(SByte) - name.vb: CreateConstant(SByte) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int16) - id: CreateConstant(System.Int16) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(short) - nameWithType: IContext.CreateConstant(short) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(short) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 261 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 16 - example: [] - syntax: - content: ConstantInt CreateConstant(short constValue) - parameters: - - id: constValue - type: System.Int16 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(constValue As Short) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(Short) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Short) - name.vb: CreateConstant(Short) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt16) - id: CreateConstant(System.UInt16) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(ushort) - nameWithType: IContext.CreateConstant(ushort) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(ushort) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 266 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 16 - example: [] - syntax: - content: ConstantInt CreateConstant(ushort constValue) - parameters: - - id: constValue - type: System.UInt16 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(constValue As UShort) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(UShort) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(UShort) - name.vb: CreateConstant(UShort) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int32) - id: CreateConstant(System.Int32) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(int) - nameWithType: IContext.CreateConstant(int) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(int) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 271 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 32 - example: [] - syntax: - content: ConstantInt CreateConstant(int constValue) - parameters: - - id: constValue - type: System.Int32 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(constValue As Integer) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(Integer) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Integer) - name.vb: CreateConstant(Integer) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32) - id: CreateConstant(System.UInt32) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(uint) - nameWithType: IContext.CreateConstant(uint) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 276 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 32 - example: [] - syntax: - content: ConstantInt CreateConstant(uint constValue) - parameters: - - id: constValue - type: System.UInt32 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(constValue As UInteger) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(UInteger) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(UInteger) - name.vb: CreateConstant(UInteger) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Int64) - id: CreateConstant(System.Int64) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(long) - nameWithType: IContext.CreateConstant(long) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(long) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 281 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 64 - example: [] - syntax: - content: ConstantInt CreateConstant(long constValue) - parameters: - - id: constValue - type: System.Int64 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(constValue As Long) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(Long) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Long) - name.vb: CreateConstant(Long) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt64) - id: CreateConstant(System.UInt64) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(ulong) - nameWithType: IContext.CreateConstant(ulong) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(ulong) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 286 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 64 - example: [] - syntax: - content: ConstantInt CreateConstant(ulong constValue) - parameters: - - id: constValue - type: System.UInt64 - description: Value for the constant - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(constValue As ULong) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(ULong) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(ULong) - name.vb: CreateConstant(ULong) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.UInt32,System.UInt64,System.Boolean) - id: CreateConstant(System.UInt32,System.UInt64,System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(uint, ulong, bool) - nameWithType: IContext.CreateConstant(uint, ulong, bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(uint, ulong, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 293 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new with a bit length of 64 - example: [] - syntax: - content: ConstantInt CreateConstant(uint bitWidth, ulong constValue, bool signExtend) - parameters: - - id: bitWidth - type: System.UInt32 - description: Bit width of the integer - - id: constValue - type: System.UInt64 - description: Value for the constant - - id: signExtend - type: System.Boolean - description: flag to indicate if the constant value should be sign extended - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: representing the value - content.vb: Function CreateConstant(bitWidth As UInteger, constValue As ULong, signExtend As Boolean) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(UInteger, ULong, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(UInteger, ULong, Boolean) - name.vb: CreateConstant(UInteger, ULong, Boolean) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - id: CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt64,System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(ITypeRef, ulong, bool) - nameWithType: IContext.CreateConstant(ITypeRef, ulong, bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef, ulong, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 300 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a constant value of the specified integer type - example: [] - syntax: - content: ConstantInt CreateConstant(ITypeRef intType, ulong constValue, bool signExtend) - parameters: - - id: intType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer type - - id: constValue - type: System.UInt64 - description: value - - id: signExtend - type: System.Boolean - description: flag to indicate if constValue is sign extended - return: - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: Constant for the specified value - content.vb: Function CreateConstant(intType As ITypeRef, constValue As ULong, signExtend As Boolean) As ConstantInt - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(ITypeRef, ULong, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Ubiquity.NET.Llvm.Types.ITypeRef, ULong, Boolean) - name.vb: CreateConstant(ITypeRef, ULong, Boolean) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Single) - id: CreateConstant(System.Single) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(float) - nameWithType: IContext.CreateConstant(float) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(float) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 305 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a constant floating point value for a given value - example: [] - syntax: - content: ConstantFP CreateConstant(float constValue) - parameters: - - id: constValue - type: System.Single - description: Value to make into a - return: - type: Ubiquity.NET.Llvm.Values.ConstantFP - description: Constant value - content.vb: Function CreateConstant(constValue As Single) As ConstantFP - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(Single) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Single) - name.vb: CreateConstant(Single) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstant(System.Double) - id: CreateConstant(System.Double) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateConstant(double) - nameWithType: IContext.CreateConstant(double) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant(double) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateConstant - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 310 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a constant floating point value for a given value - example: [] - syntax: - content: ConstantFP CreateConstant(double constValue) - parameters: - - id: constValue - type: System.Double - description: Value to make into a - return: - type: Ubiquity.NET.Llvm.Values.ConstantFP - description: Constant value - content.vb: Function CreateConstant(constValue As Double) As ConstantFP - overload: Ubiquity.NET.Llvm.IContext.CreateConstant* - nameWithType.vb: IContext.CreateConstant(Double) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstant(Double) - name.vb: CreateConstant(Double) -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - id: CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateAttribute(AttributeKind) - nameWithType: IContext.CreateAttribute(AttributeKind) - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAttribute - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 315 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a simple boolean attribute - example: [] - syntax: - content: AttributeValue CreateAttribute(AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Id of attribute - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: with the specified Id set - content.vb: Function CreateAttribute(kind As AttributeKind) As AttributeValue - overload: Ubiquity.NET.Llvm.IContext.CreateAttribute* -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - id: CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind,System.UInt64) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateAttribute(AttributeKind, ulong) - nameWithType: IContext.CreateAttribute(AttributeKind, ulong) - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind, ulong) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAttribute - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 333 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates an attribute with an integer value parameter - remarks: >- -

Not all attributes support a value and those that do don't all support - - a full 64bit value. The following table provides the kinds of attributes - - accepting a value and the allowed size of the values.

- -
Bit Length
32
32
64
64
- example: [] - syntax: - content: AttributeValue CreateAttribute(AttributeKind kind, ulong value) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: The kind of attribute - - id: value - type: System.UInt64 - description: Value for the attribute - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: with the specified kind and value - content.vb: Function CreateAttribute(kind As AttributeKind, value As ULong) As AttributeValue - overload: Ubiquity.NET.Llvm.IContext.CreateAttribute* - nameWithType.vb: IContext.CreateAttribute(AttributeKind, ULong) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateAttribute(Ubiquity.NET.Llvm.Values.AttributeKind, ULong) - name.vb: CreateAttribute(AttributeKind, ULong) -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String) - id: CreateAttribute(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateAttribute(string) - nameWithType: IContext.CreateAttribute(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAttribute - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 338 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a valueless named attribute - example: [] - syntax: - content: AttributeValue CreateAttribute(string name) - parameters: - - id: name - type: System.String - description: Attribute name - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: with the specified name - content.vb: Function CreateAttribute(name As String) As AttributeValue - overload: Ubiquity.NET.Llvm.IContext.CreateAttribute* - nameWithType.vb: IContext.CreateAttribute(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateAttribute(String) - name.vb: CreateAttribute(String) -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateAttribute(System.String,System.String) - id: CreateAttribute(System.String,System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateAttribute(string, string) - nameWithType: IContext.CreateAttribute(string, string) - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute(string, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAttribute - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 344 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a Target specific named attribute with value - example: [] - syntax: - content: AttributeValue CreateAttribute(string name, string value) - parameters: - - id: name - type: System.String - description: Name of the attribute - - id: value - type: System.String - description: Value of the attribute - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: with the specified name and value - content.vb: Function CreateAttribute(name As String, value As String) As AttributeValue - overload: Ubiquity.NET.Llvm.IContext.CreateAttribute* - nameWithType.vb: IContext.CreateAttribute(String, String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateAttribute(String, String) - name.vb: CreateAttribute(String, String) -- uid: Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateBasicBlock(System.String) - id: CreateBasicBlock(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateBasicBlock(string) - nameWithType: IContext.CreateBasicBlock(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateBasicBlock(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateBasicBlock - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 349 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a named without inserting it into a function - example: [] - syntax: - content: BasicBlock CreateBasicBlock(string name) - parameters: - - id: name - type: System.String - description: Name of the block to create - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: created - content.vb: Function CreateBasicBlock(name As String) As BasicBlock - overload: Ubiquity.NET.Llvm.IContext.CreateBasicBlock* - nameWithType.vb: IContext.CreateBasicBlock(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateBasicBlock(String) - name.vb: CreateBasicBlock(String) -- uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule - commentId: M:Ubiquity.NET.Llvm.IContext.CreateBitcodeModule - id: CreateBitcodeModule - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateBitcodeModule() - nameWithType: IContext.CreateBitcodeModule() - fullName: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateBitcodeModule - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 353 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new instance of the class in this context - example: [] - syntax: - content: Module CreateBitcodeModule() - return: - type: Ubiquity.NET.Llvm.Module - description: - content.vb: Function CreateBitcodeModule() As [Module] - overload: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule* -- uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(System.String) - id: CreateBitcodeModule(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: CreateBitcodeModule(string) - nameWithType: IContext.CreateBitcodeModule(string) - fullName: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateBitcodeModule - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 358 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a new instance of the class in a given context - example: [] - syntax: - content: Module CreateBitcodeModule(string moduleId) - parameters: - - id: moduleId - type: System.String - description: ModuleHandle's ID - return: - type: Ubiquity.NET.Llvm.Module - description: - content.vb: Function CreateBitcodeModule(moduleId As String) As [Module] - overload: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule* - nameWithType.vb: IContext.CreateBitcodeModule(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule(String) - name.vb: CreateBitcodeModule(String) -- uid: Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - commentId: M:Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - id: ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.InteropHelpers.LazyEncodedString) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: ParseModule(LazyEncodedString, LazyEncodedString) - nameWithType: IContext.ParseModule(LazyEncodedString, LazyEncodedString) - fullName: Ubiquity.NET.Llvm.IContext.ParseModule(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.InteropHelpers.LazyEncodedString) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ParseModule - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 365 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Parse LLVM IR source for a module, into this context - example: [] - syntax: - content: Module ParseModule(LazyEncodedString src, LazyEncodedString name) - parameters: - - id: src - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: LLVM IR Source code of the module - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Name of the module buffer - return: - type: Ubiquity.NET.Llvm.Module - description: Newly created module parsed from the IR - content.vb: Function ParseModule(src As LazyEncodedString, name As LazyEncodedString) As [Module] - overload: Ubiquity.NET.Llvm.IContext.ParseModule* - exceptions: - - type: Ubiquity.NET.Llvm.Interop.LlvmException - commentId: T:Ubiquity.NET.Llvm.Interop.LlvmException - description: Any errors parsing the IR -- uid: Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.GetMDKindId(System.String) - id: GetMDKindId(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: GetMDKindId(string) - nameWithType: IContext.GetMDKindId(string) - fullName: Ubiquity.NET.Llvm.IContext.GetMDKindId(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetMDKindId - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 373 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets non-zero IrMetadata kind ID for a given name - remarks: These IDs are uniqued across all modules in this context. - example: [] - syntax: - content: uint GetMDKindId(string name) - parameters: - - id: name - type: System.String - description: name of the metadata kind - return: - type: System.UInt32 - description: integral constant for the ID - content.vb: Function GetMDKindId(name As String) As UInteger - overload: Ubiquity.NET.Llvm.IContext.GetMDKindId* - nameWithType.vb: IContext.GetMDKindId(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.GetMDKindId(String) - name.vb: GetMDKindId(String) -- uid: Ubiquity.NET.Llvm.IContext.OpenBinary(System.String) - commentId: M:Ubiquity.NET.Llvm.IContext.OpenBinary(System.String) - id: OpenBinary(System.String) - parent: Ubiquity.NET.Llvm.IContext - langs: - - csharp - - vb - name: OpenBinary(string) - nameWithType: IContext.OpenBinary(string) - fullName: Ubiquity.NET.Llvm.IContext.OpenBinary(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpenBinary - path: ../src/Ubiquity.NET.Llvm/IContext.cs - startLine: 379 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Opens a from a path - example: [] - syntax: - content: TargetBinary OpenBinary(string path) - parameters: - - id: path - type: System.String - description: path to the object file binary - return: - type: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - description: new object file - content.vb: Function OpenBinary(path As String) As TargetBinary - overload: Ubiquity.NET.Llvm.IContext.OpenBinary* - exceptions: - - type: System.IO.IOException - commentId: T:System.IO.IOException - description: File IO failures - nameWithType.vb: IContext.OpenBinary(String) - fullName.vb: Ubiquity.NET.Llvm.IContext.OpenBinary(String) - name.vb: OpenBinary(String) -references: -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Context - commentId: T:Ubiquity.NET.Llvm.Context - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Context.html - name: Context - nameWithType: Context - fullName: Ubiquity.NET.Llvm.Context -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.IContext.VoidType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.VoidType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_VoidType - name: VoidType - nameWithType: IContext.VoidType - fullName: Ubiquity.NET.Llvm.IContext.VoidType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.IContext.BoolType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.BoolType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_BoolType - name: BoolType - nameWithType: IContext.BoolType - fullName: Ubiquity.NET.Llvm.IContext.BoolType -- uid: Ubiquity.NET.Llvm.IContext.Int8Type* - commentId: Overload:Ubiquity.NET.Llvm.IContext.Int8Type - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int8Type - name: Int8Type - nameWithType: IContext.Int8Type - fullName: Ubiquity.NET.Llvm.IContext.Int8Type -- uid: Ubiquity.NET.Llvm.IContext.Int16Type* - commentId: Overload:Ubiquity.NET.Llvm.IContext.Int16Type - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int16Type - name: Int16Type - nameWithType: IContext.Int16Type - fullName: Ubiquity.NET.Llvm.IContext.Int16Type -- uid: Ubiquity.NET.Llvm.IContext.Int32Type* - commentId: Overload:Ubiquity.NET.Llvm.IContext.Int32Type - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int32Type - name: Int32Type - nameWithType: IContext.Int32Type - fullName: Ubiquity.NET.Llvm.IContext.Int32Type -- uid: Ubiquity.NET.Llvm.IContext.Int64Type* - commentId: Overload:Ubiquity.NET.Llvm.IContext.Int64Type - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int64Type - name: Int64Type - nameWithType: IContext.Int64Type - fullName: Ubiquity.NET.Llvm.IContext.Int64Type -- uid: Ubiquity.NET.Llvm.IContext.Int128Type* - commentId: Overload:Ubiquity.NET.Llvm.IContext.Int128Type - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int128Type - name: Int128Type - nameWithType: IContext.Int128Type - fullName: Ubiquity.NET.Llvm.IContext.Int128Type -- uid: Ubiquity.NET.Llvm.IContext.HalfFloatType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.HalfFloatType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_HalfFloatType - name: HalfFloatType - nameWithType: IContext.HalfFloatType - fullName: Ubiquity.NET.Llvm.IContext.HalfFloatType -- uid: Ubiquity.NET.Llvm.IContext.FloatType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.FloatType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_FloatType - name: FloatType - nameWithType: IContext.FloatType - fullName: Ubiquity.NET.Llvm.IContext.FloatType -- uid: Ubiquity.NET.Llvm.IContext.DoubleType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.DoubleType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_DoubleType - name: DoubleType - nameWithType: IContext.DoubleType - fullName: Ubiquity.NET.Llvm.IContext.DoubleType -- uid: Ubiquity.NET.Llvm.IContext.TokenType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.TokenType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_TokenType - name: TokenType - nameWithType: IContext.TokenType - fullName: Ubiquity.NET.Llvm.IContext.TokenType -- uid: Ubiquity.NET.Llvm.IContext.MetadataType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.MetadataType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_MetadataType - name: MetadataType - nameWithType: IContext.MetadataType - fullName: Ubiquity.NET.Llvm.IContext.MetadataType -- uid: Ubiquity.NET.Llvm.IContext.X86Float80Type* - commentId: Overload:Ubiquity.NET.Llvm.IContext.X86Float80Type - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_X86Float80Type - name: X86Float80Type - nameWithType: IContext.X86Float80Type - fullName: Ubiquity.NET.Llvm.IContext.X86Float80Type -- uid: Ubiquity.NET.Llvm.IContext.Float128Type* - commentId: Overload:Ubiquity.NET.Llvm.IContext.Float128Type - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Float128Type - name: Float128Type - nameWithType: IContext.Float128Type - fullName: Ubiquity.NET.Llvm.IContext.Float128Type -- uid: Ubiquity.NET.Llvm.IContext.PpcFloat128Type* - commentId: Overload:Ubiquity.NET.Llvm.IContext.PpcFloat128Type - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_PpcFloat128Type - name: PpcFloat128Type - nameWithType: IContext.PpcFloat128Type - fullName: Ubiquity.NET.Llvm.IContext.PpcFloat128Type -- uid: Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes* - commentId: Overload:Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_OdrUniqueDebugTypes - name: OdrUniqueDebugTypes - nameWithType: IContext.OdrUniqueDebugTypes - fullName: Ubiquity.NET.Llvm.IContext.OdrUniqueDebugTypes -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.IContext.DiscardValueName* - commentId: Overload:Ubiquity.NET.Llvm.IContext.DiscardValueName - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_DiscardValueName - name: DiscardValueName - nameWithType: IContext.DiscardValueName - fullName: Ubiquity.NET.Llvm.IContext.DiscardValueName -- uid: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler* - commentId: Overload:Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_SetDiagnosticHandler_Ubiquity_NET_Llvm_DiagnosticInfoCallbackAction_ - name: SetDiagnosticHandler - nameWithType: IContext.SetDiagnosticHandler - fullName: Ubiquity.NET.Llvm.IContext.SetDiagnosticHandler -- uid: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - commentId: T:Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.html - name: DiagnosticInfoCallbackAction - nameWithType: DiagnosticInfoCallbackAction - fullName: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor* - commentId: Overload:Ubiquity.NET.Llvm.IContext.GetPointerTypeFor - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetPointerTypeFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: GetPointerTypeFor - nameWithType: IContext.GetPointerTypeFor - fullName: Ubiquity.NET.Llvm.IContext.GetPointerTypeFor -- uid: Ubiquity.NET.Llvm.IContext.BoolType - commentId: P:Ubiquity.NET.Llvm.IContext.BoolType - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_BoolType - name: BoolType - nameWithType: IContext.BoolType - fullName: Ubiquity.NET.Llvm.IContext.BoolType -- uid: Ubiquity.NET.Llvm.IContext.Int16Type - commentId: P:Ubiquity.NET.Llvm.IContext.Int16Type - parent: Ubiquity.NET.Llvm.IContext - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_Int16Type - name: Int16Type - nameWithType: IContext.Int16Type - fullName: Ubiquity.NET.Llvm.IContext.Int16Type -- uid: Ubiquity.NET.Llvm.IContext.GetIntType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.GetIntType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetIntType_System_UInt32_ - name: GetIntType - nameWithType: IContext.GetIntType - fullName: Ubiquity.NET.Llvm.IContext.GetIntType -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.IContext.GetFunctionType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.GetFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetFunctionType_Ubiquity_NET_Llvm_Types_ITypeRef_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: GetFunctionType - nameWithType: IContext.GetFunctionType - fullName: Ubiquity.NET.Llvm.IContext.GetFunctionType -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of ITypeRef) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEnumerable(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.IContext.CreateFunctionType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateFunctionType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateFunctionType_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - name: CreateFunctionType - nameWithType: IContext.CreateFunctionType - fullName: Ubiquity.NET.Llvm.IContext.CreateFunctionType -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable> - nameWithType: IEnumerable> - fullName: System.Collections.Generic.IEnumerable> - nameWithType.vb: IEnumerable(Of IDebugType(Of ITypeRef, DIType)) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: IEnumerable(Of IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html - name: DebugFunctionType - nameWithType: DebugFunctionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantStruct* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateConstantStruct - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantStruct_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - name: CreateConstantStruct - nameWithType: IContext.CreateConstantStruct - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantStruct -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Constant} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Constant) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Constant) - name.vb: IEnumerable(Of Constant) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateNamedConstantStruct_Ubiquity_NET_Llvm_Types_IStructType_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Constant__ - name: CreateNamedConstantStruct - nameWithType: IContext.CreateNamedConstantStruct - fullName: Ubiquity.NET.Llvm.IContext.CreateNamedConstantStruct -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IStructType.html - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType -- uid: System.String.Empty - commentId: F:System.String.Empty - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string.empty - name: Empty - nameWithType: string.Empty - fullName: string.Empty - nameWithType.vb: String.Empty - fullName.vb: String.Empty -- uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.Types.IStructType - isExternal: true - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: SetBody(bool, params IEnumerable) - nameWithType: IStructType.SetBody(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Types.IStructType.SetBody(bool, params System.Collections.Generic.IEnumerable) - nameWithType.vb: IStructType.SetBody(Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.Types.IStructType.SetBody(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: SetBody(Boolean, IEnumerable(Of ITypeRef)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: SetBody - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - name: SetBody - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateStructType* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateStructType - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateStructType_System_String_ - name: CreateStructType - nameWithType: IContext.CreateStructType - fullName: Ubiquity.NET.Llvm.IContext.CreateStructType -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.ContextAlias - commentId: T:Ubiquity.NET.Llvm.ContextAlias - name: ContextAlias - nameWithType: ContextAlias - fullName: Ubiquity.NET.Llvm.ContextAlias -- uid: Ubiquity.NET.Llvm.IContext.CreateMetadataString* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateMetadataString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateMetadataString_System_String_ - name: CreateMetadataString - nameWithType: IContext.CreateMetadataString - fullName: Ubiquity.NET.Llvm.IContext.CreateMetadataString -- uid: Ubiquity.NET.Llvm.Metadata.MDString - commentId: T:Ubiquity.NET.Llvm.Metadata.MDString - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDString.html - name: MDString - nameWithType: MDString - fullName: Ubiquity.NET.Llvm.Metadata.MDString -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.IContext.CreateMDNode* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateMDNode - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateMDNode_System_String_ - name: CreateMDNode - nameWithType: IContext.CreateMDNode - fullName: Ubiquity.NET.Llvm.IContext.CreateMDNode -- uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataArray - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantDataArray.html - name: ConstantDataArray - nameWithType: ConstantDataArray - fullName: Ubiquity.NET.Llvm.Values.ConstantDataArray -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - parent: Ubiquity.NET.Llvm.IContext - isExternal: true - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_System_Boolean_ - name: CreateConstantString(string, bool) - nameWithType: IContext.CreateConstantString(string, bool) - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantString(string, bool) - nameWithType.vb: IContext.CreateConstantString(String, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IContext.CreateConstantString(String, Boolean) - name.vb: CreateConstantString(String, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - name: CreateConstantString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_System_Boolean_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IContext.CreateConstantString(System.String,System.Boolean) - name: CreateConstantString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_System_Boolean_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.IContext.CreateConstantString* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateConstantString - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstantString_System_String_ - name: CreateConstantString - nameWithType: IContext.CreateConstantString - fullName: Ubiquity.NET.Llvm.IContext.CreateConstantString -- uid: Ubiquity.NET.Llvm.Values.ConstantInt - commentId: T:Ubiquity.NET.Llvm.Values.ConstantInt - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - name: ConstantInt - nameWithType: ConstantInt - fullName: Ubiquity.NET.Llvm.Values.ConstantInt -- uid: Ubiquity.NET.Llvm.IContext.CreateConstant* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateConstant - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateConstant_System_Boolean_ - name: CreateConstant - nameWithType: IContext.CreateConstant - fullName: Ubiquity.NET.Llvm.IContext.CreateConstant -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte -- uid: System.SByte - commentId: T:System.SByte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.sbyte - name: sbyte - nameWithType: sbyte - fullName: sbyte - nameWithType.vb: SByte - fullName.vb: SByte - name.vb: SByte -- uid: System.Int16 - commentId: T:System.Int16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int16 - name: short - nameWithType: short - fullName: short - nameWithType.vb: Short - fullName.vb: Short - name.vb: Short -- uid: System.UInt16 - commentId: T:System.UInt16 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint16 - name: ushort - nameWithType: ushort - fullName: ushort - nameWithType.vb: UShort - fullName.vb: UShort - name.vb: UShort -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Int64 - commentId: T:System.Int64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long - nameWithType: long - fullName: long - nameWithType.vb: Long - fullName.vb: Long - name.vb: Long -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.Values.ConstantFP - commentId: T:Ubiquity.NET.Llvm.Values.ConstantFP - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantFP.html - name: ConstantFP - nameWithType: ConstantFP - fullName: Ubiquity.NET.Llvm.Values.ConstantFP -- uid: System.Single - commentId: T:System.Single - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.single - name: float - nameWithType: float - fullName: float - nameWithType.vb: Single - fullName.vb: Single - name.vb: Single -- uid: System.Double - commentId: T:System.Double - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.double - name: double - nameWithType: double - fullName: double - nameWithType.vb: Double - fullName.vb: Double - name.vb: Double -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.IContext.CreateAttribute* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateAttribute - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: CreateAttribute - nameWithType: IContext.CreateAttribute - fullName: Ubiquity.NET.Llvm.IContext.CreateAttribute -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Alignment - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Alignment - href: Ubiquity.NET.Llvm.Values.AttributeKind.html#Ubiquity_NET_Llvm_Values_AttributeKind_Alignment - name: Alignment - nameWithType: AttributeKind.Alignment - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Alignment -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment - href: Ubiquity.NET.Llvm.Values.AttributeKind.html#Ubiquity_NET_Llvm_Values_AttributeKind_StackAlignment - name: StackAlignment - nameWithType: AttributeKind.StackAlignment - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable - href: Ubiquity.NET.Llvm.Values.AttributeKind.html#Ubiquity_NET_Llvm_Values_AttributeKind_Dereferenceable - name: Dereferenceable - nameWithType: AttributeKind.Dereferenceable - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull - href: Ubiquity.NET.Llvm.Values.AttributeKind.html#Ubiquity_NET_Llvm_Values_AttributeKind_DereferenceableOrNull - name: DereferenceableOrNull - nameWithType: AttributeKind.DereferenceableOrNull - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.IContext.CreateBasicBlock* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateBasicBlock - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBasicBlock_System_String_ - name: CreateBasicBlock - nameWithType: IContext.CreateBasicBlock - fullName: Ubiquity.NET.Llvm.IContext.CreateBasicBlock -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule* - commentId: Overload:Ubiquity.NET.Llvm.IContext.CreateBitcodeModule - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_CreateBitcodeModule - name: CreateBitcodeModule - nameWithType: IContext.CreateBitcodeModule - fullName: Ubiquity.NET.Llvm.IContext.CreateBitcodeModule -- uid: Ubiquity.NET.Llvm.Interop.LlvmException - commentId: T:Ubiquity.NET.Llvm.Interop.LlvmException - name: LlvmException - nameWithType: LlvmException - fullName: Ubiquity.NET.Llvm.Interop.LlvmException -- uid: Ubiquity.NET.Llvm.IContext.ParseModule* - commentId: Overload:Ubiquity.NET.Llvm.IContext.ParseModule - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_ParseModule_Ubiquity_NET_InteropHelpers_LazyEncodedString_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - name: ParseModule - nameWithType: IContext.ParseModule - fullName: Ubiquity.NET.Llvm.IContext.ParseModule -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.IContext.GetMDKindId* - commentId: Overload:Ubiquity.NET.Llvm.IContext.GetMDKindId - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_GetMDKindId_System_String_ - name: GetMDKindId - nameWithType: IContext.GetMDKindId - fullName: Ubiquity.NET.Llvm.IContext.GetMDKindId -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - commentId: T:Ubiquity.NET.Llvm.ObjectFile.TargetBinary - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html - name: TargetBinary - nameWithType: TargetBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary -- uid: System.IO.IOException - commentId: T:System.IO.IOException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.io.ioexception - name: IOException - nameWithType: IOException - fullName: System.IO.IOException -- uid: Ubiquity.NET.Llvm.IContext.OpenBinary* - commentId: Overload:Ubiquity.NET.Llvm.IContext.OpenBinary - href: Ubiquity.NET.Llvm.IContext.html#Ubiquity_NET_Llvm_IContext_OpenBinary_System_String_ - name: OpenBinary - nameWithType: IContext.OpenBinary - fullName: Ubiquity.NET.Llvm.IContext.OpenBinary -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.html - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.IDataLayout.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.IDataLayout.yml deleted file mode 100644 index 4524c69f52..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.IDataLayout.yml +++ /dev/null @@ -1,1105 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.IDataLayout - commentId: T:Ubiquity.NET.Llvm.IDataLayout - id: IDataLayout - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - - Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - - Ubiquity.NET.Llvm.IDataLayout.Endianness - - Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - - Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - - Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - - Ubiquity.NET.Llvm.IDataLayout.PointerSize - - Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32) - - Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString - langs: - - csharp - - vb - name: IDataLayout - nameWithType: IDataLayout - fullName: Ubiquity.NET.Llvm.IDataLayout - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IDataLayout - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Provides access to LLVM target data layout information - remarks: >- -

There is a distinction between various sizes and alignment for a given type - - that are target dependent.

- -

The following table illustrates the differences in sizes and their meaning - for a sample set of types.

- | Type | SizeInBits | StoreSizeInBits | AbiSizeInBits | - - |---------|------------|-----------------|---------------| - - | i1 | 1 | 8 | 8 | - - | i8 | 8 | 8 | 8 | - - | i19 | 19 | 24 | 32 | - - | i32 | 32 | 32 | 32 | - - | i10 | 100 | 104 | 128 | - - | i128 | 128 | 128 | 128 | - - | Float | 32 | 32 | 32 | - - | Double | 64 | 64 | 64 | - - | X86_FP80| 80 | 80 | 96 | - - -
note

- - The allocation size depends on the alignment, and thus on the target. - - The values in the example table are for x86-32-linux. - -

- - | Property | Definition | - - |-----------------|------------| - - | SizeInBits | Minimum number of bits needed to represent the full range of values for the type | - - | StoreSizeInBits | Minimum number of bits needed to actually store a *single* value of the type | - - | AbiSizeInBits | Total number of bits used to store a value in a sequence, including any alignment padding | - - - The allocation size determines the total size of each entry in a sequence so that the "next" element is computed - - by adding the size to the start address of the current element. - example: [] - syntax: - content: public interface IDataLayout - content.vb: Public Interface IDataLayout -- uid: Ubiquity.NET.Llvm.IDataLayout.Endianness - commentId: P:Ubiquity.NET.Llvm.IDataLayout.Endianness - id: Endianness - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: Endianness - nameWithType: IDataLayout.Endianness - fullName: Ubiquity.NET.Llvm.IDataLayout.Endianness - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Endianness - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the byte ordering for this target - example: [] - syntax: - content: ByteOrdering Endianness { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ByteOrdering - content.vb: ReadOnly Property Endianness As ByteOrdering - overload: Ubiquity.NET.Llvm.IDataLayout.Endianness* -- uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PointerSize - id: PointerSize - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: PointerSize() - nameWithType: IDataLayout.PointerSize() - fullName: Ubiquity.NET.Llvm.IDataLayout.PointerSize() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerSize - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the size of a pointer for the default address space of the target - example: [] - syntax: - content: uint PointerSize() - return: - type: System.UInt32 - description: Size of a pointer to the default address space - content.vb: Function PointerSize() As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.PointerSize* -- uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PointerSize(System.UInt32) - id: PointerSize(System.UInt32) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: PointerSize(uint) - nameWithType: IDataLayout.PointerSize(uint) - fullName: Ubiquity.NET.Llvm.IDataLayout.PointerSize(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerSize - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the size of a pointer for a given address space of the target - example: [] - syntax: - content: uint PointerSize(uint addressSpace) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: System.UInt32 - description: Size of a pointer - content.vb: Function PointerSize(addressSpace As UInteger) As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.PointerSize* - nameWithType.vb: IDataLayout.PointerSize(UInteger) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.PointerSize(UInteger) - name.vb: PointerSize(UInteger) -- uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - id: IntPtrType(Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: IntPtrType(IContext) - nameWithType: IDataLayout.IntPtrType(IContext) - fullName: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntPtrType - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves an LLVM integer type with the same bit width as a pointer for the default address space of the target - example: [] - syntax: - content: ITypeRef IntPtrType(IContext context) - parameters: - - id: context - type: Ubiquity.NET.Llvm.IContext - description: LLVM that owns the definition of the pointer type to retrieve - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer type matching the bit width of a native pointer in the target's default address space - content.vb: Function IntPtrType(context As IContext) As ITypeRef - overload: Ubiquity.NET.Llvm.IDataLayout.IntPtrType* -- uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - id: IntPtrType(Ubiquity.NET.Llvm.IContext,System.UInt32) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: IntPtrType(IContext, uint) - nameWithType: IDataLayout.IntPtrType(IContext, uint) - fullName: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntPtrType - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: >- - Retrieves an LLVM integer type with the same bit width as - a pointer for the given address space of the target - example: [] - syntax: - content: ITypeRef IntPtrType(IContext context, uint addressSpace) - parameters: - - id: context - type: Ubiquity.NET.Llvm.IContext - description: LLVM that owns the definition of the pointer type to retrieve - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer type matching the bit width of a native pointer in the target's address space - content.vb: Function IntPtrType(context As IContext, addressSpace As UInteger) As ITypeRef - overload: Ubiquity.NET.Llvm.IDataLayout.IntPtrType* - nameWithType.vb: IDataLayout.IntPtrType(IContext, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.IntPtrType(Ubiquity.NET.Llvm.IContext, UInteger) - name.vb: IntPtrType(IContext, UInteger) -- uid: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: BitSizeOf(ITypeRef) - nameWithType: IDataLayout.BitSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitSizeOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 101 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Returns the number of bits necessary to hold the specified type. - remarks: >- -

This method determines the bit size of a type (e.g. the minimum number of - - bits required to represent any value of the given type.) This is distinct from the storage - - and stack size due to various target alignment requirements.

- example: [] - syntax: - content: ulong BitSizeOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to retrieve the size of - return: - type: System.UInt64 - description: Size of the type in bits - content.vb: Function BitSizeOf(typeRef As ITypeRef) As ULong - overload: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: StoreSizeOf(ITypeRef) - nameWithType: IDataLayout.StoreSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StoreSizeOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 112 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the number of bits required to store a value of the given type - remarks: >- - This method retrieves the storage size in bits of a given type. The storage size - includes any trailing padding bits that may be needed if the target requires reading a wider - word size. (e.g. most systems can't write a single bit value for an LLVM i1, thus the - storage size is whatever the minimum number of bits that the target requires to store a value - of the given type) - example: [] - syntax: - content: ulong StoreSizeOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to retrieve the storage size of - return: - type: System.UInt64 - description: Number of bits required to store a value of the given type in the target - content.vb: Function StoreSizeOf(typeRef As ITypeRef) As ULong - overload: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: AbiSizeOf(ITypeRef) - nameWithType: IDataLayout.AbiSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AbiSizeOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 121 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the ABI specified size of the given type - remarks: >- - Returns the offset in bytes between successive objects of the - - specified type, including alignment padding - example: [] - syntax: - content: ulong AbiSizeOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the size from - return: - type: System.UInt64 - description: Size of the type - content.vb: Function AbiSizeOf(typeRef As ITypeRef) As ULong - overload: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: AbiAlignmentOf(ITypeRef) - nameWithType: IDataLayout.AbiAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AbiAlignmentOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 126 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the ABI specified alignment, in bytes, for a specified type - example: [] - syntax: - content: uint AbiAlignmentOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the alignment for - return: - type: System.UInt32 - description: ABI specified alignment - content.vb: Function AbiAlignmentOf(typeRef As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: CallFrameAlignmentOf(ITypeRef) - nameWithType: IDataLayout.CallFrameAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallFrameAlignmentOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 131 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the call frame alignment for a given type - example: [] - syntax: - content: uint CallFrameAlignmentOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: type to get the alignment of - return: - type: System.UInt32 - description: Alignment for the type - content.vb: Function CallFrameAlignmentOf(typeRef As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: PreferredAlignmentOf(ITypeRef) - nameWithType: IDataLayout.PreferredAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreferredAlignmentOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 136 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the preferred alignment for an LLVM type - example: [] - syntax: - content: uint PreferredAlignmentOf(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the alignment of - return: - type: System.UInt32 - description: Preferred alignment - content.vb: Function PreferredAlignmentOf(typeRef As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - id: PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: PreferredAlignmentOf(Value) - nameWithType: IDataLayout.PreferredAlignmentOf(Value) - fullName: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreferredAlignmentOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 141 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the preferred alignment for a - example: [] - syntax: - content: uint PreferredAlignmentOf(Value value) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: Value to get the alignment of - return: - type: System.UInt32 - description: Preferred alignment - content.vb: Function PreferredAlignmentOf(value As Value) As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - id: ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType,System.UInt64) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: ElementAtOffset(IStructType, ulong) - nameWithType: IDataLayout.ElementAtOffset(IStructType, ulong) - fullName: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType, ulong) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ElementAtOffset - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 147 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the element index for a specific offset in a given structure - example: [] - syntax: - content: uint ElementAtOffset(IStructType structType, ulong offset) - parameters: - - id: structType - type: Ubiquity.NET.Llvm.Types.IStructType - description: Type of the structure - - id: offset - type: System.UInt64 - description: Offset to determine the index of - return: - type: System.UInt32 - description: Index of the element - content.vb: Function ElementAtOffset(structType As IStructType, offset As ULong) As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset* - nameWithType.vb: IDataLayout.ElementAtOffset(IStructType, ULong) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset(Ubiquity.NET.Llvm.Types.IStructType, ULong) - name.vb: ElementAtOffset(IStructType, ULong) -- uid: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - id: OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: OffsetOfElement(IStructType, uint) - nameWithType: IDataLayout.OffsetOfElement(IStructType, uint) - fullName: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OffsetOfElement - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 153 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the offset of an element in a structure - example: [] - syntax: - content: ulong OffsetOfElement(IStructType structType, uint element) - parameters: - - id: structType - type: Ubiquity.NET.Llvm.Types.IStructType - description: Type of the structure - - id: element - type: System.UInt32 - description: index of the element in the structure - return: - type: System.UInt64 - description: Offset of the element from the beginning of the structure - content.vb: Function OffsetOfElement(structType As IStructType, element As UInteger) As ULong - overload: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement* - nameWithType.vb: IDataLayout.OffsetOfElement(IStructType, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, UInteger) - name.vb: OffsetOfElement(IStructType, UInteger) -- uid: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString - commentId: M:Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString - id: ToLazyEncodedString - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: ToLazyEncodedString() - nameWithType: IDataLayout.ToLazyEncodedString() - fullName: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToLazyEncodedString - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 164 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the string representation of this data layout as a - remarks: >- - The returned retains a copy of the native code form of the string. - - This value is ONLY marshalled to a managed string when needed (and only once, it is cached). This - - behavior allows for lower overhead re-use of this string in additional APIs as NO marshalling - - needs to occur. This does have the overhead of making a copy of the strings contents as the - - lifetime of the underlying native string is generally unknown and thus not reliable. - example: [] - syntax: - content: LazyEncodedString ToLazyEncodedString() - return: - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Representation of the data layout - content.vb: Function ToLazyEncodedString() As LazyEncodedString - overload: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString* -- uid: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: ByteSizeOf(ITypeRef) - nameWithType: IDataLayout.ByteSizeOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ByteSizeOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 169 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the byte size of a type - example: [] - syntax: - content: ulong ByteSizeOf(ITypeRef llvmType) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to determine the size of - return: - type: System.UInt64 - description: Size of the type in bytes - content.vb: Function ByteSizeOf(llvmType As ITypeRef) As ULong - overload: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: PreferredBitAlignmentOf(ITypeRef) - nameWithType: IDataLayout.PreferredBitAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreferredBitAlignmentOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 174 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the preferred alignment of the type in bits - example: [] - syntax: - content: uint PreferredBitAlignmentOf(ITypeRef llvmType) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the alignment of - return: - type: System.UInt32 - description: Alignment of the type - content.vb: Function PreferredBitAlignmentOf(llvmType As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - id: AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: AbiBitAlignmentOf(ITypeRef) - nameWithType: IDataLayout.AbiBitAlignmentOf(ITypeRef) - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AbiBitAlignmentOf - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 179 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the ABI alignment of the type in bits - example: [] - syntax: - content: uint AbiBitAlignmentOf(ITypeRef llvmType) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to get the alignment of - return: - type: System.UInt32 - description: Alignment of the type - content.vb: Function AbiBitAlignmentOf(llvmType As ITypeRef) As UInteger - overload: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf* -- uid: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - id: BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType,System.UInt32) - parent: Ubiquity.NET.Llvm.IDataLayout - langs: - - csharp - - vb - name: BitOffsetOfElement(IStructType, uint) - nameWithType: IDataLayout.BitOffsetOfElement(IStructType, uint) - fullName: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IDataLayout.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitOffsetOfElement - path: ../src/Ubiquity.NET.Llvm/IDataLayout.cs - startLine: 185 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the offset of a structure element in bits - example: [] - syntax: - content: ulong BitOffsetOfElement(IStructType llvmType, uint element) - parameters: - - id: llvmType - type: Ubiquity.NET.Llvm.Types.IStructType - description: Structure type to get the element offset of - - id: element - type: System.UInt32 - description: Index of the element in the structure - return: - type: System.UInt64 - description: Offset of the element in bits - content.vb: Function BitOffsetOfElement(llvmType As IStructType, element As UInteger) As ULong - overload: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement* - nameWithType.vb: IDataLayout.BitOffsetOfElement(IStructType, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement(Ubiquity.NET.Llvm.Types.IStructType, UInteger) - name.vb: BitOffsetOfElement(IStructType, UInteger) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.IDataLayout.Endianness* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.Endianness - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_Endianness - name: Endianness - nameWithType: IDataLayout.Endianness - fullName: Ubiquity.NET.Llvm.IDataLayout.Endianness -- uid: Ubiquity.NET.Llvm.ByteOrdering - commentId: T:Ubiquity.NET.Llvm.ByteOrdering - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ByteOrdering.html - name: ByteOrdering - nameWithType: ByteOrdering - fullName: Ubiquity.NET.Llvm.ByteOrdering -- uid: Ubiquity.NET.Llvm.IDataLayout.PointerSize* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.PointerSize - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PointerSize - name: PointerSize - nameWithType: IDataLayout.PointerSize - fullName: Ubiquity.NET.Llvm.IDataLayout.PointerSize -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm.IDataLayout.IntPtrType* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.IntPtrType - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_IntPtrType_Ubiquity_NET_Llvm_IContext_ - name: IntPtrType - nameWithType: IDataLayout.IntPtrType - fullName: Ubiquity.NET.Llvm.IDataLayout.IntPtrType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.BitSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_BitSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: BitSizeOf - nameWithType: IDataLayout.BitSizeOf - fullName: Ubiquity.NET.Llvm.IDataLayout.BitSizeOf -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_StoreSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: StoreSizeOf - nameWithType: IDataLayout.StoreSizeOf - fullName: Ubiquity.NET.Llvm.IDataLayout.StoreSizeOf -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiSizeOf - nameWithType: IDataLayout.AbiSizeOf - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiSizeOf -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiAlignmentOf - nameWithType: IDataLayout.AbiAlignmentOf - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_CallFrameAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: CallFrameAlignmentOf - nameWithType: IDataLayout.CallFrameAlignmentOf - fullName: Ubiquity.NET.Llvm.IDataLayout.CallFrameAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: PreferredAlignmentOf - nameWithType: IDataLayout.PreferredAlignmentOf - fullName: Ubiquity.NET.Llvm.IDataLayout.PreferredAlignmentOf -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ElementAtOffset_Ubiquity_NET_Llvm_Types_IStructType_System_UInt64_ - name: ElementAtOffset - nameWithType: IDataLayout.ElementAtOffset - fullName: Ubiquity.NET.Llvm.IDataLayout.ElementAtOffset -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IStructType.html - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType -- uid: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_OffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - name: OffsetOfElement - nameWithType: IDataLayout.OffsetOfElement - fullName: Ubiquity.NET.Llvm.IDataLayout.OffsetOfElement -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ToLazyEncodedString - name: ToLazyEncodedString - nameWithType: IDataLayout.ToLazyEncodedString - fullName: Ubiquity.NET.Llvm.IDataLayout.ToLazyEncodedString -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_ByteSizeOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ByteSizeOf - nameWithType: IDataLayout.ByteSizeOf - fullName: Ubiquity.NET.Llvm.IDataLayout.ByteSizeOf -- uid: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_PreferredBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: PreferredBitAlignmentOf - nameWithType: IDataLayout.PreferredBitAlignmentOf - fullName: Ubiquity.NET.Llvm.IDataLayout.PreferredBitAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_AbiBitAlignmentOf_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AbiBitAlignmentOf - nameWithType: IDataLayout.AbiBitAlignmentOf - fullName: Ubiquity.NET.Llvm.IDataLayout.AbiBitAlignmentOf -- uid: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement* - commentId: Overload:Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement - href: Ubiquity.NET.Llvm.IDataLayout.html#Ubiquity_NET_Llvm_IDataLayout_BitOffsetOfElement_Ubiquity_NET_Llvm_Types_IStructType_System_UInt32_ - name: BitOffsetOfElement - nameWithType: IDataLayout.BitOffsetOfElement - fullName: Ubiquity.NET.Llvm.IDataLayout.BitOffsetOfElement diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.IDisassemblerCallbacks.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.IDisassemblerCallbacks.yml deleted file mode 100644 index 2c6a3f0225..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.IDisassemblerCallbacks.yml +++ /dev/null @@ -1,398 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks - commentId: T:Ubiquity.NET.Llvm.IDisassemblerCallbacks - id: IDisassemblerCallbacks - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr) - - Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@) - langs: - - csharp - - vb - name: IDisassemblerCallbacks - nameWithType: IDisassemblerCallbacks - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IDisassemblerCallbacks - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Interface for disassembler callbacks - remarks: >- - Exact use and purpose of this interface is not well documented in LLVM and it's use - - is therefore classified as "experimental". Key is the parameter and return types. - - LLVM headers use byte* and it isn't clear if it is a "blob", string or what? Nor, - - does it say anything about lifetime or ownership of the data they point to... (This - - is mostly in regards to the parameters and return of - - but also applies to the `TagBuf` parameter of - example: [] - syntax: - content: public interface IDisassemblerCallbacks - content.vb: Public Interface IDisassemblerCallbacks -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr) - commentId: M:Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr) - id: OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr) - parent: Ubiquity.NET.Llvm.IDisassemblerCallbacks - langs: - - csharp - - vb - name: OpInfo(ulong, ulong, ulong, ulong, int, nint) - nameWithType: IDisassemblerCallbacks.OpInfo(ulong, ulong, ulong, ulong, int, nint) - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(ulong, ulong, ulong, ulong, int, nint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpInfo - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Purpose not fully known or well explained in LLVM docs - example: [] - syntax: - content: int OpInfo(ulong PC, ulong Offset, ulong OpSize, ulong InstSize, int TagType, nint TagBuf) - parameters: - - id: PC - type: System.UInt64 - description: Program counter - - id: Offset - type: System.UInt64 - description: offset [Of what? Relative to what?] - - id: OpSize - type: System.UInt64 - description: OpSize [Not entirely clear what an "op" is or how a size matters] - - id: InstSize - type: System.UInt64 - description: Instruction size [Also not clear why this matters or what an implementation should do about it] - - id: TagType - type: System.Int32 - description: 'Tag type [Best guess: discriminator type for the opaque buffer]' - - id: TagBuf - type: System.IntPtr - description: Raw pointer to the buffer. [It is currently assumed this is readonly and the size and shape are determined by TagType] - return: - type: System.Int32 - description: Unknown - content.vb: Function OpInfo(PC As ULong, Offset As ULong, OpSize As ULong, InstSize As ULong, TagType As Integer, TagBuf As IntPtr) As Integer - overload: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo* - nameWithType.vb: IDisassemblerCallbacks.OpInfo(ULong, ULong, ULong, ULong, Integer, IntPtr) - fullName.vb: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(ULong, ULong, ULong, ULong, Integer, System.IntPtr) - name.vb: OpInfo(ULong, ULong, ULong, ULong, Integer, IntPtr) -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@) - commentId: M:Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@) - id: SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@) - parent: Ubiquity.NET.Llvm.IDisassemblerCallbacks - langs: - - csharp - - vb - name: SymbolLookup(ulong, ref ulong, ulong, out string?) - nameWithType: IDisassemblerCallbacks.SymbolLookup(ulong, ref ulong, ulong, out string?) - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(ulong, ref ulong, ulong, out string?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/DisAssembler.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SymbolLookup - path: ../src/Ubiquity.NET.Llvm/DisAssembler.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs symbol lookup for the disassembler - example: [] - syntax: - content: string? SymbolLookup(ulong referenceValue, ref ulong referenceType, ulong referencePC, out string? ReferenceName) - parameters: - - id: referenceValue - type: System.UInt64 - description: referenceValue [Unknown what this is in "reference" to] - - id: referenceType - type: System.UInt64 - description: referenceType [Unknown what this is in "reference" to or why an implementation might need/want to change this] - - id: referencePC - type: System.UInt64 - description: Unknown but assumed to relate to a program counter - - id: ReferenceName - type: System.String - description: Completely unknown. [Is this really an OUT string or an IN array?] - return: - type: System.String - description: Unknown - content.vb: Function SymbolLookup(referenceValue As ULong, referenceType As ULong, referencePC As ULong, ReferenceName As String) As String - overload: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup* - nameWithType.vb: IDisassemblerCallbacks.SymbolLookup(ULong, ULong, ULong, String) - fullName.vb: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(ULong, ULong, ULong, String) - name.vb: SymbolLookup(ULong, ULong, ULong, String) -references: -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@) - commentId: M:Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@) - isExternal: true - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html#Ubiquity_NET_Llvm_IDisassemblerCallbacks_SymbolLookup_System_UInt64_System_UInt64__System_UInt64_System_String__ - name: SymbolLookup(ulong, ref ulong, ulong, out string) - nameWithType: IDisassemblerCallbacks.SymbolLookup(ulong, ref ulong, ulong, out string) - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(ulong, ref ulong, ulong, out string) - nameWithType.vb: IDisassemblerCallbacks.SymbolLookup(ULong, ULong, ULong, String) - fullName.vb: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(ULong, ULong, ULong, String) - name.vb: SymbolLookup(ULong, ULong, ULong, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@) - name: SymbolLookup - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html#Ubiquity_NET_Llvm_IDisassemblerCallbacks_SymbolLookup_System_UInt64_System_UInt64__System_UInt64_System_String__ - - name: ( - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - name: ref - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup(System.UInt64,System.UInt64@,System.UInt64,System.String@) - name: SymbolLookup - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html#Ubiquity_NET_Llvm_IDisassemblerCallbacks_SymbolLookup_System_UInt64_System_UInt64__System_UInt64_System_String__ - - name: ( - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.IntPtr - commentId: T:System.IntPtr - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - name: nint - nameWithType: nint - fullName: nint - nameWithType.vb: IntPtr - fullName.vb: System.IntPtr - name.vb: IntPtr -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr) - commentId: M:Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr) - isExternal: true - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html#Ubiquity_NET_Llvm_IDisassemblerCallbacks_OpInfo_System_UInt64_System_UInt64_System_UInt64_System_UInt64_System_Int32_System_IntPtr_ - name: OpInfo(ulong, ulong, ulong, ulong, int, nint) - nameWithType: IDisassemblerCallbacks.OpInfo(ulong, ulong, ulong, ulong, int, nint) - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(ulong, ulong, ulong, ulong, int, nint) - nameWithType.vb: IDisassemblerCallbacks.OpInfo(ULong, ULong, ULong, ULong, Integer, IntPtr) - fullName.vb: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(ULong, ULong, ULong, ULong, Integer, System.IntPtr) - name.vb: OpInfo(ULong, ULong, ULong, ULong, Integer, IntPtr) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr) - name: OpInfo - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html#Ubiquity_NET_Llvm_IDisassemblerCallbacks_OpInfo_System_UInt64_System_UInt64_System_UInt64_System_UInt64_System_Int32_System_IntPtr_ - - name: ( - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ulong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: nint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.Int32,System.IntPtr) - name: OpInfo - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html#Ubiquity_NET_Llvm_IDisassemblerCallbacks_OpInfo_System_UInt64_System_UInt64_System_UInt64_System_UInt64_System_Int32_System_IntPtr_ - - name: ( - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.UInt64 - name: ULong - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.IntPtr - name: IntPtr - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.intptr - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo* - commentId: Overload:Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html#Ubiquity_NET_Llvm_IDisassemblerCallbacks_OpInfo_System_UInt64_System_UInt64_System_UInt64_System_UInt64_System_Int32_System_IntPtr_ - name: OpInfo - nameWithType: IDisassemblerCallbacks.OpInfo - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks.OpInfo -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup* - commentId: Overload:Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html#Ubiquity_NET_Llvm_IDisassemblerCallbacks_SymbolLookup_System_UInt64_System_UInt64__System_UInt64_System_String__ - name: SymbolLookup - nameWithType: IDisassemblerCallbacks.SymbolLookup - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks.SymbolLookup -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ILibLlvm.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ILibLlvm.yml deleted file mode 100644 index 29d1e2dc47..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ILibLlvm.yml +++ /dev/null @@ -1,168 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ILibLlvm - commentId: T:Ubiquity.NET.Llvm.ILibLlvm - id: ILibLlvm - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - langs: - - csharp - - vb - name: ILibLlvm - nameWithType: ILibLlvm - fullName: Ubiquity.NET.Llvm.ILibLlvm - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ILibLlvm - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 109 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Interface to the core LLVM library itself - remarks: >- - When this instance is disposed the LLVM libraries are no longer usable in the process - -
important

- - It is important to note that the LLVM library does NOT currently support re-initialization in - - the same process. Therefore, it is recommended that initialization is done once at process startup - - and then the resulting interface disposed just before the process exits. - -

- example: [] - syntax: - content: 'public interface ILibLlvm : IDisposable' - content.vb: Public Interface ILibLlvm Inherits IDisposable - inheritedMembers: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - commentId: M:Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - id: RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - parent: Ubiquity.NET.Llvm.ILibLlvm - langs: - - csharp - - vb - name: RegisterTarget(CodeGenTarget, TargetRegistration) - nameWithType: ILibLlvm.RegisterTarget(CodeGenTarget, TargetRegistration) - fullName: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget, Ubiquity.NET.Llvm.TargetRegistration) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RegisterTarget - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 115 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Registers components for ARM AArch64 target(s) - example: [] - syntax: - content: void RegisterTarget(CodeGenTarget target, TargetRegistration registrations = TargetRegistration.All) - parameters: - - id: target - type: Ubiquity.NET.Llvm.CodeGenTarget - description: Target architecture to register/initialize - - id: registrations - type: Ubiquity.NET.Llvm.TargetRegistration - description: Flags indicating which components to register/enable - content.vb: Sub RegisterTarget(target As CodeGenTarget, registrations As TargetRegistration = TargetRegistration.All) - overload: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget* -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget* - commentId: Overload:Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget - href: Ubiquity.NET.Llvm.ILibLlvm.html#Ubiquity_NET_Llvm_ILibLlvm_RegisterTarget_Ubiquity_NET_Llvm_CodeGenTarget_Ubiquity_NET_Llvm_TargetRegistration_ - name: RegisterTarget - nameWithType: ILibLlvm.RegisterTarget - fullName: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget -- uid: Ubiquity.NET.Llvm.CodeGenTarget - commentId: T:Ubiquity.NET.Llvm.CodeGenTarget - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenTarget.html - name: CodeGenTarget - nameWithType: CodeGenTarget - fullName: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.TargetRegistration - commentId: T:Ubiquity.NET.Llvm.TargetRegistration - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetRegistration.html - name: TargetRegistration - nameWithType: TargetRegistration - fullName: Ubiquity.NET.Llvm.TargetRegistration diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.IModule.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.IModule.yml deleted file mode 100644 index d4cd0ba653..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.IModule.yml +++ /dev/null @@ -1,3404 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - id: IModule - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - - Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - - Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - - Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - - Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - - Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - - Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - - Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - - Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String) - - Ubiquity.NET.Llvm.IModule.Aliases - - Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String) - - Ubiquity.NET.Llvm.IModule.Clone - - Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - - Ubiquity.NET.Llvm.IModule.Comdats - - Ubiquity.NET.Llvm.IModule.CompileUnits - - Ubiquity.NET.Llvm.IModule.Context - - Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - - Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - - Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - - Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - - Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - - Ubiquity.NET.Llvm.IModule.DataLayoutString - - Ubiquity.NET.Llvm.IModule.Functions - - Ubiquity.NET.Llvm.IModule.GetAlias(System.String) - - Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - - Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - - Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String) - - Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String) - - Ubiquity.NET.Llvm.IModule.Globals - - Ubiquity.NET.Llvm.IModule.IndirectFunctions - - Ubiquity.NET.Llvm.IModule.Layout - - Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - - Ubiquity.NET.Llvm.IModule.ModuleFlags - - Ubiquity.NET.Llvm.IModule.ModuleInlineAsm - - Ubiquity.NET.Llvm.IModule.Name - - Ubiquity.NET.Llvm.IModule.NamedMetadata - - Ubiquity.NET.Llvm.IModule.SourceFileName - - Ubiquity.NET.Llvm.IModule.TargetTriple - - Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - - Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - - Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[]) - - Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - - Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - - Ubiquity.NET.Llvm.IModule.Verify(System.String@) - - Ubiquity.NET.Llvm.IModule.WriteToBuffer - - Ubiquity.NET.Llvm.IModule.WriteToFile(System.String) - - Ubiquity.NET.Llvm.IModule.WriteToString - - Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@) - langs: - - csharp - - vb - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IModule - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Interface for an LLVM bitcode module - remarks: >- - This interface is used for ALL modules owned/unowned when a module is owned - - and the app must dispose it a instance is provided. That - - type implements this interface AND the standard - - interface as the caller is responsible for disposal of the instance. When - - this interface is returned the caller does not own the implementation and - - cannot dispose of it. (Generally only methods that act as a factory for a - - module will provide a concreate instance that the - - caller owns. Others are references to a module owned by the container) - example: [] - syntax: - content: public interface IModule - content.vb: Public Interface IModule -- uid: Ubiquity.NET.Llvm.IModule.SourceFileName - commentId: P:Ubiquity.NET.Llvm.IModule.SourceFileName - id: SourceFileName - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: SourceFileName - nameWithType: IModule.SourceFileName - fullName: Ubiquity.NET.Llvm.IModule.SourceFileName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SourceFileName - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the name of the source file generating this module - example: [] - syntax: - content: string SourceFileName { get; set; } - parameters: [] - return: - type: System.String - content.vb: Property SourceFileName As String - overload: Ubiquity.NET.Llvm.IModule.SourceFileName* -- uid: Ubiquity.NET.Llvm.IModule.Comdats - commentId: P:Ubiquity.NET.Llvm.IModule.Comdats - id: Comdats - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Comdats - nameWithType: IModule.Comdats - fullName: Ubiquity.NET.Llvm.IModule.Comdats - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Comdats - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the Comdats for this module - example: [] - syntax: - content: ComdatCollection Comdats { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ComdatCollection - content.vb: ReadOnly Property Comdats As ComdatCollection - overload: Ubiquity.NET.Llvm.IModule.Comdats* -- uid: Ubiquity.NET.Llvm.IModule.Context - commentId: P:Ubiquity.NET.Llvm.IModule.Context - id: Context - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Context - nameWithType: IModule.Context - fullName: Ubiquity.NET.Llvm.IModule.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the this module belongs to - example: [] - syntax: - content: IContext Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.IModule.Context* -- uid: Ubiquity.NET.Llvm.IModule.ModuleFlags - commentId: P:Ubiquity.NET.Llvm.IModule.ModuleFlags - id: ModuleFlags - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: ModuleFlags - nameWithType: IModule.ModuleFlags - fullName: Ubiquity.NET.Llvm.IModule.ModuleFlags - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ModuleFlags - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the IrMetadata for module level flags - example: [] - syntax: - content: IReadOnlyDictionary ModuleFlags { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyDictionary{System.String,Ubiquity.NET.Llvm.Metadata.ModuleFlag} - content.vb: ReadOnly Property ModuleFlags As IReadOnlyDictionary(Of String, ModuleFlag) - overload: Ubiquity.NET.Llvm.IModule.ModuleFlags* -- uid: Ubiquity.NET.Llvm.IModule.CompileUnits - commentId: P:Ubiquity.NET.Llvm.IModule.CompileUnits - id: CompileUnits - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: CompileUnits - nameWithType: IModule.CompileUnits - fullName: Ubiquity.NET.Llvm.IModule.CompileUnits - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CompileUnits - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the Debug Compile units for this module - example: [] - syntax: - content: IEnumerable CompileUnits { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DICompileUnit} - content.vb: ReadOnly Property CompileUnits As IEnumerable(Of DICompileUnit) - overload: Ubiquity.NET.Llvm.IModule.CompileUnits* -- uid: Ubiquity.NET.Llvm.IModule.DataLayoutString - commentId: P:Ubiquity.NET.Llvm.IModule.DataLayoutString - id: DataLayoutString - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: DataLayoutString - nameWithType: IModule.DataLayoutString - fullName: Ubiquity.NET.Llvm.IModule.DataLayoutString - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DataLayoutString - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets the Data layout string for this module - remarks: >- -
note

The data layout string doesn't do what seems obvious. - - That is, it doesn't force the target back-end to generate code - - or types with a particular layout. Rather, the layout string has - - to match the implicit layout of the target. Thus it should only - - come from the actual the code is - - targeting.

- example: [] - syntax: - content: LazyEncodedString DataLayoutString { get; set; } - parameters: [] - return: - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - content.vb: Property DataLayoutString As LazyEncodedString - overload: Ubiquity.NET.Llvm.IModule.DataLayoutString* -- uid: Ubiquity.NET.Llvm.IModule.Layout - commentId: P:Ubiquity.NET.Llvm.IModule.Layout - id: Layout - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Layout - nameWithType: IModule.Layout - fullName: Ubiquity.NET.Llvm.IModule.Layout - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Layout - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the target data layout for this module - remarks: >- - The setter uses a by value copy where the input value is serialized to - - a string and then set via . That is, even - - if the implementation of is for an - - type no ownership transfer occurs. - example: [] - syntax: - content: IDataLayout Layout { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IDataLayout - content.vb: Property Layout As IDataLayout - overload: Ubiquity.NET.Llvm.IModule.Layout* -- uid: Ubiquity.NET.Llvm.IModule.TargetTriple - commentId: P:Ubiquity.NET.Llvm.IModule.TargetTriple - id: TargetTriple - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: TargetTriple - nameWithType: IModule.TargetTriple - fullName: Ubiquity.NET.Llvm.IModule.TargetTriple - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetTriple - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 65 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the Target Triple describing the target, ABI and OS - example: [] - syntax: - content: string TargetTriple { get; set; } - parameters: [] - return: - type: System.String - content.vb: Property TargetTriple As String - overload: Ubiquity.NET.Llvm.IModule.TargetTriple* -- uid: Ubiquity.NET.Llvm.IModule.Globals - commentId: P:Ubiquity.NET.Llvm.IModule.Globals - id: Globals - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Globals - nameWithType: IModule.Globals - fullName: Ubiquity.NET.Llvm.IModule.Globals - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Globals - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 68 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the s contained by this module - example: [] - syntax: - content: IEnumerable Globals { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalVariable} - content.vb: ReadOnly Property Globals As IEnumerable(Of GlobalVariable) - overload: Ubiquity.NET.Llvm.IModule.Globals* -- uid: Ubiquity.NET.Llvm.IModule.Functions - commentId: P:Ubiquity.NET.Llvm.IModule.Functions - id: Functions - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Functions - nameWithType: IModule.Functions - fullName: Ubiquity.NET.Llvm.IModule.Functions - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Functions - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 71 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the functions contained in this module - example: [] - syntax: - content: IEnumerable Functions { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Function} - content.vb: ReadOnly Property Functions As IEnumerable(Of [Function]) - overload: Ubiquity.NET.Llvm.IModule.Functions* -- uid: Ubiquity.NET.Llvm.IModule.Aliases - commentId: P:Ubiquity.NET.Llvm.IModule.Aliases - id: Aliases - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Aliases - nameWithType: IModule.Aliases - fullName: Ubiquity.NET.Llvm.IModule.Aliases - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Aliases - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 74 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the global aliases in this module - example: [] - syntax: - content: IEnumerable Aliases { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalAlias} - content.vb: ReadOnly Property Aliases As IEnumerable(Of GlobalAlias) - overload: Ubiquity.NET.Llvm.IModule.Aliases* -- uid: Ubiquity.NET.Llvm.IModule.NamedMetadata - commentId: P:Ubiquity.NET.Llvm.IModule.NamedMetadata - id: NamedMetadata - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: NamedMetadata - nameWithType: IModule.NamedMetadata - fullName: Ubiquity.NET.Llvm.IModule.NamedMetadata - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NamedMetadata - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 77 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the s for this module - example: [] - syntax: - content: IEnumerable NamedMetadata { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.NamedMDNode} - content.vb: ReadOnly Property NamedMetadata As IEnumerable(Of NamedMDNode) - overload: Ubiquity.NET.Llvm.IModule.NamedMetadata* -- uid: Ubiquity.NET.Llvm.IModule.IndirectFunctions - commentId: P:Ubiquity.NET.Llvm.IModule.IndirectFunctions - id: IndirectFunctions - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: IndirectFunctions - nameWithType: IModule.IndirectFunctions - fullName: Ubiquity.NET.Llvm.IModule.IndirectFunctions - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IndirectFunctions - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 80 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the s in this module - example: [] - syntax: - content: IEnumerable IndirectFunctions { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalIFunc} - content.vb: ReadOnly Property IndirectFunctions As IEnumerable(Of GlobalIFunc) - overload: Ubiquity.NET.Llvm.IModule.IndirectFunctions* -- uid: Ubiquity.NET.Llvm.IModule.Name - commentId: P:Ubiquity.NET.Llvm.IModule.Name - id: Name - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Name - nameWithType: IModule.Name - fullName: Ubiquity.NET.Llvm.IModule.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 83 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the name of the module - example: [] - syntax: - content: string Name { get; } - parameters: [] - return: - type: System.String - content.vb: ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.IModule.Name* -- uid: Ubiquity.NET.Llvm.IModule.ModuleInlineAsm - commentId: P:Ubiquity.NET.Llvm.IModule.ModuleInlineAsm - id: ModuleInlineAsm - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: ModuleInlineAsm - nameWithType: IModule.ModuleInlineAsm - fullName: Ubiquity.NET.Llvm.IModule.ModuleInlineAsm - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ModuleInlineAsm - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 86 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the module level inline assembly - example: [] - syntax: - content: string ModuleInlineAsm { get; set; } - parameters: [] - return: - type: System.String - content.vb: Property ModuleInlineAsm As String - overload: Ubiquity.NET.Llvm.IModule.ModuleInlineAsm* -- uid: Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String) - id: AppendInlineAsm(System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AppendInlineAsm(string) - nameWithType: IModule.AppendInlineAsm(string) - fullName: Ubiquity.NET.Llvm.IModule.AppendInlineAsm(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AppendInlineAsm - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 90 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Appends inline assembly to the module's inline assembly - example: [] - syntax: - content: void AppendInlineAsm(string asm) - parameters: - - id: asm - type: System.String - description: assembly text - content.vb: Sub AppendInlineAsm(asm As String) - overload: Ubiquity.NET.Llvm.IModule.AppendInlineAsm* - nameWithType.vb: IModule.AppendInlineAsm(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AppendInlineAsm(String) - name.vb: AppendInlineAsm(String) -- uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[]) - commentId: M:Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[]) - id: TryRunPasses(System.String[]) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: TryRunPasses(params string[]) - nameWithType: IModule.TryRunPasses(params string[]) - fullName: Ubiquity.NET.Llvm.IModule.TryRunPasses(params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 105 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this module. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: ErrorInfo TryRunPasses(params string[] passes) - parameters: - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Function TryRunPasses(ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.IModule.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - nameWithType.vb: IModule.TryRunPasses(ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryRunPasses(ParamArray String()) - name.vb: TryRunPasses(ParamArray String()) -- uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - commentId: M:Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - id: TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: TryRunPasses(PassBuilderOptions, params string[]) - nameWithType: IModule.TryRunPasses(PassBuilderOptions, params string[]) - fullName: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions, params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 109 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this module. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: ErrorInfo TryRunPasses(PassBuilderOptions options, params string[] passes) - parameters: - - id: options - type: Ubiquity.NET.Llvm.PassBuilderOptions - description: Options for the passes - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Function TryRunPasses(options As PassBuilderOptions, ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.IModule.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - nameWithType.vb: IModule.TryRunPasses(PassBuilderOptions, ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions, ParamArray String()) - name.vb: TryRunPasses(PassBuilderOptions, ParamArray String()) -- uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - commentId: M:Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - id: TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: TryRunPasses(TargetMachine, PassBuilderOptions, params string[]) - nameWithType: IModule.TryRunPasses(TargetMachine, PassBuilderOptions, params string[]) - fullName: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine, Ubiquity.NET.Llvm.PassBuilderOptions, params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 114 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this module. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: ErrorInfo TryRunPasses(TargetMachine targetMachine, PassBuilderOptions options, params string[] passes) - parameters: - - id: targetMachine - type: Ubiquity.NET.Llvm.TargetMachine - description: Target machine for the passes - - id: options - type: Ubiquity.NET.Llvm.PassBuilderOptions - description: Options for the passes - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Function TryRunPasses(targetMachine As TargetMachine, options As PassBuilderOptions, ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.IModule.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - nameWithType.vb: IModule.TryRunPasses(TargetMachine, PassBuilderOptions, ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine, Ubiquity.NET.Llvm.PassBuilderOptions, ParamArray String()) - name.vb: TryRunPasses(TargetMachine, PassBuilderOptions, ParamArray String()) -- uid: Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - id: Link(Ubiquity.NET.Llvm.Module) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Link(Module) - nameWithType: IModule.Link(Module) - fullName: Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Link - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 124 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Link another module into this one - remarks: >- -
warning

- - srcModule is destroyed by this process and no longer usable - - when this method returns. - -

- example: [] - syntax: - content: void Link(Module srcModule) - parameters: - - id: srcModule - type: Ubiquity.NET.Llvm.Module - description: module to link into this one - content.vb: Sub Link(srcModule As [Module]) - overload: Ubiquity.NET.Llvm.IModule.Link* -- uid: Ubiquity.NET.Llvm.IModule.Verify(System.String@) - commentId: M:Ubiquity.NET.Llvm.IModule.Verify(System.String@) - id: Verify(System.String@) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Verify(out string) - nameWithType: IModule.Verify(out string) - fullName: Ubiquity.NET.Llvm.IModule.Verify(out string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Verify - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Verifies a bit-code module - example: [] - syntax: - content: bool Verify(out string errorMessage) - parameters: - - id: errorMessage - type: System.String - description: Error messages describing any issues found in the bit-code. Empty string if no error - return: - type: System.Boolean - description: true if the verification succeeded and false if not. - content.vb: Function Verify(errorMessage As String) As Boolean - overload: Ubiquity.NET.Llvm.IModule.Verify* - nameWithType.vb: IModule.Verify(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.Verify(String) - name.vb: Verify(String) -- uid: Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - commentId: M:Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - id: TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: TryGetFunction(string, out Function) - nameWithType: IModule.TryGetFunction(string, out Function) - fullName: Ubiquity.NET.Llvm.IModule.TryGetFunction(string, out Ubiquity.NET.Llvm.Values.Function) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryGetFunction - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 135 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Looks up a function in the module by name - example: [] - syntax: - content: bool TryGetFunction(string name, out Function function) - parameters: - - id: name - type: System.String - description: Name of the function - - id: function - type: Ubiquity.NET.Llvm.Values.Function - description: The function or null if not found - return: - type: System.Boolean - description: true if the function was found or false if not - content.vb: Function TryGetFunction(name As String, [function] As [Function]) As Boolean - overload: Ubiquity.NET.Llvm.IModule.TryGetFunction* - nameWithType.vb: IModule.TryGetFunction(String, Function) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryGetFunction(String, Ubiquity.NET.Llvm.Values.Function) - name.vb: TryGetFunction(String, Function) -- uid: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - id: CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: CreateAndAddGlobalIFunc(string, ITypeRef, uint, Function) - nameWithType: IModule.CreateAndAddGlobalIFunc(string, ITypeRef, uint, Function) - fullName: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(string, Ubiquity.NET.Llvm.Types.ITypeRef, uint, Ubiquity.NET.Llvm.Values.Function) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAndAddGlobalIFunc - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 143 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create and add a global indirect function - example: [] - syntax: - content: GlobalIFunc CreateAndAddGlobalIFunc(string name, ITypeRef type, uint addressSpace, Function resolver) - parameters: - - id: name - type: System.String - description: Name of the function - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Signature of the function - - id: addressSpace - type: System.UInt32 - description: Address space for the indirect function - - id: resolver - type: Ubiquity.NET.Llvm.Values.Function - description: Resolver for the indirect function - return: - type: Ubiquity.NET.Llvm.Values.GlobalIFunc - description: New - content.vb: Function CreateAndAddGlobalIFunc(name As String, type As ITypeRef, addressSpace As UInteger, resolver As [Function]) As GlobalIFunc - overload: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc* - nameWithType.vb: IModule.CreateAndAddGlobalIFunc(String, ITypeRef, UInteger, Function) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(String, Ubiquity.NET.Llvm.Types.ITypeRef, UInteger, Ubiquity.NET.Llvm.Values.Function) - name.vb: CreateAndAddGlobalIFunc(String, ITypeRef, UInteger, Function) -- uid: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - commentId: M:Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - id: TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: TryGetNamedGlobalIFunc(string, out GlobalIFunc) - nameWithType: IModule.TryGetNamedGlobalIFunc(string, out GlobalIFunc) - fullName: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(string, out Ubiquity.NET.Llvm.Values.GlobalIFunc) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryGetNamedGlobalIFunc - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 149 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get a named Global Indirect function in the module - example: [] - syntax: - content: bool TryGetNamedGlobalIFunc(string name, out GlobalIFunc function) - parameters: - - id: name - type: System.String - description: Name of the ifunc to find - - id: function - type: Ubiquity.NET.Llvm.Values.GlobalIFunc - description: Function or null if not found - return: - type: System.Boolean - description: true if the function was found or false if not - content.vb: Function TryGetNamedGlobalIFunc(name As String, [function] As GlobalIFunc) As Boolean - overload: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc* - nameWithType.vb: IModule.TryGetNamedGlobalIFunc(String, GlobalIFunc) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(String, Ubiquity.NET.Llvm.Values.GlobalIFunc) - name.vb: TryGetNamedGlobalIFunc(String, GlobalIFunc) -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - id: CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: CreateFunction(string, IFunctionType) - nameWithType: IModule.CreateFunction(string, IFunctionType) - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction(string, Ubiquity.NET.Llvm.Types.IFunctionType) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 161 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets an existing function with the specified signature to the module or creates a new one if it doesn't exist - remarks: >- - If a matching function already exists it is returned, and therefore the returned - - may have a body and additional attributes. If a function of - - the same name exists with a different signature an exception is thrown as LLVM does - - not perform any function overloading. - example: [] - syntax: - content: Function CreateFunction(string name, IFunctionType signature) - parameters: - - id: name - type: System.String - description: Name of the function to add - - id: signature - type: Ubiquity.NET.Llvm.Types.IFunctionType - description: Signature of the function - return: - type: Ubiquity.NET.Llvm.Values.Function - description: matching the specified signature and name - content.vb: Function CreateFunction(name As String, signature As IFunctionType) As [Function] - overload: Ubiquity.NET.Llvm.IModule.CreateFunction* - nameWithType.vb: IModule.CreateFunction(String, IFunctionType) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateFunction(String, Ubiquity.NET.Llvm.Types.IFunctionType) - name.vb: CreateFunction(String, IFunctionType) -- uid: Ubiquity.NET.Llvm.IModule.WriteToFile(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.WriteToFile(System.String) - id: WriteToFile(System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: WriteToFile(string) - nameWithType: IModule.WriteToFile(string) - fullName: Ubiquity.NET.Llvm.IModule.WriteToFile(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteToFile - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 170 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Writes a bit-code module to a file - remarks: >- - This is a blind write. (e.g. no verification is performed) - - So if an invalid module is saved it might not work with any - - later stage processing tools. - example: [] - syntax: - content: void WriteToFile(string path) - parameters: - - id: path - type: System.String - description: Path to write the bit-code into - content.vb: Sub WriteToFile(path As String) - overload: Ubiquity.NET.Llvm.IModule.WriteToFile* - nameWithType.vb: IModule.WriteToFile(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.WriteToFile(String) - name.vb: WriteToFile(String) -- uid: Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@) - commentId: M:Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@) - id: WriteToTextFile(System.String,System.String@) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: WriteToTextFile(string, out string) - nameWithType: IModule.WriteToTextFile(string, out string) - fullName: Ubiquity.NET.Llvm.IModule.WriteToTextFile(string, out string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteToTextFile - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 176 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Writes this module as LLVM IR source to a file - example: [] - syntax: - content: bool WriteToTextFile(string path, out string errMsg) - parameters: - - id: path - type: System.String - description: File to write the LLVM IR source to - - id: errMsg - type: System.String - description: Error messages encountered, if any - return: - type: System.Boolean - description: true if successful or false if not - content.vb: Function WriteToTextFile(path As String, errMsg As String) As Boolean - overload: Ubiquity.NET.Llvm.IModule.WriteToTextFile* - nameWithType.vb: IModule.WriteToTextFile(String, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.WriteToTextFile(String, String) - name.vb: WriteToTextFile(String, String) -- uid: Ubiquity.NET.Llvm.IModule.WriteToString - commentId: M:Ubiquity.NET.Llvm.IModule.WriteToString - id: WriteToString - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: WriteToString() - nameWithType: IModule.WriteToString() - fullName: Ubiquity.NET.Llvm.IModule.WriteToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteToString - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 188 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a string representation of the module - remarks: >- - This is intentionally NOT an override of ToString() as that is - - used by debuggers to show the value of a type and this can take - - an extremely long time (up to many seconds depending on complexity - - of the module) which is usually bad for the debugger. If you need - - to see the contents of the IR for a module you can use this method - - in the immediate or watch windows. - example: [] - syntax: - content: string? WriteToString() - return: - type: System.String - description: LLVM textual representation of the module - content.vb: Function WriteToString() As String - overload: Ubiquity.NET.Llvm.IModule.WriteToString* -- uid: Ubiquity.NET.Llvm.IModule.WriteToBuffer - commentId: M:Ubiquity.NET.Llvm.IModule.WriteToBuffer - id: WriteToBuffer - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: WriteToBuffer() - nameWithType: IModule.WriteToBuffer() - fullName: Ubiquity.NET.Llvm.IModule.WriteToBuffer() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteToBuffer - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 192 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Writes the LLVM IR bit code into a memory buffer - example: [] - syntax: - content: MemoryBuffer WriteToBuffer() - return: - type: Ubiquity.NET.Llvm.MemoryBuffer - description: containing the bit code module - content.vb: Function WriteToBuffer() As MemoryBuffer - overload: Ubiquity.NET.Llvm.IModule.WriteToBuffer* -- uid: Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - id: AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddAlias(Value, string, uint) - nameWithType: IModule.AddAlias(Value, string, uint) - fullName: Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value, string, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAlias - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 199 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Add an alias to the module - example: [] - syntax: - content: GlobalAlias AddAlias(Value aliasee, string aliasName, uint addressSpace = 0) - parameters: - - id: aliasee - type: Ubiquity.NET.Llvm.Values.Value - description: Value being aliased - - id: aliasName - type: System.String - description: Name of the alias - - id: addressSpace - type: System.UInt32 - description: 'Address space for the alias [Default: 0]' - return: - type: Ubiquity.NET.Llvm.Values.GlobalAlias - description: for the alias - content.vb: Function AddAlias(aliasee As Value, aliasName As String, addressSpace As UInteger = 0) As GlobalAlias - overload: Ubiquity.NET.Llvm.IModule.AddAlias* - nameWithType.vb: IModule.AddAlias(Value, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value, String, UInteger) - name.vb: AddAlias(Value, String, UInteger) -- uid: Ubiquity.NET.Llvm.IModule.GetAlias(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.GetAlias(System.String) - id: GetAlias(System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: GetAlias(string) - nameWithType: IModule.GetAlias(string) - fullName: Ubiquity.NET.Llvm.IModule.GetAlias(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAlias - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 204 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get an alias by name - example: [] - syntax: - content: GlobalAlias? GetAlias(string name) - parameters: - - id: name - type: System.String - description: name of the alias to get - return: - type: Ubiquity.NET.Llvm.Values.GlobalAlias - description: Alias matching name or null if no such alias exists - content.vb: Function GetAlias(name As String) As GlobalAlias - overload: Ubiquity.NET.Llvm.IModule.GetAlias* - nameWithType.vb: IModule.GetAlias(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetAlias(String) - name.vb: GetAlias(String) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - id: AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddGlobalInAddressSpace(uint, ITypeRef, string) - nameWithType: IModule.AddGlobalInAddressSpace(uint, ITypeRef, string) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobalInAddressSpace - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 214 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module with a specific address space - example: [] - syntax: - content: GlobalVariable AddGlobalInAddressSpace(uint addressSpace, ITypeRef typeRef, string name) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space to add the global to - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: name - type: System.String - description: Name of the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: The new - content.vb: Function AddGlobalInAddressSpace(addressSpace As UInteger, typeRef As ITypeRef, name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace* - nameWithType.vb: IModule.AddGlobalInAddressSpace(UInteger, ITypeRef, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, String) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, String) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - id: AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant) - nameWithType: IModule.AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobalInAddressSpace - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 223 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: GlobalVariable AddGlobalInAddressSpace(uint addressSpace, ITypeRef typeRef, bool isConst, Linkage linkage, Constant constVal) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space to add the global to - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: isConst - type: System.Boolean - description: Flag to indicate if this global is a constant - - id: linkage - type: Ubiquity.NET.Llvm.Values.Linkage - description: Linkage type for this global - - id: constVal - type: Ubiquity.NET.Llvm.Values.Constant - description: Initial value for the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: New global variable - content.vb: Function AddGlobalInAddressSpace(addressSpace As UInteger, typeRef As ITypeRef, isConst As Boolean, linkage As Linkage, constVal As Constant) As GlobalVariable - overload: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace* - nameWithType.vb: IModule.AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - id: AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant, string) - nameWithType: IModule.AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant, string) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobalInAddressSpace - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 233 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: GlobalVariable AddGlobalInAddressSpace(uint addressSpace, ITypeRef typeRef, bool isConst, Linkage linkage, Constant constVal, string name) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space to add the global to - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: isConst - type: System.Boolean - description: Flag to indicate if this global is a constant - - id: linkage - type: Ubiquity.NET.Llvm.Values.Linkage - description: Linkage type for this global - - id: constVal - type: Ubiquity.NET.Llvm.Values.Constant - description: Initial value for the global - - id: name - type: System.String - description: Name of the variable - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: New global variable - content.vb: Function AddGlobalInAddressSpace(addressSpace As UInteger, typeRef As ITypeRef, isConst As Boolean, linkage As Linkage, constVal As Constant, name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace* - nameWithType.vb: IModule.AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, String) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant, String) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - id: AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddGlobal(ITypeRef, string) - nameWithType: IModule.AddGlobal(ITypeRef, string) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobal - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 242 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: GlobalVariable AddGlobal(ITypeRef typeRef, string name) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: name - type: System.String - description: Name of the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: The new - content.vb: Function AddGlobal(typeRef As ITypeRef, name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.IModule.AddGlobal* - nameWithType.vb: IModule.AddGlobal(ITypeRef, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, String) - name.vb: AddGlobal(ITypeRef, String) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - id: AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddGlobal(ITypeRef, bool, Linkage, Constant) - nameWithType: IModule.AddGlobal(ITypeRef, bool, Linkage, Constant) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobal - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 250 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: GlobalVariable AddGlobal(ITypeRef typeRef, bool isConst, Linkage linkage, Constant constVal) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: isConst - type: System.Boolean - description: Flag to indicate if this global is a constant - - id: linkage - type: Ubiquity.NET.Llvm.Values.Linkage - description: Linkage type for this global - - id: constVal - type: Ubiquity.NET.Llvm.Values.Constant - description: Initial value for the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: New global variable - content.vb: Function AddGlobal(typeRef As ITypeRef, isConst As Boolean, linkage As Linkage, constVal As Constant) As GlobalVariable - overload: Ubiquity.NET.Llvm.IModule.AddGlobal* - nameWithType.vb: IModule.AddGlobal(ITypeRef, Boolean, Linkage, Constant) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - name.vb: AddGlobal(ITypeRef, Boolean, Linkage, Constant) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - id: AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddGlobal(ITypeRef, bool, Linkage, Constant, string) - nameWithType: IModule.AddGlobal(ITypeRef, bool, Linkage, Constant, string) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobal - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 259 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: GlobalVariable AddGlobal(ITypeRef typeRef, bool isConst, Linkage linkage, Constant constVal, string name) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: isConst - type: System.Boolean - description: Flag to indicate if this global is a constant - - id: linkage - type: Ubiquity.NET.Llvm.Values.Linkage - description: Linkage type for this global - - id: constVal - type: Ubiquity.NET.Llvm.Values.Constant - description: Initial value for the global - - id: name - type: System.String - description: Name of the variable - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: New global variable - content.vb: Function AddGlobal(typeRef As ITypeRef, isConst As Boolean, linkage As Linkage, constVal As Constant, name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.IModule.AddGlobal* - nameWithType.vb: IModule.AddGlobal(ITypeRef, Boolean, Linkage, Constant, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, String) - name.vb: AddGlobal(ITypeRef, Boolean, Linkage, Constant, String) -- uid: Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String) - id: GetTypeByName(System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: GetTypeByName(string) - nameWithType: IModule.GetTypeByName(string) - fullName: Ubiquity.NET.Llvm.IModule.GetTypeByName(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetTypeByName - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 264 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves a by name from the module - example: [] - syntax: - content: ITypeRef? GetTypeByName(string name) - parameters: - - id: name - type: System.String - description: Name of the type - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: The type or null if no type with the specified name exists in the module - content.vb: Function GetTypeByName(name As String) As ITypeRef - overload: Ubiquity.NET.Llvm.IModule.GetTypeByName* - nameWithType.vb: IModule.GetTypeByName(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetTypeByName(String) - name.vb: GetTypeByName(String) -- uid: Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String) - id: GetNamedGlobal(System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: GetNamedGlobal(string) - nameWithType: IModule.GetNamedGlobal(string) - fullName: Ubiquity.NET.Llvm.IModule.GetNamedGlobal(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetNamedGlobal - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 269 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves a named global from the module - example: [] - syntax: - content: GlobalVariable? GetNamedGlobal(string name) - parameters: - - id: name - type: System.String - description: Name of the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: or null if not found - content.vb: Function GetNamedGlobal(name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.IModule.GetNamedGlobal* - nameWithType.vb: IModule.GetNamedGlobal(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetNamedGlobal(String) - name.vb: GetNamedGlobal(String) -- uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - id: AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddModuleFlag(ModuleFlagBehavior, string, uint) - nameWithType: IModule.AddModuleFlag(ModuleFlagBehavior, string, uint) - fullName: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, string, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddModuleFlag - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 275 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a module flag to the module - example: [] - syntax: - content: void AddModuleFlag(ModuleFlagBehavior behavior, string name, uint value) - parameters: - - id: behavior - type: Ubiquity.NET.Llvm.ModuleFlagBehavior - description: ModuleHandle flag behavior for this flag - - id: name - type: System.String - description: Name of the flag - - id: value - type: System.UInt32 - description: Value of the flag - content.vb: Sub AddModuleFlag(behavior As ModuleFlagBehavior, name As String, value As UInteger) - overload: Ubiquity.NET.Llvm.IModule.AddModuleFlag* - nameWithType.vb: IModule.AddModuleFlag(ModuleFlagBehavior, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, String, UInteger) - name.vb: AddModuleFlag(ModuleFlagBehavior, String, UInteger) -- uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddModuleFlag(ModuleFlagBehavior, string, IrMetadata) - nameWithType: IModule.AddModuleFlag(ModuleFlagBehavior, string, IrMetadata) - fullName: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, string, Ubiquity.NET.Llvm.Metadata.IrMetadata) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddModuleFlag - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 281 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a module flag to the module - example: [] - syntax: - content: void AddModuleFlag(ModuleFlagBehavior behavior, string name, IrMetadata value) - parameters: - - id: behavior - type: Ubiquity.NET.Llvm.ModuleFlagBehavior - description: ModuleHandle flag behavior for this flag - - id: name - type: System.String - description: Name of the flag - - id: value - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: Value of the flag - content.vb: Sub AddModuleFlag(behavior As ModuleFlagBehavior, name As String, value As IrMetadata) - overload: Ubiquity.NET.Llvm.IModule.AddModuleFlag* - nameWithType.vb: IModule.AddModuleFlag(ModuleFlagBehavior, String, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, String, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: AddModuleFlag(ModuleFlagBehavior, String, IrMetadata) -- uid: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddNamedMetadataOperand(string, IrMetadata) - nameWithType: IModule.AddNamedMetadataOperand(string, IrMetadata) - fullName: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(string, Ubiquity.NET.Llvm.Metadata.IrMetadata) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddNamedMetadataOperand - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 286 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds operand value to named metadata - example: [] - syntax: - content: void AddNamedMetadataOperand(string name, IrMetadata value) - parameters: - - id: name - type: System.String - description: Name of the metadata - - id: value - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: operand value - content.vb: Sub AddNamedMetadataOperand(name As String, value As IrMetadata) - overload: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand* - nameWithType.vb: IModule.AddNamedMetadataOperand(String, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(String, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: AddNamedMetadataOperand(String, IrMetadata) -- uid: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String) - id: AddVersionIdentMetadata(System.String) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: AddVersionIdentMetadata(string) - nameWithType: IModule.AddVersionIdentMetadata(string) - fullName: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddVersionIdentMetadata - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 290 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds an llvm.ident metadata string to the module - example: [] - syntax: - content: void AddVersionIdentMetadata(string version) - parameters: - - id: version - type: System.String - description: version information to place in the llvm.ident metadata - content.vb: Sub AddVersionIdentMetadata(version As String) - overload: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata* - nameWithType.vb: IModule.AddVersionIdentMetadata(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(String) - name.vb: AddVersionIdentMetadata(String) -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - id: CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: CreateFunction(ref readonly DIBuilder, DIScope?, string, string?, DIFile?, uint, DebugFunctionType, bool, bool, uint, DebugInfoFlags, bool) - nameWithType: IModule.CreateFunction(ref readonly DIBuilder, DIScope?, string, string?, DIFile?, uint, DebugFunctionType, bool, bool, uint, DebugInfoFlags, bool) - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, string?, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType, bool, bool, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 306 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a Function definition with Debug information - example: [] - syntax: - content: Function CreateFunction(ref readonly DIBuilder diBuilder, DIScope? scope, string name, string? linkageName, DIFile? file, uint line, DebugFunctionType signature, bool isLocalToUnit, bool isDefinition, uint scopeLine, DebugInfoFlags debugFlags, bool isOptimized) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: The debug info builder to use to create the function (must be associated with this module) - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Containing scope for the function - - id: name - type: System.String - description: Name of the function in source language form - - id: linkageName - type: System.String - description: Mangled linker visible name of the function (may be same as name if mangling not required by source language - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the function definition - - id: line - type: System.UInt32 - description: Line number of the function definition - - id: signature - type: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - description: LLVM Function type for the signature of the function - - id: isLocalToUnit - type: System.Boolean - description: Flag to indicate if this function is local to the compilation unit - - id: isDefinition - type: System.Boolean - description: Flag to indicate if this is a definition - - id: scopeLine - type: System.UInt32 - description: First line of the function's outermost scope, this may not be the same as the first line of the function definition due to source formatting - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: Additional flags describing this function - - id: isOptimized - type: System.Boolean - description: Flag to indicate if this function is optimized - return: - type: Ubiquity.NET.Llvm.Values.Function - description: Function described by the arguments - content.vb: Function CreateFunction(diBuilder As DIBuilder, scope As DIScope, name As String, linkageName As String, file As DIFile, line As UInteger, signature As DebugFunctionType, isLocalToUnit As Boolean, isDefinition As Boolean, scopeLine As UInteger, debugFlags As DebugInfoFlags, isOptimized As Boolean) As [Function] - overload: Ubiquity.NET.Llvm.IModule.CreateFunction* - nameWithType.vb: IModule.CreateFunction(DIBuilder, DIScope, String, String, DIFile, UInteger, DebugFunctionType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType, Boolean, Boolean, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Boolean) - name.vb: CreateFunction(DIBuilder, DIScope, String, String, DIFile, UInteger, DebugFunctionType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean) -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - id: CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, IEnumerable>) - nameWithType: IModule.CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, IEnumerable>) - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, System.Collections.Generic.IEnumerable>) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 330 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a function - example: [] - syntax: - content: Function CreateFunction(ref readonly DIBuilder diBuilder, string name, bool isVarArg, IDebugType returnType, IEnumerable> argumentTypes) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: for creation of debug information - - id: name - type: System.String - description: Name of the function - - id: isVarArg - type: System.Boolean - description: Flag indicating if the function supports a variadic argument list - - id: returnType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type of the function - - id: argumentTypes - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - description: Arguments for the function - return: - type: Ubiquity.NET.Llvm.Values.Function - description: >- - Function, matching the signature specified. This may be a previously declared or defined - - function or a new function if none matching the name and signature is already present. - content.vb: Function CreateFunction(diBuilder As DIBuilder, name As String, isVarArg As Boolean, returnType As IDebugType(Of ITypeRef, DIType), argumentTypes As IEnumerable(Of IDebugType(Of ITypeRef, DIType))) As [Function] - overload: Ubiquity.NET.Llvm.IModule.CreateFunction* - nameWithType.vb: IModule.CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - id: CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, params IDebugType[]) - nameWithType: IModule.CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, params IDebugType[]) - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params Ubiquity.NET.Llvm.DebugInfo.IDebugType[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 347 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a function - example: [] - syntax: - content: Function CreateFunction(ref readonly DIBuilder diBuilder, string name, bool isVarArg, IDebugType returnType, params IDebugType[] argumentTypes) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: for creation of debug information - - id: name - type: System.String - description: Name of the function - - id: isVarArg - type: System.Boolean - description: Flag indicating if the function supports a variadic argument list - - id: returnType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type of the function - - id: argumentTypes - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[] - description: Arguments for the function - return: - type: Ubiquity.NET.Llvm.Values.Function - description: >- - Function, matching the signature specified. This may be a previously declared or defined - - function or a new function if none matching the name and signature is already present. - content.vb: Function CreateFunction(diBuilder As DIBuilder, name As String, isVarArg As Boolean, returnType As IDebugType(Of ITypeRef, DIType), ParamArray argumentTypes As IDebugType(Of ITypeRef, DIType)()) As [Function] - overload: Ubiquity.NET.Llvm.IModule.CreateFunction* - nameWithType.vb: IModule.CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), ParamArray IDebugType(Of ITypeRef, DIType)()) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), ParamArray Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)()) - name.vb: CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), ParamArray IDebugType(Of ITypeRef, DIType)()) -- uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - commentId: M:Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - id: GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: GetIntrinsicDeclaration(string, params ITypeRef[]) - nameWithType: IModule.GetIntrinsicDeclaration(string, params ITypeRef[]) - fullName: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(string, params Ubiquity.NET.Llvm.Types.ITypeRef[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetIntrinsicDeclaration - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 370 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a declaration for an LLVM intrinsic function - remarks: >- - This method will match an overloaded intrinsic based on the parameter types. If an intrinsic - - has no overloads then an exact match is required. If the intrinsic has overloads than a prefix - - match is used. - -
important

- - It is important to note that the prefix match requires the name provided to have a length greater - - than that of the name of the intrinsic and that the name starts with a matching overloaded intrinsic. - - for example: 'llvm.memset' would not match the overloaded memset intrinsic but 'llvm.memset.p.i' does. - - Thus, it is generally a good idea to use the signature from the LLVM documentation without the address - - space, or bit widths. That is instead of 'llvm.memset.p0i8.i32' use 'llvm.memset.p.i'. - -

- example: [] - syntax: - content: Function GetIntrinsicDeclaration(string name, params ITypeRef[] args) - parameters: - - id: name - type: System.String - description: Name of the intrinsic - - id: args - type: Ubiquity.NET.Llvm.Types.ITypeRef[] - description: Args for the intrinsic - return: - type: Ubiquity.NET.Llvm.Values.Function - description: Function declaration - content.vb: Function GetIntrinsicDeclaration(name As String, ParamArray args As ITypeRef()) As [Function] - overload: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration* - nameWithType.vb: IModule.GetIntrinsicDeclaration(String, ParamArray ITypeRef()) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(String, ParamArray Ubiquity.NET.Llvm.Types.ITypeRef()) - name.vb: GetIntrinsicDeclaration(String, ParamArray ITypeRef()) -- uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - commentId: M:Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - id: GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: GetIntrinsicDeclaration(uint, params ITypeRef[]) - nameWithType: IModule.GetIntrinsicDeclaration(uint, params ITypeRef[]) - fullName: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(uint, params Ubiquity.NET.Llvm.Types.ITypeRef[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetIntrinsicDeclaration - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 376 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a declaration for an LLVM intrinsic function - example: [] - syntax: - content: Function GetIntrinsicDeclaration(uint id, params ITypeRef[] args) - parameters: - - id: id - type: System.UInt32 - description: id of the intrinsic - - id: args - type: Ubiquity.NET.Llvm.Types.ITypeRef[] - description: Arguments for the intrinsic - return: - type: Ubiquity.NET.Llvm.Values.Function - description: Function declaration - content.vb: Function GetIntrinsicDeclaration(id As UInteger, ParamArray args As ITypeRef()) As [Function] - overload: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration* - nameWithType.vb: IModule.GetIntrinsicDeclaration(UInteger, ParamArray ITypeRef()) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(UInteger, ParamArray Ubiquity.NET.Llvm.Types.ITypeRef()) - name.vb: GetIntrinsicDeclaration(UInteger, ParamArray ITypeRef()) -- uid: Ubiquity.NET.Llvm.IModule.Clone - commentId: M:Ubiquity.NET.Llvm.IModule.Clone - id: Clone - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Clone() - nameWithType: IModule.Clone() - fullName: Ubiquity.NET.Llvm.IModule.Clone() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Clone - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 380 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Clones the current module into the same context - example: [] - syntax: - content: Module Clone() - return: - type: Ubiquity.NET.Llvm.Module - description: Cloned module - content.vb: Function Clone() As [Module] - overload: Ubiquity.NET.Llvm.IModule.Clone* -- uid: Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - id: Clone(Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.IModule - langs: - - csharp - - vb - name: Clone(IContext) - nameWithType: IModule.Clone(IContext) - fullName: Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Clone - path: ../src/Ubiquity.NET.Llvm/IModule.cs - startLine: 385 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Clones the module into a new - example: [] - syntax: - content: Module Clone(IContext targetContext) - parameters: - - id: targetContext - type: Ubiquity.NET.Llvm.IContext - description: to clone the module into - return: - type: Ubiquity.NET.Llvm.Module - description: Cloned copy of the module - content.vb: Function Clone(targetContext As IContext) As [Module] - overload: Ubiquity.NET.Llvm.IModule.Clone* -references: -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.IModule.SourceFileName* - commentId: Overload:Ubiquity.NET.Llvm.IModule.SourceFileName - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_SourceFileName - name: SourceFileName - nameWithType: IModule.SourceFileName - fullName: Ubiquity.NET.Llvm.IModule.SourceFileName -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.IModule.Comdats* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Comdats - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Comdats - name: Comdats - nameWithType: IModule.Comdats - fullName: Ubiquity.NET.Llvm.IModule.Comdats -- uid: Ubiquity.NET.Llvm.ComdatCollection - commentId: T:Ubiquity.NET.Llvm.ComdatCollection - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ComdatCollection.html - name: ComdatCollection - nameWithType: ComdatCollection - fullName: Ubiquity.NET.Llvm.ComdatCollection -- uid: Ubiquity.NET.Llvm.IModule.Context - commentId: P:Ubiquity.NET.Llvm.IModule.Context - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Context - name: Context - nameWithType: IModule.Context - fullName: Ubiquity.NET.Llvm.IModule.Context -- uid: Ubiquity.NET.Llvm.IModule.Context* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Context - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Context - name: Context - nameWithType: IModule.Context - fullName: Ubiquity.NET.Llvm.IModule.Context -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IModule.html - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule -- uid: Ubiquity.NET.Llvm.IModule.ModuleFlags* - commentId: Overload:Ubiquity.NET.Llvm.IModule.ModuleFlags - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_ModuleFlags - name: ModuleFlags - nameWithType: IModule.ModuleFlags - fullName: Ubiquity.NET.Llvm.IModule.ModuleFlags -- uid: System.Collections.Generic.IReadOnlyDictionary{System.String,Ubiquity.NET.Llvm.Metadata.ModuleFlag} - commentId: T:System.Collections.Generic.IReadOnlyDictionary{System.String,Ubiquity.NET.Llvm.Metadata.ModuleFlag} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyDictionary`2 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: IReadOnlyDictionary - nameWithType: IReadOnlyDictionary - fullName: System.Collections.Generic.IReadOnlyDictionary - nameWithType.vb: IReadOnlyDictionary(Of String, ModuleFlag) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of String, Ubiquity.NET.Llvm.Metadata.ModuleFlag) - name.vb: IReadOnlyDictionary(Of String, ModuleFlag) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: < - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag - name: ModuleFlag - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: ( - - name: Of - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag - name: ModuleFlag - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary`2 - commentId: T:System.Collections.Generic.IReadOnlyDictionary`2 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: IReadOnlyDictionary - nameWithType: IReadOnlyDictionary - fullName: System.Collections.Generic.IReadOnlyDictionary - nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue) - name.vb: IReadOnlyDictionary(Of TKey, TValue) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: < - - name: TKey - - name: ',' - - name: " " - - name: TValue - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: ( - - name: Of - - name: " " - - name: TKey - - name: ',' - - name: " " - - name: TValue - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.IModule.CompileUnits* - commentId: Overload:Ubiquity.NET.Llvm.IModule.CompileUnits - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CompileUnits - name: CompileUnits - nameWithType: IModule.CompileUnits - fullName: Ubiquity.NET.Llvm.IModule.CompileUnits -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DICompileUnit} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DICompileUnit} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DICompileUnit) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DICompileUnit) - name.vb: IEnumerable(Of DICompileUnit) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - name: DICompileUnit - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - name: DICompileUnit - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.TargetMachine - commentId: T:Ubiquity.NET.Llvm.TargetMachine - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetMachine.html - name: TargetMachine - nameWithType: TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine -- uid: Ubiquity.NET.Llvm.IModule.DataLayoutString* - commentId: Overload:Ubiquity.NET.Llvm.IModule.DataLayoutString - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_DataLayoutString - name: DataLayoutString - nameWithType: IModule.DataLayoutString - fullName: Ubiquity.NET.Llvm.IModule.DataLayoutString -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.IModule.DataLayoutString - commentId: P:Ubiquity.NET.Llvm.IModule.DataLayoutString - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_DataLayoutString - name: DataLayoutString - nameWithType: IModule.DataLayoutString - fullName: Ubiquity.NET.Llvm.IModule.DataLayoutString -- uid: Ubiquity.NET.Llvm.IDataLayout - commentId: T:Ubiquity.NET.Llvm.IDataLayout - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IDataLayout.html - name: IDataLayout - nameWithType: IDataLayout - fullName: Ubiquity.NET.Llvm.IDataLayout -- uid: Ubiquity.NET.Llvm.IModule.Layout* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Layout - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Layout - name: Layout - nameWithType: IModule.Layout - fullName: Ubiquity.NET.Llvm.IModule.Layout -- uid: Ubiquity.NET.Llvm.IModule.TargetTriple* - commentId: Overload:Ubiquity.NET.Llvm.IModule.TargetTriple - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TargetTriple - name: TargetTriple - nameWithType: IModule.TargetTriple - fullName: Ubiquity.NET.Llvm.IModule.TargetTriple -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable - commentId: T:Ubiquity.NET.Llvm.Values.GlobalVariable - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - name: GlobalVariable - nameWithType: GlobalVariable - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable -- uid: Ubiquity.NET.Llvm.IModule.Globals* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Globals - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Globals - name: Globals - nameWithType: IModule.Globals - fullName: Ubiquity.NET.Llvm.IModule.Globals -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalVariable} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalVariable} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of GlobalVariable) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.GlobalVariable) - name.vb: IEnumerable(Of GlobalVariable) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.IModule.Functions* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Functions - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Functions - name: Functions - nameWithType: IModule.Functions - fullName: Ubiquity.NET.Llvm.IModule.Functions -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Function} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Function} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Function) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Function) - name.vb: IEnumerable(Of Function) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.Aliases* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Aliases - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Aliases - name: Aliases - nameWithType: IModule.Aliases - fullName: Ubiquity.NET.Llvm.IModule.Aliases -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalAlias} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalAlias} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of GlobalAlias) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.GlobalAlias) - name.vb: IEnumerable(Of GlobalAlias) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.NamedMDNode - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html - name: NamedMDNode - nameWithType: NamedMDNode - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode -- uid: Ubiquity.NET.Llvm.IModule.NamedMetadata* - commentId: Overload:Ubiquity.NET.Llvm.IModule.NamedMetadata - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_NamedMetadata - name: NamedMetadata - nameWithType: IModule.NamedMetadata - fullName: Ubiquity.NET.Llvm.IModule.NamedMetadata -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.NamedMDNode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.NamedMDNode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of NamedMDNode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Metadata.NamedMDNode) - name.vb: IEnumerable(Of NamedMDNode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - name: NamedMDNode - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - name: NamedMDNode - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - commentId: T:Ubiquity.NET.Llvm.Values.GlobalIFunc - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - name: GlobalIFunc - nameWithType: GlobalIFunc - fullName: Ubiquity.NET.Llvm.Values.GlobalIFunc -- uid: Ubiquity.NET.Llvm.IModule.IndirectFunctions* - commentId: Overload:Ubiquity.NET.Llvm.IModule.IndirectFunctions - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_IndirectFunctions - name: IndirectFunctions - nameWithType: IModule.IndirectFunctions - fullName: Ubiquity.NET.Llvm.IModule.IndirectFunctions -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalIFunc} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalIFunc} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of GlobalIFunc) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.GlobalIFunc) - name.vb: IEnumerable(Of GlobalIFunc) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.Name* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Name - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Name - name: Name - nameWithType: IModule.Name - fullName: Ubiquity.NET.Llvm.IModule.Name -- uid: Ubiquity.NET.Llvm.IModule.ModuleInlineAsm* - commentId: Overload:Ubiquity.NET.Llvm.IModule.ModuleInlineAsm - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_ModuleInlineAsm - name: ModuleInlineAsm - nameWithType: IModule.ModuleInlineAsm - fullName: Ubiquity.NET.Llvm.IModule.ModuleInlineAsm -- uid: Ubiquity.NET.Llvm.IModule.AppendInlineAsm* - commentId: Overload:Ubiquity.NET.Llvm.IModule.AppendInlineAsm - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AppendInlineAsm_System_String_ - name: AppendInlineAsm - nameWithType: IModule.AppendInlineAsm - fullName: Ubiquity.NET.Llvm.IModule.AppendInlineAsm -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: Ubiquity.NET.Llvm.IModule.TryRunPasses* - commentId: Overload:Ubiquity.NET.Llvm.IModule.TryRunPasses - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_System_String___ - name: TryRunPasses - nameWithType: IModule.TryRunPasses - fullName: Ubiquity.NET.Llvm.IModule.TryRunPasses -- uid: System.String[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string[] - nameWithType: string[] - fullName: string[] - nameWithType.vb: String() - fullName.vb: String() - name.vb: String() - spec.csharp: - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '[' - - name: ']' - spec.vb: - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ErrorInfo.html - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo -- uid: Ubiquity.NET.Llvm.PassBuilderOptions - commentId: T:Ubiquity.NET.Llvm.PassBuilderOptions - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - name: PassBuilderOptions - nameWithType: PassBuilderOptions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions -- uid: Ubiquity.NET.Llvm.IModule.Link* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Link - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Link_Ubiquity_NET_Llvm_Module_ - name: Link - nameWithType: IModule.Link - fullName: Ubiquity.NET.Llvm.IModule.Link -- uid: Ubiquity.NET.Llvm.IModule.Verify* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Verify - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Verify_System_String__ - name: Verify - nameWithType: IModule.Verify - fullName: Ubiquity.NET.Llvm.IModule.Verify -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.IModule.TryGetFunction* - commentId: Overload:Ubiquity.NET.Llvm.IModule.TryGetFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryGetFunction_System_String_Ubiquity_NET_Llvm_Values_Function__ - name: TryGetFunction - nameWithType: IModule.TryGetFunction - fullName: Ubiquity.NET.Llvm.IModule.TryGetFunction -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc* - commentId: Overload:Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateAndAddGlobalIFunc_System_String_Ubiquity_NET_Llvm_Types_ITypeRef_System_UInt32_Ubiquity_NET_Llvm_Values_Function_ - name: CreateAndAddGlobalIFunc - nameWithType: IModule.CreateAndAddGlobalIFunc - fullName: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc* - commentId: Overload:Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryGetNamedGlobalIFunc_System_String_Ubiquity_NET_Llvm_Values_GlobalIFunc__ - name: TryGetNamedGlobalIFunc - nameWithType: IModule.TryGetNamedGlobalIFunc - fullName: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction* - commentId: Overload:Ubiquity.NET.Llvm.IModule.CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_System_String_Ubiquity_NET_Llvm_Types_IFunctionType_ - name: CreateFunction - nameWithType: IModule.CreateFunction - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType -- uid: Ubiquity.NET.Llvm.IModule.WriteToFile* - commentId: Overload:Ubiquity.NET.Llvm.IModule.WriteToFile - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToFile_System_String_ - name: WriteToFile - nameWithType: IModule.WriteToFile - fullName: Ubiquity.NET.Llvm.IModule.WriteToFile -- uid: Ubiquity.NET.Llvm.IModule.WriteToTextFile* - commentId: Overload:Ubiquity.NET.Llvm.IModule.WriteToTextFile - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToTextFile_System_String_System_String__ - name: WriteToTextFile - nameWithType: IModule.WriteToTextFile - fullName: Ubiquity.NET.Llvm.IModule.WriteToTextFile -- uid: Ubiquity.NET.Llvm.IModule.WriteToString* - commentId: Overload:Ubiquity.NET.Llvm.IModule.WriteToString - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToString - name: WriteToString - nameWithType: IModule.WriteToString - fullName: Ubiquity.NET.Llvm.IModule.WriteToString -- uid: Ubiquity.NET.Llvm.MemoryBuffer - commentId: T:Ubiquity.NET.Llvm.MemoryBuffer - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.MemoryBuffer.html - name: MemoryBuffer - nameWithType: MemoryBuffer - fullName: Ubiquity.NET.Llvm.MemoryBuffer -- uid: Ubiquity.NET.Llvm.IModule.WriteToBuffer* - commentId: Overload:Ubiquity.NET.Llvm.IModule.WriteToBuffer - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToBuffer - name: WriteToBuffer - nameWithType: IModule.WriteToBuffer - fullName: Ubiquity.NET.Llvm.IModule.WriteToBuffer -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias - commentId: T:Ubiquity.NET.Llvm.Values.GlobalAlias - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - name: GlobalAlias - nameWithType: GlobalAlias - fullName: Ubiquity.NET.Llvm.Values.GlobalAlias -- uid: Ubiquity.NET.Llvm.IModule.AddAlias* - commentId: Overload:Ubiquity.NET.Llvm.IModule.AddAlias - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddAlias_Ubiquity_NET_Llvm_Values_Value_System_String_System_UInt32_ - name: AddAlias - nameWithType: IModule.AddAlias - fullName: Ubiquity.NET.Llvm.IModule.AddAlias -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.IModule.GetAlias* - commentId: Overload:Ubiquity.NET.Llvm.IModule.GetAlias - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetAlias_System_String_ - name: GetAlias - nameWithType: IModule.GetAlias - fullName: Ubiquity.NET.Llvm.IModule.GetAlias -- uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace* - commentId: Overload:Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - name: AddGlobalInAddressSpace - nameWithType: IModule.AddGlobalInAddressSpace - fullName: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace -- uid: Ubiquity.NET.Llvm.Values.Linkage - commentId: T:Ubiquity.NET.Llvm.Values.Linkage - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Linkage.html - name: Linkage - nameWithType: Linkage - fullName: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.IModule.AddGlobal* - commentId: Overload:Ubiquity.NET.Llvm.IModule.AddGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - name: AddGlobal - nameWithType: IModule.AddGlobal - fullName: Ubiquity.NET.Llvm.IModule.AddGlobal -- uid: Ubiquity.NET.Llvm.IModule.GetTypeByName* - commentId: Overload:Ubiquity.NET.Llvm.IModule.GetTypeByName - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetTypeByName_System_String_ - name: GetTypeByName - nameWithType: IModule.GetTypeByName - fullName: Ubiquity.NET.Llvm.IModule.GetTypeByName -- uid: Ubiquity.NET.Llvm.IModule.GetNamedGlobal* - commentId: Overload:Ubiquity.NET.Llvm.IModule.GetNamedGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetNamedGlobal_System_String_ - name: GetNamedGlobal - nameWithType: IModule.GetNamedGlobal - fullName: Ubiquity.NET.Llvm.IModule.GetNamedGlobal -- uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag* - commentId: Overload:Ubiquity.NET.Llvm.IModule.AddModuleFlag - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddModuleFlag_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_System_UInt32_ - name: AddModuleFlag - nameWithType: IModule.AddModuleFlag - fullName: Ubiquity.NET.Llvm.IModule.AddModuleFlag -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - commentId: T:Ubiquity.NET.Llvm.ModuleFlagBehavior - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - name: ModuleFlagBehavior - nameWithType: ModuleFlagBehavior - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand* - commentId: Overload:Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddNamedMetadataOperand_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: AddNamedMetadataOperand - nameWithType: IModule.AddNamedMetadataOperand - fullName: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand -- uid: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata* - commentId: Overload:Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddVersionIdentMetadata_System_String_ - name: AddVersionIdentMetadata - nameWithType: IModule.AddVersionIdentMetadata - fullName: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html - name: DebugFunctionType - nameWithType: DebugFunctionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable> - nameWithType: IEnumerable> - fullName: System.Collections.Generic.IEnumerable> - nameWithType.vb: IEnumerable(Of IDebugType(Of ITypeRef, DIType)) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: IEnumerable(Of IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[] - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType[] - nameWithType: IDebugType[] - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType[] - nameWithType.vb: IDebugType(Of ITypeRef, DIType)() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)() - name.vb: IDebugType(Of ITypeRef, DIType)() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration* - commentId: Overload:Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetIntrinsicDeclaration_System_String_Ubiquity_NET_Llvm_Types_ITypeRef___ - name: GetIntrinsicDeclaration - nameWithType: IModule.GetIntrinsicDeclaration - fullName: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration -- uid: Ubiquity.NET.Llvm.Types.ITypeRef[] - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef[] - nameWithType: ITypeRef[] - fullName: Ubiquity.NET.Llvm.Types.ITypeRef[] - nameWithType.vb: ITypeRef() - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef() - name.vb: ITypeRef() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.Clone* - commentId: Overload:Ubiquity.NET.Llvm.IModule.Clone - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Clone - name: Clone - nameWithType: IModule.Clone - fullName: Ubiquity.NET.Llvm.IModule.Clone diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.IOperandCollection-1.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.IOperandCollection-1.yml deleted file mode 100644 index 575c27e48d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.IOperandCollection-1.yml +++ /dev/null @@ -1,590 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.IOperandCollection`1 - commentId: T:Ubiquity.NET.Llvm.IOperandCollection`1 - id: IOperandCollection`1 - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - - Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - - Ubiquity.NET.Llvm.IOperandCollection`1.Slice(System.Int32,System.Int32) - langs: - - csharp - - vb - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/IOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IOperandCollection - path: ../src/Ubiquity.NET.Llvm/IOperandCollection.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Interface for a fixed shape collection of operands - remarks: >- - This interface describes a subset of the behavior of - - and along with an extension of the behavior of . - - The semantics are a collection where the size/shape is not mutable, however the - - individual members are. That is the container does not support adding or removing - - elements, but does allow replacing existing elements. - example: [] - syntax: - content: 'public interface IOperandCollection : IReadOnlyCollection, IEnumerable, IEnumerable' - typeParameters: - - id: T - description: Type of elements in the container - content.vb: Public Interface IOperandCollection(Of T) Inherits IReadOnlyCollection(Of T), IEnumerable(Of T), IEnumerable - inheritedMembers: - - System.Collections.Generic.IReadOnlyCollection{{T}}.Count - - System.Collections.Generic.IEnumerable{{T}}.GetEnumerator - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - id: Item(System.Int32) - parent: Ubiquity.NET.Llvm.IOperandCollection`1 - langs: - - csharp - - vb - name: this[int] - nameWithType: IOperandCollection.this[int] - fullName: Ubiquity.NET.Llvm.IOperandCollection.this[int] - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/IOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: this[] - path: ../src/Ubiquity.NET.Llvm/IOperandCollection.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the specified element in the collection - example: [] - syntax: - content: T this[int index] { get; set; } - parameters: - - id: index - type: System.Int32 - description: index of the element in the collection - return: - type: '{T}' - description: The element in the collection - content.vb: Default Property this[](index As Integer) As T - overload: Ubiquity.NET.Llvm.IOperandCollection`1.Item* - nameWithType.vb: IOperandCollection(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).this[](Integer) - name.vb: this[](Integer) -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - commentId: M:Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - id: Contains(`0) - parent: Ubiquity.NET.Llvm.IOperandCollection`1 - langs: - - csharp - - vb - name: Contains(T) - nameWithType: IOperandCollection.Contains(T) - fullName: Ubiquity.NET.Llvm.IOperandCollection.Contains(T) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Contains - path: ../src/Ubiquity.NET.Llvm/IOperandCollection.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether the collection contains the specified item or not - example: [] - syntax: - content: bool Contains(T item) - parameters: - - id: item - type: '{T}' - description: Item to look for - return: - type: System.Boolean - description: true if the item is found - content.vb: Function Contains(item As T) As Boolean - overload: Ubiquity.NET.Llvm.IOperandCollection`1.Contains* - nameWithType.vb: IOperandCollection(Of T).Contains(T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).Contains(T) -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Slice(System.Int32,System.Int32) - commentId: M:Ubiquity.NET.Llvm.IOperandCollection`1.Slice(System.Int32,System.Int32) - id: Slice(System.Int32,System.Int32) - parent: Ubiquity.NET.Llvm.IOperandCollection`1 - langs: - - csharp - - vb - name: Slice(int, int) - nameWithType: IOperandCollection.Slice(int, int) - fullName: Ubiquity.NET.Llvm.IOperandCollection.Slice(int, int) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/IOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Slice - path: ../src/Ubiquity.NET.Llvm/IOperandCollection.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a slice of the collection - example: [] - syntax: - content: IOperandCollection Slice(int start, int end) - parameters: - - id: start - type: System.Int32 - description: Inclusive start index for the slice - - id: end - type: System.Int32 - description: Exclusive end index for the slice - return: - type: Ubiquity.NET.Llvm.IOperandCollection`1 - description: Slice of the collection - content.vb: Function Slice(start As Integer, [end] As Integer) As IOperandCollection(Of T) - overload: Ubiquity.NET.Llvm.IOperandCollection`1.Slice* - nameWithType.vb: IOperandCollection(Of T).Slice(Integer, Integer) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).Slice(Integer, Integer) - name.vb: Slice(Integer, Integer) -references: -- uid: System.Collections.Generic.ICollection`1 - commentId: T:System.Collections.Generic.ICollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of T) - fullName.vb: System.Collections.Generic.ICollection(Of T) - name.vb: ICollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IList`1 - commentId: T:System.Collections.Generic.IList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - name: IList - nameWithType: IList - fullName: System.Collections.Generic.IList - nameWithType.vb: IList(Of T) - fullName.vb: System.Collections.Generic.IList(Of T) - name.vb: IList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Collections.Generic.IReadOnlyCollection{{T}}.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection{`0}.Count - parent: System.Collections.Generic.IReadOnlyCollection{{T}} - definition: System.Collections.Generic.IReadOnlyCollection`1.Count - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: System.Collections.Generic.IEnumerable{{T}}.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable{`0}.GetEnumerator - parent: System.Collections.Generic.IEnumerable{{T}} - definition: System.Collections.Generic.IEnumerable`1.GetEnumerator - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable{`0}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable{`0}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection`1.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection`1.Count - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: System.Collections.Generic.IReadOnlyCollection{{T}} - commentId: T:System.Collections.Generic.IReadOnlyCollection{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable`1.GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerable{{T}} - commentId: T:System.Collections.Generic.IEnumerable{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Item* - commentId: Overload:Ubiquity.NET.Llvm.IOperandCollection`1.Item - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Item_System_Int32_ - name: this - nameWithType: IOperandCollection.this - fullName: Ubiquity.NET.Llvm.IOperandCollection.this - nameWithType.vb: IOperandCollection(Of T).this[] - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).this[] - name.vb: this[] -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains* - commentId: Overload:Ubiquity.NET.Llvm.IOperandCollection`1.Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - name: Contains - nameWithType: IOperandCollection.Contains - fullName: Ubiquity.NET.Llvm.IOperandCollection.Contains - nameWithType.vb: IOperandCollection(Of T).Contains - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).Contains -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Slice* - commentId: Overload:Ubiquity.NET.Llvm.IOperandCollection`1.Slice - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Slice_System_Int32_System_Int32_ - name: Slice - nameWithType: IOperandCollection.Slice - fullName: Ubiquity.NET.Llvm.IOperandCollection.Slice - nameWithType.vb: IOperandCollection(Of T).Slice - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).Slice -- uid: Ubiquity.NET.Llvm.IOperandCollection`1 - commentId: T:Ubiquity.NET.Llvm.IOperandCollection`1 - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.yml deleted file mode 100644 index 1302e56518..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.yml +++ /dev/null @@ -1,980 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - commentId: T:Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - id: AddressSpaceCast - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: AddressSpaceCast - nameWithType: AddressSpaceCast - fullName: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AddressSpaceCast.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddressSpaceCast - path: ../src/Ubiquity.NET.Llvm/Instructions/AddressSpaceCast.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Address space cast instruction - example: [] - syntax: - content: 'public sealed class AddressSpaceCast : Cast, IEquatable' - content.vb: Public NotInheritable Class AddressSpaceCast Inherits Cast Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#addrspaceast-to-instruction - altText: LLVM addrspacecast .. to - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(AddressSpaceCast, uint) - nameWithType: InstructionExtensions.SetAlignment(AddressSpaceCast, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of AddressSpaceCast)(AddressSpaceCast, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.AddressSpaceCast)(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast, UInteger) - name.vb: SetAlignment(Of AddressSpaceCast)(AddressSpaceCast, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(AddressSpaceCast, bool) - nameWithType: InstructionExtensions.SetIsVolatile(AddressSpaceCast, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of AddressSpaceCast)(AddressSpaceCast, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.AddressSpaceCast)(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast, Boolean) - name.vb: SetIsVolatile(Of AddressSpaceCast)(AddressSpaceCast, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(AddressSpaceCast, string) - nameWithType: ValueExtensions.RegisterName(AddressSpaceCast, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast, string) - nameWithType.vb: ValueExtensions.RegisterName(Of AddressSpaceCast)(AddressSpaceCast, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.AddressSpaceCast)(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast, String) - name.vb: RegisterName(Of AddressSpaceCast)(AddressSpaceCast, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.AddressSpaceCast,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Alloca.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Alloca.yml deleted file mode 100644 index 84acc7824f..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Alloca.yml +++ /dev/null @@ -1,1056 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Alloca - commentId: T:Ubiquity.NET.Llvm.Instructions.Alloca - id: Alloca - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Alloca.ElementType - langs: - - csharp - - vb - name: Alloca - nameWithType: Alloca - fullName: Ubiquity.NET.Llvm.Instructions.Alloca - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Alloca.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Alloca - path: ../src/Ubiquity.NET.Llvm/Instructions/Alloca.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Alloca instruction for allocating stack space - remarks: >- - LLVM Mem2Reg pass will convert alloca locations to register for the - - entry block to the maximum extent possible. - example: [] - syntax: - content: 'public sealed class Alloca : UnaryInstruction, IEquatable' - content.vb: Public NotInheritable Class Alloca Inherits UnaryInstruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#alloca-instruction - altText: LLVM alloca - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Alloca.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Alloca.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Alloca.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Alloca.ElementType - commentId: P:Ubiquity.NET.Llvm.Instructions.Alloca.ElementType - id: ElementType - parent: Ubiquity.NET.Llvm.Instructions.Alloca - langs: - - csharp - - vb - name: ElementType - nameWithType: Alloca.ElementType - fullName: Ubiquity.NET.Llvm.Instructions.Alloca.ElementType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Alloca.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ElementType - path: ../src/Ubiquity.NET.Llvm/Instructions/Alloca.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the type of the alloca element - remarks: >- - The of an - - is always a pointer type, this provides the ElementType (e.g. the pointee type) - - for the alloca. - example: [] - syntax: - content: public ITypeRef ElementType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property ElementType As ITypeRef - overload: Ubiquity.NET.Llvm.Instructions.Alloca.ElementType* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Alloca.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Alloca, uint) - nameWithType: InstructionExtensions.SetAlignment(Alloca, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Alloca, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Alloca)(Alloca, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Alloca)(Ubiquity.NET.Llvm.Instructions.Alloca, UInteger) - name.vb: SetAlignment(Of Alloca)(Alloca, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Alloca,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Alloca,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Alloca.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Alloca, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Alloca, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Alloca, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Alloca)(Alloca, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Alloca)(Ubiquity.NET.Llvm.Instructions.Alloca, Boolean) - name.vb: SetIsVolatile(Of Alloca)(Alloca, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Alloca,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Alloca,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Alloca.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Alloca, string) - nameWithType: ValueExtensions.RegisterName(Alloca, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Alloca, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Alloca)(Alloca, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Alloca)(Ubiquity.NET.Llvm.Instructions.Alloca, String) - name.vb: RegisterName(Of Alloca)(Alloca, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Alloca,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Alloca,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Alloca - commentId: T:Ubiquity.NET.Llvm.Instructions.Alloca - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - name: Alloca - nameWithType: Alloca - fullName: Ubiquity.NET.Llvm.Instructions.Alloca -- uid: Ubiquity.NET.Llvm.Instructions.Alloca.ElementType* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Alloca.ElementType - href: Ubiquity.NET.Llvm.Instructions.Alloca.html#Ubiquity_NET_Llvm_Instructions_Alloca_ElementType - name: ElementType - nameWithType: Alloca.ElementType - fullName: Ubiquity.NET.Llvm.Instructions.Alloca.ElementType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.yml deleted file mode 100644 index da8b623c6d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.yml +++ /dev/null @@ -1,997 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - id: AtomicCmpXchg - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak - langs: - - csharp - - vb - name: AtomicCmpXchg - nameWithType: AtomicCmpXchg - fullName: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicCmpXchg.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicCmpXchg - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicCmpXchg.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Atomic Compare and Exchange instruction - example: [] - syntax: - content: 'public sealed class AtomicCmpXchg : Instruction, IEquatable' - content.vb: Public NotInheritable Class AtomicCmpXchg Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#cmpxchg-instruction - altText: LLVM cmpxchg instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak - commentId: P:Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak - id: IsWeak - parent: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - langs: - - csharp - - vb - name: IsWeak - nameWithType: AtomicCmpXchg.IsWeak - fullName: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicCmpXchg.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsWeak - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicCmpXchg.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets a value indicating whether this instruction is weak or not - example: [] - syntax: - content: public bool IsWeak { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property IsWeak As Boolean - overload: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(AtomicCmpXchg, uint) - nameWithType: InstructionExtensions.SetAlignment(AtomicCmpXchg, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of AtomicCmpXchg)(AtomicCmpXchg, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg)(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg, UInteger) - name.vb: SetAlignment(Of AtomicCmpXchg)(AtomicCmpXchg, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(AtomicCmpXchg, bool) - nameWithType: InstructionExtensions.SetIsVolatile(AtomicCmpXchg, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of AtomicCmpXchg)(AtomicCmpXchg, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg)(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg, Boolean) - name.vb: SetIsVolatile(Of AtomicCmpXchg)(AtomicCmpXchg, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(AtomicCmpXchg, string) - nameWithType: ValueExtensions.RegisterName(AtomicCmpXchg, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg, string) - nameWithType.vb: ValueExtensions.RegisterName(Of AtomicCmpXchg)(AtomicCmpXchg, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg)(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg, String) - name.vb: RegisterName(Of AtomicCmpXchg)(AtomicCmpXchg, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html#Ubiquity_NET_Llvm_Instructions_AtomicCmpXchg_IsWeak - name: IsWeak - nameWithType: AtomicCmpXchg.IsWeak - fullName: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.IsWeak -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicRMW.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicRMW.yml deleted file mode 100644 index 7c71afd0d9..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicRMW.yml +++ /dev/null @@ -1,993 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMW - id: AtomicRMW - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind - langs: - - csharp - - vb - name: AtomicRMW - nameWithType: AtomicRMW - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMW - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicRMW - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 53 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Atomic Read-Modify-Write instruction - example: [] - syntax: - content: 'public sealed class AtomicRMW : Instruction, IEquatable' - content.vb: Public NotInheritable Class AtomicRMW Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#atomicrmw-instruction - altText: LLVM atomicrmw instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.AtomicRMW.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.AtomicRMW.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.AtomicRMW.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind - commentId: P:Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind - id: Kind - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMW - langs: - - csharp - - vb - name: Kind - nameWithType: AtomicRMW.Kind - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kind - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the kind of atomic operation for this instruction - example: [] - syntax: - content: public AtomicRMWBinOp Kind { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - content.vb: Public Property Kind As AtomicRMWBinOp - overload: Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(AtomicRMW, uint) - nameWithType: InstructionExtensions.SetAlignment(AtomicRMW, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.AtomicRMW, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of AtomicRMW)(AtomicRMW, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.AtomicRMW)(Ubiquity.NET.Llvm.Instructions.AtomicRMW, UInteger) - name.vb: SetAlignment(Of AtomicRMW)(AtomicRMW, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.AtomicRMW,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.AtomicRMW,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(AtomicRMW, bool) - nameWithType: InstructionExtensions.SetIsVolatile(AtomicRMW, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.AtomicRMW, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of AtomicRMW)(AtomicRMW, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.AtomicRMW)(Ubiquity.NET.Llvm.Instructions.AtomicRMW, Boolean) - name.vb: SetIsVolatile(Of AtomicRMW)(AtomicRMW, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.AtomicRMW,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.AtomicRMW,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(AtomicRMW, string) - nameWithType: ValueExtensions.RegisterName(AtomicRMW, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.AtomicRMW, string) - nameWithType.vb: ValueExtensions.RegisterName(Of AtomicRMW)(AtomicRMW, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.AtomicRMW)(Ubiquity.NET.Llvm.Instructions.AtomicRMW, String) - name.vb: RegisterName(Of AtomicRMW)(AtomicRMW, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.AtomicRMW,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.AtomicRMW,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html#Ubiquity_NET_Llvm_Instructions_AtomicRMW_Kind - name: Kind - nameWithType: AtomicRMW.Kind - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMW.Kind -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.html - name: AtomicRMWBinOp - nameWithType: AtomicRMWBinOp - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml deleted file mode 100644 index 247be28a12..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.yml +++ /dev/null @@ -1,453 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - id: AtomicRMWBinOp - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Add - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.And - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FAdd - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FSub - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Max - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Min - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Nand - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Or - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Sub - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMax - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMin - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xchg - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xor - langs: - - csharp - - vb - name: AtomicRMWBinOp - nameWithType: AtomicRMWBinOp - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicRMWBinOp - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Atomic Read-Modify-Write operation - example: [] - syntax: - content: public enum AtomicRMWBinOp - content.vb: Public Enum AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xchg - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xchg - id: Xchg - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: Xchg - nameWithType: AtomicRMWBinOp.Xchg - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xchg - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Xchg - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Exchange operation - example: [] - syntax: - content: Xchg = 0 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Add - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Add - id: Add - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: Add - nameWithType: AtomicRMWBinOp.Add - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Add - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Add - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer addition operation - example: [] - syntax: - content: Add = 1 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Sub - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Sub - id: Sub - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: Sub - nameWithType: AtomicRMWBinOp.Sub - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Sub - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Sub - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer subtraction - example: [] - syntax: - content: Sub = 2 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.And - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.And - id: And - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: And - nameWithType: AtomicRMWBinOp.And - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.And - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: And - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Bitwise AND - example: [] - syntax: - content: And = 3 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Nand - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Nand - id: Nand - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: Nand - nameWithType: AtomicRMWBinOp.Nand - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Nand - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Nand - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Bitwise NAND - example: [] - syntax: - content: Nand = 4 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Or - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Or - id: Or - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: Or - nameWithType: AtomicRMWBinOp.Or - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Or - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Or - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Bitwise OR - example: [] - syntax: - content: Or = 5 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xor - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xor - id: Xor - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: Xor - nameWithType: AtomicRMWBinOp.Xor - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Xor - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Xor - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Bitwise XOR - example: [] - syntax: - content: Xor = 6 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Max - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Max - id: Max - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: Max - nameWithType: AtomicRMWBinOp.Max - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Max - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Max - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Max - example: [] - syntax: - content: Max = 7 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Min - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Min - id: Min - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: Min - nameWithType: AtomicRMWBinOp.Min - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.Min - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Min - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Min - example: [] - syntax: - content: Min = 8 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMax - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMax - id: UMax - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: UMax - nameWithType: AtomicRMWBinOp.UMax - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMax - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UMax - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unsigned Max - example: [] - syntax: - content: UMax = 9 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMin - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMin - id: UMin - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: UMin - nameWithType: AtomicRMWBinOp.UMin - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.UMin - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UMin - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unsigned Min - example: [] - syntax: - content: UMin = 10 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FAdd - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FAdd - id: FAdd - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: FAdd - nameWithType: AtomicRMWBinOp.FAdd - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FAdd - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FAdd - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Floating point addition - example: [] - syntax: - content: FAdd = 11 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FSub - commentId: F:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FSub - id: FSub - parent: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - langs: - - csharp - - vb - name: FSub - nameWithType: AtomicRMWBinOp.FSub - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.FSub - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FSub - path: ../src/Ubiquity.NET.Llvm/Instructions/AtomicRMW.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Floating point subtraction - example: [] - syntax: - content: FSub = 12 - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.html - name: AtomicRMWBinOp - nameWithType: AtomicRMWBinOp - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.BinaryOperator.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.BinaryOperator.yml deleted file mode 100644 index 4848c7e788..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.BinaryOperator.yml +++ /dev/null @@ -1,944 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - id: BinaryOperator - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: BinaryOperator - nameWithType: BinaryOperator - fullName: Ubiquity.NET.Llvm.Instructions.BinaryOperator - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/BinaryOperator.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BinaryOperator - path: ../src/Ubiquity.NET.Llvm/Instructions/BinaryOperator.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Base class for a binary operator - example: [] - syntax: - content: 'public sealed class BinaryOperator : Instruction, IEquatable' - content.vb: Public NotInheritable Class BinaryOperator Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.BinaryOperator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.BinaryOperator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.BinaryOperator.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(BinaryOperator, uint) - nameWithType: InstructionExtensions.SetAlignment(BinaryOperator, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.BinaryOperator, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of BinaryOperator)(BinaryOperator, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.BinaryOperator)(Ubiquity.NET.Llvm.Instructions.BinaryOperator, UInteger) - name.vb: SetAlignment(Of BinaryOperator)(BinaryOperator, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.BinaryOperator,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.BinaryOperator,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(BinaryOperator, bool) - nameWithType: InstructionExtensions.SetIsVolatile(BinaryOperator, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.BinaryOperator, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of BinaryOperator)(BinaryOperator, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.BinaryOperator)(Ubiquity.NET.Llvm.Instructions.BinaryOperator, Boolean) - name.vb: SetIsVolatile(Of BinaryOperator)(BinaryOperator, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.BinaryOperator,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.BinaryOperator,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(BinaryOperator, string) - nameWithType: ValueExtensions.RegisterName(BinaryOperator, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.BinaryOperator, string) - nameWithType.vb: ValueExtensions.RegisterName(Of BinaryOperator)(BinaryOperator, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.BinaryOperator)(Ubiquity.NET.Llvm.Instructions.BinaryOperator, String) - name.vb: RegisterName(Of BinaryOperator)(BinaryOperator, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.BinaryOperator,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.BinaryOperator,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.BitCast.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.BitCast.yml deleted file mode 100644 index 33059577a3..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.BitCast.yml +++ /dev/null @@ -1,976 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.BitCast - commentId: T:Ubiquity.NET.Llvm.Instructions.BitCast - id: BitCast - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: BitCast - nameWithType: BitCast - fullName: Ubiquity.NET.Llvm.Instructions.BitCast - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/BitCast.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitCast - path: ../src/Ubiquity.NET.Llvm/Instructions/BitCast.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: This class represents a no-op cast from one type to another - example: [] - syntax: - content: 'public sealed class BitCast : Cast, IEquatable' - content.vb: Public NotInheritable Class BitCast Inherits Cast Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.BitCast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.BitCast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.BitCast.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.BitCast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(BitCast, uint) - nameWithType: InstructionExtensions.SetAlignment(BitCast, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.BitCast, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of BitCast)(BitCast, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.BitCast)(Ubiquity.NET.Llvm.Instructions.BitCast, UInteger) - name.vb: SetAlignment(Of BitCast)(BitCast, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.BitCast,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.BitCast,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.BitCast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(BitCast, bool) - nameWithType: InstructionExtensions.SetIsVolatile(BitCast, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.BitCast, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of BitCast)(BitCast, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.BitCast)(Ubiquity.NET.Llvm.Instructions.BitCast, Boolean) - name.vb: SetIsVolatile(Of BitCast)(BitCast, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.BitCast,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.BitCast,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.BitCast.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(BitCast, string) - nameWithType: ValueExtensions.RegisterName(BitCast, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.BitCast, string) - nameWithType.vb: ValueExtensions.RegisterName(Of BitCast)(BitCast, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.BitCast)(Ubiquity.NET.Llvm.Instructions.BitCast, String) - name.vb: RegisterName(Of BitCast)(BitCast, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.BitCast,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.BitCast,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Branch.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Branch.yml deleted file mode 100644 index c9df0ca65d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Branch.yml +++ /dev/null @@ -1,1039 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Branch - commentId: T:Ubiquity.NET.Llvm.Instructions.Branch - id: Branch - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Branch.Condition - - Ubiquity.NET.Llvm.Instructions.Branch.IsConditional - langs: - - csharp - - vb - name: Branch - nameWithType: Branch - fullName: Ubiquity.NET.Llvm.Instructions.Branch - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Branch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Branch - path: ../src/Ubiquity.NET.Llvm/Instructions/Branch.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Branch instruction - example: [] - syntax: - content: 'public sealed class Branch : Terminator, IEquatable' - content.vb: Public NotInheritable Class Branch Inherits Terminator Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Branch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Branch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Branch.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Branch.IsConditional - commentId: P:Ubiquity.NET.Llvm.Instructions.Branch.IsConditional - id: IsConditional - parent: Ubiquity.NET.Llvm.Instructions.Branch - langs: - - csharp - - vb - name: IsConditional - nameWithType: Branch.IsConditional - fullName: Ubiquity.NET.Llvm.Instructions.Branch.IsConditional - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Branch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsConditional - path: ../src/Ubiquity.NET.Llvm/Instructions/Branch.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a value indicating whether this branch is conditional - example: [] - syntax: - content: public bool IsConditional { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsConditional As Boolean - overload: Ubiquity.NET.Llvm.Instructions.Branch.IsConditional* -- uid: Ubiquity.NET.Llvm.Instructions.Branch.Condition - commentId: P:Ubiquity.NET.Llvm.Instructions.Branch.Condition - id: Condition - parent: Ubiquity.NET.Llvm.Instructions.Branch - langs: - - csharp - - vb - name: Condition - nameWithType: Branch.Condition - fullName: Ubiquity.NET.Llvm.Instructions.Branch.Condition - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Branch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Condition - path: ../src/Ubiquity.NET.Llvm/Instructions/Branch.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the condition for the branch, if any - example: [] - syntax: - content: public Value? Condition { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Value - content.vb: Public ReadOnly Property Condition As Value - overload: Ubiquity.NET.Llvm.Instructions.Branch.Condition* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Branch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Branch, uint) - nameWithType: InstructionExtensions.SetAlignment(Branch, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Branch, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Branch)(Branch, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Branch)(Ubiquity.NET.Llvm.Instructions.Branch, UInteger) - name.vb: SetAlignment(Of Branch)(Branch, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Branch,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Branch,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Branch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Branch, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Branch, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Branch, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Branch)(Branch, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Branch)(Ubiquity.NET.Llvm.Instructions.Branch, Boolean) - name.vb: SetIsVolatile(Of Branch)(Branch, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Branch,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Branch,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Branch.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Branch, string) - nameWithType: ValueExtensions.RegisterName(Branch, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Branch, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Branch)(Branch, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Branch)(Ubiquity.NET.Llvm.Instructions.Branch, String) - name.vb: RegisterName(Of Branch)(Branch, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Branch,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Branch,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - href: Ubiquity.NET.Llvm.Instructions.Branch.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Branch.IsConditional* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Branch.IsConditional - href: Ubiquity.NET.Llvm.Instructions.Branch.html#Ubiquity_NET_Llvm_Instructions_Branch_IsConditional - name: IsConditional - nameWithType: Branch.IsConditional - fullName: Ubiquity.NET.Llvm.Instructions.Branch.IsConditional -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Instructions.Branch.Condition* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Branch.Condition - href: Ubiquity.NET.Llvm.Instructions.Branch.html#Ubiquity_NET_Llvm_Instructions_Branch_Condition - name: Condition - nameWithType: Branch.Condition - fullName: Ubiquity.NET.Llvm.Instructions.Branch.Condition diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CallBr.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CallBr.yml deleted file mode 100644 index 2c884eed0f..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CallBr.yml +++ /dev/null @@ -1,2726 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.CallBr - commentId: T:Ubiquity.NET.Llvm.Instructions.CallBr - id: CallBr - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallBr.Attributes - - Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction - langs: - - csharp - - vb - name: CallBr - nameWithType: CallBr - fullName: Ubiquity.NET.Llvm.Instructions.CallBr - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallBr - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: CallBr instruction - example: [] - syntax: - content: 'public sealed class CallBr : Instruction, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public NotInheritable Class CallBr Inherits Instruction Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - seealso: - - linkType: HRef - linkId: xref:llvm_langref#i-callbr - altText: xref:llvm_langref#i-callbr - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction - id: TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: TargetFunction - nameWithType: CallBr.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetFunction - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the target function of the call - example: [] - syntax: - content: public Function TargetFunction { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Function - content.vb: Public ReadOnly Property TargetFunction As [Function] - overload: Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction* -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallBr.Attributes - id: Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: Attributes - nameWithType: CallBr.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.Attributes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Attributes - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the attributes for this call site - example: [] - syntax: - content: public IAttributeDictionary Attributes { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.IAttributeDictionary - content.vb: Public ReadOnly Property Attributes As IAttributeDictionary - overload: Ubiquity.NET.Llvm.Instructions.CallBr.Attributes* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - id: AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallBr.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Adds an at a specified index - example: [] - syntax: - content: public void AddAttributeAtIndex(FunctionAttributeIndex index, AttributeValue attrib) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: attrib - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: Attribute to add - content.vb: Public Sub AddAttributeAtIndex(index As FunctionAttributeIndex, attrib As AttributeValue) - overload: Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallBr.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeCountAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the count of attributes on a given index - example: [] - syntax: - content: public uint GetAttributeCountAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the count for - return: - type: System.UInt32 - description: Number of attributes on the specified index - content.vb: Public Function GetAttributeCountAtIndex(index As FunctionAttributeIndex) As UInteger - overload: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallBr.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributesAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the attributes on a given index - example: [] - syntax: - content: public IEnumerable GetAttributesAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: index to get the attributes for - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Attributes for the index - content.vb: Public Function GetAttributesAtIndex(index As FunctionAttributeIndex) As IEnumerable(Of AttributeValue) - overload: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallBr.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 50 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a specific attribute at a given index - example: [] - syntax: - content: public AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Public Function GetAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) As AttributeValue - overload: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallBr.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a named attribute at a given index - example: [] - syntax: - content: public AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: name - type: System.String - description: name of the attribute to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Public Function GetAttributeAtIndex(index As FunctionAttributeIndex, name As String) As AttributeValue - overload: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - nameWithType.vb: CallBr.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallBr.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Removes an at a specified index - example: [] - syntax: - content: public void RemoveAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Attribute to Remove - content.vb: Public Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) - overload: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallBr - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallBr.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallBr.cs - startLine: 75 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Removes a named attribute at a specified index - example: [] - syntax: - content: public void RemoveAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: name - type: System.String - description: Name of the attribute to remove - content.vb: Public Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, name As String) - overload: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - nameWithType.vb: CallBr.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(CallBr, uint) - nameWithType: InstructionExtensions.SetAlignment(CallBr, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.CallBr, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of CallBr)(CallBr, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, UInteger) - name.vb: SetAlignment(Of CallBr)(CallBr, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CallBr,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CallBr,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(CallBr, bool) - nameWithType: InstructionExtensions.SetIsVolatile(CallBr, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.CallBr, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of CallBr)(CallBr, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Boolean) - name.vb: SetIsVolatile(Of CallBr)(CallBr, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CallBr,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CallBr,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(CallBr, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(CallBr, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of CallBr)(CallBr, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of CallBr)(CallBr, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(CallBr, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(CallBr, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of CallBr)(CallBr, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of CallBr)(CallBr, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(CallBr, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(CallBr, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of CallBr)(CallBr, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of CallBr)(CallBr, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(CallBr, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(CallBr, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of CallBr)(CallBr, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of CallBr)(CallBr, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(CallBr, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(CallBr, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of CallBr)(CallBr, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of CallBr)(CallBr, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(CallBr, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(CallBr, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of CallBr)(CallBr, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of CallBr)(CallBr, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(CallBr, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(CallBr, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of CallBr)(CallBr, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of CallBr)(CallBr, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(CallBr, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(CallBr, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of CallBr)(CallBr, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of CallBr)(CallBr, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.CallBr,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(CallBr, string) - nameWithType: ValueExtensions.RegisterName(CallBr, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.CallBr, string) - nameWithType.vb: ValueExtensions.RegisterName(Of CallBr)(CallBr, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.CallBr)(Ubiquity.NET.Llvm.Instructions.CallBr, String) - name.vb: RegisterName(Of CallBr)(CallBr, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CallBr,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CallBr,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction - href: Ubiquity.NET.Llvm.Instructions.CallBr.html#Ubiquity_NET_Llvm_Instructions_CallBr_TargetFunction - name: TargetFunction - nameWithType: CallBr.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.TargetFunction -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.Attributes* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallBr.Attributes - href: Ubiquity.NET.Llvm.Instructions.CallBr.html#Ubiquity_NET_Llvm_Instructions_CallBr_Attributes - name: Attributes - nameWithType: CallBr.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - commentId: P:Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - parent: Ubiquity.NET.Llvm.Values.IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html#Ubiquity_NET_Llvm_Values_IAttributeContainer_Attributes - name: Attributes - nameWithType: IAttributeContainer.Attributes - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeDictionary - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - name: IAttributeDictionary - nameWithType: IAttributeDictionary - fullName: Ubiquity.NET.Llvm.Values.IAttributeDictionary -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallBr.html#Ubiquity_NET_Llvm_Instructions_CallBr_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex - nameWithType: CallBr.AddAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.AddAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: IAttributeAccessor.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallBr.html#Ubiquity_NET_Llvm_Instructions_CallBr_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex - nameWithType: CallBr.GetAttributeCountAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeCountAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallBr.html#Ubiquity_NET_Llvm_Instructions_CallBr_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex - nameWithType: CallBr.GetAttributesAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributesAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of AttributeValue) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: IEnumerable(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallBr.html#Ubiquity_NET_Llvm_Instructions_CallBr_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex - nameWithType: CallBr.GetAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.GetAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - isExternal: true - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallBr.html#Ubiquity_NET_Llvm_Instructions_CallBr_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex - nameWithType: CallBr.RemoveAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallBr.RemoveAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - isExternal: true - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CallInstruction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CallInstruction.yml deleted file mode 100644 index 6ea3394cd3..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CallInstruction.yml +++ /dev/null @@ -1,2802 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - id: CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - langs: - - csharp - - vb - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallInstruction - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Call instruction - example: [] - syntax: - content: 'public class CallInstruction : Instruction, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public Class CallInstruction Inherits Instruction Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - seealso: - - linkType: HRef - linkId: xref:llvm_langref#call-instruction - altText: xref:llvm_langref#call-instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.Intrinsic - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - id: TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetFunction - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the target function of the call - example: [] - syntax: - content: public Function TargetFunction { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Function - content.vb: Public ReadOnly Property TargetFunction As [Function] - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction* -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - id: IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsTailCall - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets a value indicating whether the call is a tail call - example: [] - syntax: - content: public bool IsTailCall { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property IsTailCall As Boolean - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall* -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - id: Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Attributes - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the attributes for this call site - example: [] - syntax: - content: public IAttributeDictionary Attributes { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.IAttributeDictionary - content.vb: Public ReadOnly Property Attributes As IAttributeDictionary - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - id: AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Adds an at a specified index - example: [] - syntax: - content: public void AddAttributeAtIndex(FunctionAttributeIndex index, AttributeValue attrib) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: attrib - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: Attribute to add - content.vb: Public Sub AddAttributeAtIndex(index As FunctionAttributeIndex, attrib As AttributeValue) - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeCountAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the count of attributes on a given index - example: [] - syntax: - content: public uint GetAttributeCountAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the count for - return: - type: System.UInt32 - description: Number of attributes on the specified index - content.vb: Public Function GetAttributeCountAtIndex(index As FunctionAttributeIndex) As UInteger - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributesAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the attributes on a given index - example: [] - syntax: - content: public IEnumerable GetAttributesAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: index to get the attributes for - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Attributes for the index - content.vb: Public Function GetAttributesAtIndex(index As FunctionAttributeIndex) As IEnumerable(Of AttributeValue) - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a specific attribute at a given index - example: [] - syntax: - content: public AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Public Function GetAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) As AttributeValue - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a named attribute at a given index - example: [] - syntax: - content: public AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: name - type: System.String - description: name of the attribute to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Public Function GetAttributeAtIndex(index As FunctionAttributeIndex, name As String) As AttributeValue - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Removes an at a specified index - example: [] - syntax: - content: public void RemoveAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Attribute to Remove - content.vb: Public Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/CallInstruction.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Removes a named attribute at a specified index - example: [] - syntax: - content: public void RemoveAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: name - type: System.String - description: Name of the attribute to remove - content.vb: Public Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, name As String) - overload: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(CallInstruction, uint) - nameWithType: InstructionExtensions.SetAlignment(CallInstruction, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.CallInstruction, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of CallInstruction)(CallInstruction, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, UInteger) - name.vb: SetAlignment(Of CallInstruction)(CallInstruction, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(CallInstruction, bool) - nameWithType: InstructionExtensions.SetIsVolatile(CallInstruction, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.CallInstruction, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of CallInstruction)(CallInstruction, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Boolean) - name.vb: SetIsVolatile(Of CallInstruction)(CallInstruction, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(CallInstruction, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(CallInstruction, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(CallInstruction, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(CallInstruction, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(CallInstruction, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(CallInstruction, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(CallInstruction, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(CallInstruction, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(CallInstruction, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(CallInstruction, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(CallInstruction, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(CallInstruction, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(CallInstruction, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(CallInstruction, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(CallInstruction, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(CallInstruction, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of CallInstruction)(CallInstruction, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(CallInstruction, string) - nameWithType: ValueExtensions.RegisterName(CallInstruction, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.CallInstruction, string) - nameWithType.vb: ValueExtensions.RegisterName(Of CallInstruction)(CallInstruction, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.CallInstruction)(Ubiquity.NET.Llvm.Instructions.CallInstruction, String) - name.vb: RegisterName(Of CallInstruction)(CallInstruction, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CallInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - commentId: P:Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - parent: Ubiquity.NET.Llvm.Values.IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html#Ubiquity_NET_Llvm_Values_IAttributeContainer_Attributes - name: Attributes - nameWithType: IAttributeContainer.Attributes - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeDictionary - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - name: IAttributeDictionary - nameWithType: IAttributeDictionary - fullName: Ubiquity.NET.Llvm.Values.IAttributeDictionary -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex - nameWithType: CallInstruction.AddAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: IAttributeAccessor.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex - nameWithType: CallInstruction.GetAttributeCountAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex - nameWithType: CallInstruction.GetAttributesAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of AttributeValue) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: IEnumerable(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex - nameWithType: CallInstruction.GetAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - isExternal: true - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex - nameWithType: CallInstruction.RemoveAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - isExternal: true - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Cast.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Cast.yml deleted file mode 100644 index cec197135a..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Cast.yml +++ /dev/null @@ -1,1112 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - id: Cast - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - langs: - - csharp - - vb - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Cast.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cast - path: ../src/Ubiquity.NET.Llvm/Instructions/Cast.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Base class for cast instructions - example: [] - syntax: - content: 'public class Cast : UnaryInstruction, IEquatable' - content.vb: Public Class Cast Inherits UnaryInstruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - - Ubiquity.NET.Llvm.Instructions.BitCast - - Ubiquity.NET.Llvm.Instructions.FPExt - - Ubiquity.NET.Llvm.Instructions.FPToSI - - Ubiquity.NET.Llvm.Instructions.FPToUI - - Ubiquity.NET.Llvm.Instructions.FPTrunc - - Ubiquity.NET.Llvm.Instructions.IntToPointer - - Ubiquity.NET.Llvm.Instructions.PointerToInt - - Ubiquity.NET.Llvm.Instructions.SIToFP - - Ubiquity.NET.Llvm.Instructions.SignExtend - - Ubiquity.NET.Llvm.Instructions.Trunc - - Ubiquity.NET.Llvm.Instructions.UIToFP - - Ubiquity.NET.Llvm.Instructions.ZeroExtend - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Cast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Cast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Cast.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - id: FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - langs: - - csharp - - vb - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Cast.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FromType - path: ../src/Ubiquity.NET.Llvm/Instructions/Cast.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the source type of the cast - example: [] - syntax: - content: public ITypeRef FromType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property FromType As ITypeRef - overload: Ubiquity.NET.Llvm.Instructions.Cast.FromType* -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - id: ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - langs: - - csharp - - vb - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Cast.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToType - path: ../src/Ubiquity.NET.Llvm/Instructions/Cast.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the destination type of the cast - example: [] - syntax: - content: public ITypeRef ToType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property ToType As ITypeRef - overload: Ubiquity.NET.Llvm.Instructions.Cast.ToType* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Cast, uint) - nameWithType: InstructionExtensions.SetAlignment(Cast, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Cast, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Cast)(Cast, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Cast)(Ubiquity.NET.Llvm.Instructions.Cast, UInteger) - name.vb: SetAlignment(Of Cast)(Cast, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Cast,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Cast,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Cast, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Cast, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Cast, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Cast)(Cast, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Cast)(Ubiquity.NET.Llvm.Instructions.Cast, Boolean) - name.vb: SetIsVolatile(Of Cast)(Cast, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Cast,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Cast,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Cast, string) - nameWithType: ValueExtensions.RegisterName(Cast, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Cast, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Cast)(Cast, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Cast)(Ubiquity.NET.Llvm.Instructions.Cast, String) - name.vb: RegisterName(Of Cast)(Cast, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Cast,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Cast,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Cast.FromType - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Cast.ToType - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchPad.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchPad.yml deleted file mode 100644 index 6008eccf66..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchPad.yml +++ /dev/null @@ -1,1041 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchPad - id: CatchPad - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch - langs: - - csharp - - vb - name: CatchPad - nameWithType: CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchPad - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchPad - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchPad.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Marks a as a catch handler - remarks: >- - Like the , instruction this must be the first non-phi instruction - - in the block. - example: [] - syntax: - content: 'public sealed class CatchPad : FuncletPad, IEquatable' - content.vb: Public NotInheritable Class CatchPad Inherits FuncletPad Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#catchpad-instruction - altText: LLVM catchpad Instruction - - linkType: HRef - linkId: xref:llvm_exception_handling#exception-handling-in-llvm - altText: Exception Handling in LLVM - - linkType: HRef - linkId: xref:llvm_exception_handling#wineh - altText: Exception Handling using the Windows Runtime - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.FuncletPad - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - - Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.CatchPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.CatchPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.CatchPad.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch - id: CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions.CatchPad - langs: - - csharp - - vb - name: CatchSwitch - nameWithType: CatchPad.CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchSwitch - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchPad.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the for this pad - example: [] - syntax: - content: public CatchSwitch CatchSwitch { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.CatchSwitch - content.vb: Public Property CatchSwitch As CatchSwitch - overload: Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch* -references: -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad - commentId: T:Ubiquity.NET.Llvm.Instructions.LandingPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - name: LandingPad - nameWithType: LandingPad - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - commentId: T:Ubiquity.NET.Llvm.Instructions.FuncletPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - name: FuncletPad - nameWithType: FuncletPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - commentId: P:Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - parent: Ubiquity.NET.Llvm.Instructions.FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html#Ubiquity_NET_Llvm_Instructions_FuncletPad_ParentPad - name: ParentPad - nameWithType: FuncletPad.ParentPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - commentId: P:Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - parent: Ubiquity.NET.Llvm.Instructions.FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html#Ubiquity_NET_Llvm_Instructions_FuncletPad_ArgOperands - name: ArgOperands - nameWithType: FuncletPad.ArgOperands - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(CatchPad, uint) - nameWithType: InstructionExtensions.SetAlignment(CatchPad, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.CatchPad, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of CatchPad)(CatchPad, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.CatchPad)(Ubiquity.NET.Llvm.Instructions.CatchPad, UInteger) - name.vb: SetAlignment(Of CatchPad)(CatchPad, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CatchPad,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CatchPad,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(CatchPad, bool) - nameWithType: InstructionExtensions.SetIsVolatile(CatchPad, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.CatchPad, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of CatchPad)(CatchPad, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.CatchPad)(Ubiquity.NET.Llvm.Instructions.CatchPad, Boolean) - name.vb: SetIsVolatile(Of CatchPad)(CatchPad, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CatchPad,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CatchPad,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(CatchPad, string) - nameWithType: ValueExtensions.RegisterName(CatchPad, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.CatchPad, string) - nameWithType.vb: ValueExtensions.RegisterName(Of CatchPad)(CatchPad, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.CatchPad)(Ubiquity.NET.Llvm.Instructions.CatchPad, String) - name.vb: RegisterName(Of CatchPad)(CatchPad, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CatchPad,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CatchPad,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - name: CatchSwitch - nameWithType: CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html#Ubiquity_NET_Llvm_Instructions_CatchPad_CatchSwitch - name: CatchSwitch - nameWithType: CatchPad.CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchReturn.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchReturn.yml deleted file mode 100644 index 4aef8db82e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchReturn.yml +++ /dev/null @@ -1,1061 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchReturn - id: CatchReturn - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad - - Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad - langs: - - csharp - - vb - name: CatchReturn - nameWithType: CatchReturn - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchReturn.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchReturn - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchReturn.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Catch return instruction - example: [] - syntax: - content: 'public sealed class CatchReturn : Terminator, IEquatable' - content.vb: Public NotInheritable Class CatchReturn Inherits Terminator Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.CatchReturn.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.CatchReturn.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.CatchReturn.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad - id: CatchPad - parent: Ubiquity.NET.Llvm.Instructions.CatchReturn - langs: - - csharp - - vb - name: CatchPad - nameWithType: CatchReturn.CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchReturn.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchPad - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchReturn.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the instruction associated with this - example: [] - syntax: - content: public CatchPad CatchPad { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.CatchPad - content.vb: Public ReadOnly Property CatchPad As CatchPad - overload: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad* -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad - id: CatchSwitchParentPad - parent: Ubiquity.NET.Llvm.Instructions.CatchReturn - langs: - - csharp - - vb - name: CatchSwitchParentPad - nameWithType: CatchReturn.CatchSwitchParentPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchReturn.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchSwitchParentPad - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchReturn.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: >- - Gets the property from the - of the property - example: [] - syntax: - content: public Value CatchSwitchParentPad { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Value - content.vb: Public ReadOnly Property CatchSwitchParentPad As Value - overload: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(CatchReturn, uint) - nameWithType: InstructionExtensions.SetAlignment(CatchReturn, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.CatchReturn, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of CatchReturn)(CatchReturn, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.CatchReturn)(Ubiquity.NET.Llvm.Instructions.CatchReturn, UInteger) - name.vb: SetAlignment(Of CatchReturn)(CatchReturn, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CatchReturn,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CatchReturn,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(CatchReturn, bool) - nameWithType: InstructionExtensions.SetIsVolatile(CatchReturn, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.CatchReturn, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of CatchReturn)(CatchReturn, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.CatchReturn)(Ubiquity.NET.Llvm.Instructions.CatchReturn, Boolean) - name.vb: SetIsVolatile(Of CatchReturn)(CatchReturn, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CatchReturn,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CatchReturn,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(CatchReturn, string) - nameWithType: ValueExtensions.RegisterName(CatchReturn, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.CatchReturn, string) - nameWithType.vb: ValueExtensions.RegisterName(Of CatchReturn)(CatchReturn, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.CatchReturn)(Ubiquity.NET.Llvm.Instructions.CatchReturn, String) - name.vb: RegisterName(Of CatchReturn)(CatchReturn, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CatchReturn,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CatchReturn,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html#Ubiquity_NET_Llvm_Instructions_CatchReturn_CatchPad - name: CatchPad - nameWithType: CatchReturn.CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - name: CatchReturn - nameWithType: CatchReturn - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html#Ubiquity_NET_Llvm_Instructions_CatchReturn_CatchPad - name: CatchPad - nameWithType: CatchReturn.CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchPad -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - name: CatchPad - nameWithType: CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchPad -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html#Ubiquity_NET_Llvm_Instructions_CatchSwitch_ParentPad - name: ParentPad - nameWithType: CatchSwitch.ParentPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html#Ubiquity_NET_Llvm_Instructions_CatchPad_CatchSwitch - name: CatchSwitch - nameWithType: CatchPad.CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchPad.CatchSwitch -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html#Ubiquity_NET_Llvm_Instructions_CatchReturn_CatchSwitchParentPad - name: CatchSwitchParentPad - nameWithType: CatchReturn.CatchSwitchParentPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn.CatchSwitchParentPad diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchSwitch.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchSwitch.yml deleted file mode 100644 index e74b4e3aea..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CatchSwitch.yml +++ /dev/null @@ -1,1145 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchSwitch - id: CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination - - Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad - - Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination - - Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller - langs: - - csharp - - vb - name: CatchSwitch - nameWithType: CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchSwitch - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: >- - Describes the set of possible catch handlers that may be executed by an - EH personality routine - example: [] - syntax: - content: 'public sealed class CatchSwitch : Instruction, IEquatable' - content.vb: Public NotInheritable Class CatchSwitch Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#i-catchswitch - altText: LLVM catchswitch instruction - - linkType: HRef - linkId: xref:llvm_exception_handling#exception-handling-in-llvm - altText: Exception Handling in LLVM - - linkType: HRef - linkId: xref:llvm_exception_handling#wineh - altText: Exception Handling using the Windows Runtime - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.CatchSwitch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.CatchSwitch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.CatchSwitch.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad - id: ParentPad - parent: Ubiquity.NET.Llvm.Instructions.CatchSwitch - langs: - - csharp - - vb - name: ParentPad - nameWithType: CatchSwitch.ParentPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ParentPad - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the Parent pad for this - example: [] - syntax: - content: public Value ParentPad { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Value - content.vb: Public Property ParentPad As Value - overload: Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad* -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination - id: HasUnwindDestination - parent: Ubiquity.NET.Llvm.Instructions.CatchSwitch - langs: - - csharp - - vb - name: HasUnwindDestination - nameWithType: CatchSwitch.HasUnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HasUnwindDestination - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a value indicating whether this has an unwind destination - example: [] - syntax: - content: public bool HasUnwindDestination { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property HasUnwindDestination As Boolean - overload: Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination* -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller - id: UnwindsToCaller - parent: Ubiquity.NET.Llvm.Instructions.CatchSwitch - langs: - - csharp - - vb - name: UnwindsToCaller - nameWithType: CatchSwitch.UnwindsToCaller - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnwindsToCaller - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a value indicating whether this unwinds to the caller - example: [] - syntax: - content: public bool UnwindsToCaller { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property UnwindsToCaller As Boolean - overload: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller* -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination - id: UnwindDestination - parent: Ubiquity.NET.Llvm.Instructions.CatchSwitch - langs: - - csharp - - vb - name: UnwindDestination - nameWithType: CatchSwitch.UnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnwindDestination - path: ../src/Ubiquity.NET.Llvm/Instructions/CatchSwitch.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the Unwind destination for this - remarks: >- - While retrieving the destination may return null, setting with null will generate - - an exception. In particular if is false - - then the UnwindDestination is null. - example: [] - syntax: - content: public BasicBlock? UnwindDestination { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - content.vb: Public Property UnwindDestination As BasicBlock - overload: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(CatchSwitch, uint) - nameWithType: InstructionExtensions.SetAlignment(CatchSwitch, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.CatchSwitch, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of CatchSwitch)(CatchSwitch, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.CatchSwitch)(Ubiquity.NET.Llvm.Instructions.CatchSwitch, UInteger) - name.vb: SetAlignment(Of CatchSwitch)(CatchSwitch, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CatchSwitch,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CatchSwitch,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(CatchSwitch, bool) - nameWithType: InstructionExtensions.SetIsVolatile(CatchSwitch, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.CatchSwitch, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of CatchSwitch)(CatchSwitch, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.CatchSwitch)(Ubiquity.NET.Llvm.Instructions.CatchSwitch, Boolean) - name.vb: SetIsVolatile(Of CatchSwitch)(CatchSwitch, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CatchSwitch,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CatchSwitch,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(CatchSwitch, string) - nameWithType: ValueExtensions.RegisterName(CatchSwitch, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.CatchSwitch, string) - nameWithType.vb: ValueExtensions.RegisterName(Of CatchSwitch)(CatchSwitch, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.CatchSwitch)(Ubiquity.NET.Llvm.Instructions.CatchSwitch, String) - name.vb: RegisterName(Of CatchSwitch)(CatchSwitch, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CatchSwitch,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CatchSwitch,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - name: CatchSwitch - nameWithType: CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html#Ubiquity_NET_Llvm_Instructions_CatchSwitch_ParentPad - name: ParentPad - nameWithType: CatchSwitch.ParentPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.ParentPad -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html#Ubiquity_NET_Llvm_Instructions_CatchSwitch_HasUnwindDestination - name: HasUnwindDestination - nameWithType: CatchSwitch.HasUnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html#Ubiquity_NET_Llvm_Instructions_CatchSwitch_UnwindsToCaller - name: UnwindsToCaller - nameWithType: CatchSwitch.UnwindsToCaller - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindsToCaller -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination - commentId: P:Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html#Ubiquity_NET_Llvm_Instructions_CatchSwitch_HasUnwindDestination - name: HasUnwindDestination - nameWithType: CatchSwitch.HasUnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.HasUnwindDestination -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html#Ubiquity_NET_Llvm_Instructions_CatchSwitch_UnwindDestination - name: UnwindDestination - nameWithType: CatchSwitch.UnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch.UnwindDestination -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CleanupPad.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CleanupPad.yml deleted file mode 100644 index d476d5942a..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CleanupPad.yml +++ /dev/null @@ -1,985 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupPad - id: CleanupPad - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: CleanupPad - nameWithType: CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.CleanupPad - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CleanupPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CleanupPad - path: ../src/Ubiquity.NET.Llvm/Instructions/CleanupPad.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Specifies that a is a cleanup block - example: [] - syntax: - content: 'public sealed class CleanupPad : FuncletPad, IEquatable' - content.vb: Public NotInheritable Class CleanupPad Inherits FuncletPad Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#i-cleanuppad - altText: LLVM cleanuppad instruction - - linkType: HRef - linkId: xref:llvm_exception_handling#exception-handling-in-llvm - altText: Exception Handling in LLVM - - linkType: HRef - linkId: xref:llvm_exception_handling#wineh - altText: Exception Handling using the Windows Runtime - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.FuncletPad - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - - Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.CleanupPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.CleanupPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.CleanupPad.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - commentId: T:Ubiquity.NET.Llvm.Instructions.FuncletPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - name: FuncletPad - nameWithType: FuncletPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - commentId: P:Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - parent: Ubiquity.NET.Llvm.Instructions.FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html#Ubiquity_NET_Llvm_Instructions_FuncletPad_ParentPad - name: ParentPad - nameWithType: FuncletPad.ParentPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - commentId: P:Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - parent: Ubiquity.NET.Llvm.Instructions.FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html#Ubiquity_NET_Llvm_Instructions_FuncletPad_ArgOperands - name: ArgOperands - nameWithType: FuncletPad.ArgOperands - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CleanupPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(CleanupPad, uint) - nameWithType: InstructionExtensions.SetAlignment(CleanupPad, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.CleanupPad, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of CleanupPad)(CleanupPad, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.CleanupPad)(Ubiquity.NET.Llvm.Instructions.CleanupPad, UInteger) - name.vb: SetAlignment(Of CleanupPad)(CleanupPad, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CleanupPad,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CleanupPad,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CleanupPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(CleanupPad, bool) - nameWithType: InstructionExtensions.SetIsVolatile(CleanupPad, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.CleanupPad, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of CleanupPad)(CleanupPad, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.CleanupPad)(Ubiquity.NET.Llvm.Instructions.CleanupPad, Boolean) - name.vb: SetIsVolatile(Of CleanupPad)(CleanupPad, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CleanupPad,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CleanupPad,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CleanupPad.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(CleanupPad, string) - nameWithType: ValueExtensions.RegisterName(CleanupPad, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.CleanupPad, string) - nameWithType.vb: ValueExtensions.RegisterName(Of CleanupPad)(CleanupPad, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.CleanupPad)(Ubiquity.NET.Llvm.Instructions.CleanupPad, String) - name.vb: RegisterName(Of CleanupPad)(CleanupPad, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CleanupPad,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CleanupPad,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CleanupReturn.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CleanupReturn.yml deleted file mode 100644 index 81ba1e86a1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.CleanupReturn.yml +++ /dev/null @@ -1,1164 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupReturn - id: CleanupReturn - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad - - Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination - - Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination - - Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller - langs: - - csharp - - vb - name: CleanupReturn - nameWithType: CleanupReturn - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CleanupReturn - path: ../src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction that indicates to the personality function that one it transferred control to has ended - example: [] - syntax: - content: 'public sealed class CleanupReturn : Terminator, IEquatable' - content.vb: Public NotInheritable Class CleanupReturn Inherits Terminator Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#cleanupret-instruction - altText: LLVM cleanupret instruction - - linkType: HRef - linkId: xref:llvm_exception_handling#exception-handling-in-llvm - altText: Exception Handling in LLVM - - linkType: HRef - linkId: xref:llvm_exception_handling#wineh - altText: Exception Handling using the Windows Runtime - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.CleanupReturn.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.CleanupReturn.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.CleanupReturn.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad - commentId: P:Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad - id: CleanupPad - parent: Ubiquity.NET.Llvm.Instructions.CleanupReturn - langs: - - csharp - - vb - name: CleanupPad - nameWithType: CleanupReturn.CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CleanupPad - path: ../src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the for this instruction - example: [] - syntax: - content: public CleanupPad CleanupPad { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.CleanupPad - content.vb: Public Property CleanupPad As CleanupPad - overload: Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad* -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination - commentId: P:Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination - id: HasUnwindDestination - parent: Ubiquity.NET.Llvm.Instructions.CleanupReturn - langs: - - csharp - - vb - name: HasUnwindDestination - nameWithType: CleanupReturn.HasUnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HasUnwindDestination - path: ../src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a value indicating whether this has an unwind destination - example: [] - syntax: - content: public bool HasUnwindDestination { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property HasUnwindDestination As Boolean - overload: Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination* -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller - commentId: P:Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller - id: UnwindsToCaller - parent: Ubiquity.NET.Llvm.Instructions.CleanupReturn - langs: - - csharp - - vb - name: UnwindsToCaller - nameWithType: CleanupReturn.UnwindsToCaller - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnwindsToCaller - path: ../src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a value indicating whether this unwinds to the caller - example: [] - syntax: - content: public bool UnwindsToCaller { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property UnwindsToCaller As Boolean - overload: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller* -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination - commentId: P:Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination - id: UnwindDestination - parent: Ubiquity.NET.Llvm.Instructions.CleanupReturn - langs: - - csharp - - vb - name: UnwindDestination - nameWithType: CleanupReturn.UnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnwindDestination - path: ../src/Ubiquity.NET.Llvm/Instructions/CleanupReturn.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the Unwind destination for this - remarks: >- - While retrieving the destination may return null, setting with null will generate - - an exception. In particular if is false - - then the UnwindDestination is null. - example: [] - syntax: - content: public BasicBlock? UnwindDestination { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - content.vb: Public Property UnwindDestination As BasicBlock - overload: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination* -references: -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad - commentId: P:Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html#Ubiquity_NET_Llvm_Instructions_CleanupReturn_CleanupPad - name: CleanupPad - nameWithType: CleanupReturn.CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(CleanupReturn, uint) - nameWithType: InstructionExtensions.SetAlignment(CleanupReturn, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.CleanupReturn, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of CleanupReturn)(CleanupReturn, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.CleanupReturn)(Ubiquity.NET.Llvm.Instructions.CleanupReturn, UInteger) - name.vb: SetAlignment(Of CleanupReturn)(CleanupReturn, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CleanupReturn,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.CleanupReturn,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(CleanupReturn, bool) - nameWithType: InstructionExtensions.SetIsVolatile(CleanupReturn, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.CleanupReturn, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of CleanupReturn)(CleanupReturn, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.CleanupReturn)(Ubiquity.NET.Llvm.Instructions.CleanupReturn, Boolean) - name.vb: SetIsVolatile(Of CleanupReturn)(CleanupReturn, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CleanupReturn,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.CleanupReturn,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(CleanupReturn, string) - nameWithType: ValueExtensions.RegisterName(CleanupReturn, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.CleanupReturn, string) - nameWithType.vb: ValueExtensions.RegisterName(Of CleanupReturn)(CleanupReturn, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.CleanupReturn)(Ubiquity.NET.Llvm.Instructions.CleanupReturn, String) - name.vb: RegisterName(Of CleanupReturn)(CleanupReturn, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CleanupReturn,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.CleanupReturn,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html#Ubiquity_NET_Llvm_Instructions_CleanupReturn_CleanupPad - name: CleanupPad - nameWithType: CleanupReturn.CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.CleanupPad -- uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - name: CleanupPad - nameWithType: CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.CleanupPad -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - name: CatchSwitch - nameWithType: CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html#Ubiquity_NET_Llvm_Instructions_CleanupReturn_HasUnwindDestination - name: HasUnwindDestination - nameWithType: CleanupReturn.HasUnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html#Ubiquity_NET_Llvm_Instructions_CleanupReturn_UnwindsToCaller - name: UnwindsToCaller - nameWithType: CleanupReturn.UnwindsToCaller - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindsToCaller -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination - commentId: P:Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html#Ubiquity_NET_Llvm_Instructions_CleanupReturn_HasUnwindDestination - name: HasUnwindDestination - nameWithType: CleanupReturn.HasUnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.HasUnwindDestination -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html#Ubiquity_NET_Llvm_Instructions_CleanupReturn_UnwindDestination - name: UnwindDestination - nameWithType: CleanupReturn.UnwindDestination - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn.UnwindDestination -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Cmp.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Cmp.yml deleted file mode 100644 index 79b429674c..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Cmp.yml +++ /dev/null @@ -1,1017 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Cmp - commentId: T:Ubiquity.NET.Llvm.Instructions.Cmp - id: Cmp - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - langs: - - csharp - - vb - name: Cmp - nameWithType: Cmp - fullName: Ubiquity.NET.Llvm.Instructions.Cmp - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Cmp.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cmp - path: ../src/Ubiquity.NET.Llvm/Instructions/Cmp.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Base class for compare instructions - example: [] - syntax: - content: 'public class Cmp : Instruction, IEquatable' - content.vb: Public Class Cmp Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.FCmp - - Ubiquity.NET.Llvm.Instructions.IntCmp - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Cmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Cmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Cmp.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - commentId: P:Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - id: Predicate - parent: Ubiquity.NET.Llvm.Instructions.Cmp - langs: - - csharp - - vb - name: Predicate - nameWithType: Cmp.Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Cmp.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Predicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Cmp.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the predicate for the comparison - example: [] - syntax: - content: public Predicate Predicate { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate - content.vb: Public ReadOnly Property Predicate As Predicate - overload: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Cmp, uint) - nameWithType: InstructionExtensions.SetAlignment(Cmp, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Cmp, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Cmp)(Cmp, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Cmp)(Ubiquity.NET.Llvm.Instructions.Cmp, UInteger) - name.vb: SetAlignment(Of Cmp)(Cmp, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Cmp,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Cmp,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Cmp, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Cmp, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Cmp, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Cmp)(Cmp, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Cmp)(Ubiquity.NET.Llvm.Instructions.Cmp, Boolean) - name.vb: SetIsVolatile(Of Cmp)(Cmp, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Cmp,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Cmp,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cmp.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Cmp, string) - nameWithType: ValueExtensions.RegisterName(Cmp, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Cmp, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Cmp)(Cmp, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Cmp)(Ubiquity.NET.Llvm.Instructions.Cmp, String) - name.vb: RegisterName(Of Cmp)(Cmp, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Cmp,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Cmp,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - href: Ubiquity.NET.Llvm.Instructions.Cmp.html#Ubiquity_NET_Llvm_Instructions_Cmp_Predicate - name: Predicate - nameWithType: Cmp.Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate - commentId: T:Ubiquity.NET.Llvm.Instructions.Predicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Predicate.html - name: Predicate - nameWithType: Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugDeclare.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugDeclare.yml deleted file mode 100644 index e996a5f7bc..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugDeclare.yml +++ /dev/null @@ -1,2268 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - commentId: T:Ubiquity.NET.Llvm.Instructions.DebugDeclare - id: DebugDeclare - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: DebugDeclare - nameWithType: DebugDeclare - fullName: Ubiquity.NET.Llvm.Instructions.DebugDeclare - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/DebugDeclare.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugDeclare - path: ../src/Ubiquity.NET.Llvm/Instructions/DebugDeclare.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Intrinsic LLVM IR instruction to declare Debug information for a - example: [] - syntax: - content: 'public sealed class DebugDeclare : DebugInfoIntrinsic, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public NotInheritable Class DebugDeclare Inherits DebugInfoIntrinsic Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#llvm-dbg-declare - altText: llvm.dbg.declare - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging - altText: LLVM Source Level Debugging - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.Intrinsic - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - name: DebugInfoIntrinsic - nameWithType: DebugInfoIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - parent: Ubiquity.NET.Llvm.Instructions.Intrinsic - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - name: LookupId(string) - nameWithType: Intrinsic.LookupId(string) - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(string) - nameWithType.vb: Intrinsic.LookupId(String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(String) - name.vb: LookupId(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(DebugDeclare, uint) - nameWithType: InstructionExtensions.SetAlignment(DebugDeclare, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.DebugDeclare, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of DebugDeclare)(DebugDeclare, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, UInteger) - name.vb: SetAlignment(Of DebugDeclare)(DebugDeclare, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(DebugDeclare, bool) - nameWithType: InstructionExtensions.SetIsVolatile(DebugDeclare, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.DebugDeclare, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of DebugDeclare)(DebugDeclare, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Boolean) - name.vb: SetIsVolatile(Of DebugDeclare)(DebugDeclare, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(DebugDeclare, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(DebugDeclare, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(DebugDeclare, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(DebugDeclare, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(DebugDeclare, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(DebugDeclare, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(DebugDeclare, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(DebugDeclare, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(DebugDeclare, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(DebugDeclare, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(DebugDeclare, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(DebugDeclare, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(DebugDeclare, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(DebugDeclare, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(DebugDeclare, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(DebugDeclare, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of DebugDeclare)(DebugDeclare, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(DebugDeclare, string) - nameWithType: ValueExtensions.RegisterName(DebugDeclare, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.DebugDeclare, string) - nameWithType.vb: ValueExtensions.RegisterName(Of DebugDeclare)(DebugDeclare, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.DebugDeclare)(Ubiquity.NET.Llvm.Instructions.DebugDeclare, String) - name.vb: RegisterName(Of DebugDeclare)(DebugDeclare, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.DebugDeclare,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.yml deleted file mode 100644 index ea6bff9f41..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.yml +++ /dev/null @@ -1,2281 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - id: DebugInfoIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: DebugInfoIntrinsic - nameWithType: DebugInfoIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/DebugInfoIntrinsic.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugInfoIntrinsic - path: ../src/Ubiquity.NET.Llvm/Instructions/DebugInfoIntrinsic.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Base class for debug information intrinsic functions in LLVM IR - example: [] - syntax: - content: 'public class DebugInfoIntrinsic : Intrinsic, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public Class DebugInfoIntrinsic Inherits Intrinsic Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.Intrinsic - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.DebugDeclare - - Ubiquity.NET.Llvm.Instructions.DebugLabel - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - parent: Ubiquity.NET.Llvm.Instructions.Intrinsic - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - name: LookupId(string) - nameWithType: Intrinsic.LookupId(string) - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(string) - nameWithType.vb: Intrinsic.LookupId(String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(String) - name.vb: LookupId(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(DebugInfoIntrinsic, uint) - nameWithType: InstructionExtensions.SetAlignment(DebugInfoIntrinsic, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, UInteger) - name.vb: SetAlignment(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(DebugInfoIntrinsic, bool) - nameWithType: InstructionExtensions.SetIsVolatile(DebugInfoIntrinsic, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Boolean) - name.vb: SetIsVolatile(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(DebugInfoIntrinsic, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(DebugInfoIntrinsic, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(DebugInfoIntrinsic, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(DebugInfoIntrinsic, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(DebugInfoIntrinsic, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(DebugInfoIntrinsic, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(DebugInfoIntrinsic, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(DebugInfoIntrinsic, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(DebugInfoIntrinsic, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(DebugInfoIntrinsic, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(DebugInfoIntrinsic, string) - nameWithType: ValueExtensions.RegisterName(DebugInfoIntrinsic, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, string) - nameWithType.vb: ValueExtensions.RegisterName(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic)(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic, String) - name.vb: RegisterName(Of DebugInfoIntrinsic)(DebugInfoIntrinsic, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugLabel.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugLabel.yml deleted file mode 100644 index 4c7d2f5e26..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.DebugLabel.yml +++ /dev/null @@ -1,2268 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - commentId: T:Ubiquity.NET.Llvm.Instructions.DebugLabel - id: DebugLabel - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: DebugLabel - nameWithType: DebugLabel - fullName: Ubiquity.NET.Llvm.Instructions.DebugLabel - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/DebugLabel.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugLabel - path: ../src/Ubiquity.NET.Llvm/Instructions/DebugLabel.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Intrinsic LLVM IR instruction to provide a Debug label for a - example: [] - syntax: - content: 'public sealed class DebugLabel : DebugInfoIntrinsic, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public NotInheritable Class DebugLabel Inherits DebugInfoIntrinsic Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - seealso: - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging#llvm-dbg-label - altText: llvm.dbg.declare - - linkType: HRef - linkId: xref:llvm_sourcelevel_debugging - altText: LLVM Source Level Debugging - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.Intrinsic - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - name: DebugInfoIntrinsic - nameWithType: DebugInfoIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - parent: Ubiquity.NET.Llvm.Instructions.Intrinsic - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - name: LookupId(string) - nameWithType: Intrinsic.LookupId(string) - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(string) - nameWithType.vb: Intrinsic.LookupId(String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(String) - name.vb: LookupId(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(DebugLabel, uint) - nameWithType: InstructionExtensions.SetAlignment(DebugLabel, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.DebugLabel, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of DebugLabel)(DebugLabel, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, UInteger) - name.vb: SetAlignment(Of DebugLabel)(DebugLabel, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(DebugLabel, bool) - nameWithType: InstructionExtensions.SetIsVolatile(DebugLabel, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.DebugLabel, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of DebugLabel)(DebugLabel, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Boolean) - name.vb: SetIsVolatile(Of DebugLabel)(DebugLabel, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(DebugLabel, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(DebugLabel, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(DebugLabel, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(DebugLabel, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(DebugLabel, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(DebugLabel, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(DebugLabel, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(DebugLabel, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(DebugLabel, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(DebugLabel, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(DebugLabel, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(DebugLabel, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(DebugLabel, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(DebugLabel, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(DebugLabel, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(DebugLabel, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of DebugLabel)(DebugLabel, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(DebugLabel, string) - nameWithType: ValueExtensions.RegisterName(DebugLabel, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.DebugLabel, string) - nameWithType.vb: ValueExtensions.RegisterName(Of DebugLabel)(DebugLabel, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.DebugLabel)(Ubiquity.NET.Llvm.Instructions.DebugLabel, String) - name.vb: RegisterName(Of DebugLabel)(DebugLabel, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.DebugLabel,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ExtractElement.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ExtractElement.yml deleted file mode 100644 index b9d0b40481..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ExtractElement.yml +++ /dev/null @@ -1,973 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - commentId: T:Ubiquity.NET.Llvm.Instructions.ExtractElement - id: ExtractElement - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: ExtractElement - nameWithType: ExtractElement - fullName: Ubiquity.NET.Llvm.Instructions.ExtractElement - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/ExtractElement.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExtractElement - path: ../src/Ubiquity.NET.Llvm/Instructions/ExtractElement.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to extract a single scalar element from a vector at a specified index. - example: [] - syntax: - content: 'public class ExtractElement : Instruction, IEquatable' - content.vb: Public Class ExtractElement Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#extractelement-instruction - altText: LLVM extractelement Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.ExtractElement.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.ExtractElement.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.ExtractElement.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ExtractElement.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(ExtractElement, uint) - nameWithType: InstructionExtensions.SetAlignment(ExtractElement, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.ExtractElement, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of ExtractElement)(ExtractElement, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.ExtractElement)(Ubiquity.NET.Llvm.Instructions.ExtractElement, UInteger) - name.vb: SetAlignment(Of ExtractElement)(ExtractElement, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ExtractElement,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ExtractElement,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ExtractElement.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(ExtractElement, bool) - nameWithType: InstructionExtensions.SetIsVolatile(ExtractElement, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.ExtractElement, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of ExtractElement)(ExtractElement, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.ExtractElement)(Ubiquity.NET.Llvm.Instructions.ExtractElement, Boolean) - name.vb: SetIsVolatile(Of ExtractElement)(ExtractElement, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ExtractElement,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ExtractElement,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ExtractElement.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ExtractElement, string) - nameWithType: ValueExtensions.RegisterName(ExtractElement, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.ExtractElement, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ExtractElement)(ExtractElement, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.ExtractElement)(Ubiquity.NET.Llvm.Instructions.ExtractElement, String) - name.vb: RegisterName(Of ExtractElement)(ExtractElement, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ExtractElement,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ExtractElement,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ExtractValue.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ExtractValue.yml deleted file mode 100644 index 173a4c588a..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ExtractValue.yml +++ /dev/null @@ -1,956 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - commentId: T:Ubiquity.NET.Llvm.Instructions.ExtractValue - id: ExtractValue - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: ExtractValue - nameWithType: ExtractValue - fullName: Ubiquity.NET.Llvm.Instructions.ExtractValue - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/ExtractValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExtractValue - path: ../src/Ubiquity.NET.Llvm/Instructions/ExtractValue.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to extract the value of a member field from an aggregate value - example: [] - syntax: - content: 'public sealed class ExtractValue : UnaryInstruction, IEquatable' - content.vb: Public NotInheritable Class ExtractValue Inherits UnaryInstruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#extractvalue-instruction - altText: LLVM extractvalue Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.ExtractValue.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.ExtractValue.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.ExtractValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ExtractValue.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(ExtractValue, uint) - nameWithType: InstructionExtensions.SetAlignment(ExtractValue, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.ExtractValue, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of ExtractValue)(ExtractValue, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.ExtractValue)(Ubiquity.NET.Llvm.Instructions.ExtractValue, UInteger) - name.vb: SetAlignment(Of ExtractValue)(ExtractValue, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ExtractValue,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ExtractValue,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ExtractValue.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(ExtractValue, bool) - nameWithType: InstructionExtensions.SetIsVolatile(ExtractValue, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.ExtractValue, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of ExtractValue)(ExtractValue, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.ExtractValue)(Ubiquity.NET.Llvm.Instructions.ExtractValue, Boolean) - name.vb: SetIsVolatile(Of ExtractValue)(ExtractValue, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ExtractValue,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ExtractValue,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ExtractValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ExtractValue, string) - nameWithType: ValueExtensions.RegisterName(ExtractValue, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.ExtractValue, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ExtractValue)(ExtractValue, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.ExtractValue)(Ubiquity.NET.Llvm.Instructions.ExtractValue, String) - name.vb: RegisterName(Of ExtractValue)(ExtractValue, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ExtractValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ExtractValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FCmp.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FCmp.yml deleted file mode 100644 index 24a6eebe89..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FCmp.yml +++ /dev/null @@ -1,964 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.FCmp - commentId: T:Ubiquity.NET.Llvm.Instructions.FCmp - id: FCmp - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: FCmp - nameWithType: FCmp - fullName: Ubiquity.NET.Llvm.Instructions.FCmp - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/FCmp.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FCmp - path: ../src/Ubiquity.NET.Llvm/Instructions/FCmp.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to perform comparison of floating point values - example: [] - syntax: - content: 'public sealed class FCmp : Cmp, IEquatable' - content.vb: Public NotInheritable Class FCmp Inherits Cmp Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#fcmp-instruction - altText: LLVM fcmp Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Cmp - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.FCmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.FCmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.FCmp.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Cmp - commentId: T:Ubiquity.NET.Llvm.Instructions.Cmp - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - name: Cmp - nameWithType: Cmp - fullName: Ubiquity.NET.Llvm.Instructions.Cmp -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - commentId: P:Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - parent: Ubiquity.NET.Llvm.Instructions.Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html#Ubiquity_NET_Llvm_Instructions_Cmp_Predicate - name: Predicate - nameWithType: Cmp.Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FCmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(FCmp, uint) - nameWithType: InstructionExtensions.SetAlignment(FCmp, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.FCmp, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of FCmp)(FCmp, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.FCmp)(Ubiquity.NET.Llvm.Instructions.FCmp, UInteger) - name.vb: SetAlignment(Of FCmp)(FCmp, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FCmp,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FCmp,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FCmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(FCmp, bool) - nameWithType: InstructionExtensions.SetIsVolatile(FCmp, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.FCmp, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of FCmp)(FCmp, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.FCmp)(Ubiquity.NET.Llvm.Instructions.FCmp, Boolean) - name.vb: SetIsVolatile(Of FCmp)(FCmp, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FCmp,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FCmp,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FCmp.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(FCmp, string) - nameWithType: ValueExtensions.RegisterName(FCmp, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.FCmp, string) - nameWithType.vb: ValueExtensions.RegisterName(Of FCmp)(FCmp, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.FCmp)(Ubiquity.NET.Llvm.Instructions.FCmp, String) - name.vb: RegisterName(Of FCmp)(FCmp, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FCmp,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FCmp,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPExt.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPExt.yml deleted file mode 100644 index 0e5c6f4246..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPExt.yml +++ /dev/null @@ -1,980 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.FPExt - commentId: T:Ubiquity.NET.Llvm.Instructions.FPExt - id: FPExt - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: FPExt - nameWithType: FPExt - fullName: Ubiquity.NET.Llvm.Instructions.FPExt - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/FPExt.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPExt - path: ../src/Ubiquity.NET.Llvm/Instructions/FPExt.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Extends a floating point value to a larger floating point value - example: [] - syntax: - content: 'public sealed class FPExt : Cast, IEquatable' - content.vb: Public NotInheritable Class FPExt Inherits Cast Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#fpext-to-instruction - altText: LLVM fpext .. to instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.FPExt.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.FPExt.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.FPExt.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPExt.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(FPExt, uint) - nameWithType: InstructionExtensions.SetAlignment(FPExt, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.FPExt, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of FPExt)(FPExt, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.FPExt)(Ubiquity.NET.Llvm.Instructions.FPExt, UInteger) - name.vb: SetAlignment(Of FPExt)(FPExt, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FPExt,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FPExt,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPExt.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(FPExt, bool) - nameWithType: InstructionExtensions.SetIsVolatile(FPExt, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.FPExt, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of FPExt)(FPExt, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.FPExt)(Ubiquity.NET.Llvm.Instructions.FPExt, Boolean) - name.vb: SetIsVolatile(Of FPExt)(FPExt, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FPExt,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FPExt,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPExt.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(FPExt, string) - nameWithType: ValueExtensions.RegisterName(FPExt, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.FPExt, string) - nameWithType.vb: ValueExtensions.RegisterName(Of FPExt)(FPExt, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.FPExt)(Ubiquity.NET.Llvm.Instructions.FPExt, String) - name.vb: RegisterName(Of FPExt)(FPExt, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FPExt,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FPExt,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPToSI.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPToSI.yml deleted file mode 100644 index 814bfbc5fd..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPToSI.yml +++ /dev/null @@ -1,980 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.FPToSI - commentId: T:Ubiquity.NET.Llvm.Instructions.FPToSI - id: FPToSI - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: FPToSI - nameWithType: FPToSI - fullName: Ubiquity.NET.Llvm.Instructions.FPToSI - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/FPToSI.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPToSI - path: ../src/Ubiquity.NET.Llvm/Instructions/FPToSI.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to convert a floating point value to a signed integer type - example: [] - syntax: - content: 'public sealed class FPToSI : Cast, IEquatable' - content.vb: Public NotInheritable Class FPToSI Inherits Cast Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#fptosi-to-instruction - altText: LLVM fptosi .. to Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.FPToSI.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.FPToSI.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.FPToSI.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPToSI.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(FPToSI, uint) - nameWithType: InstructionExtensions.SetAlignment(FPToSI, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.FPToSI, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of FPToSI)(FPToSI, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.FPToSI)(Ubiquity.NET.Llvm.Instructions.FPToSI, UInteger) - name.vb: SetAlignment(Of FPToSI)(FPToSI, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FPToSI,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FPToSI,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPToSI.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(FPToSI, bool) - nameWithType: InstructionExtensions.SetIsVolatile(FPToSI, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.FPToSI, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of FPToSI)(FPToSI, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.FPToSI)(Ubiquity.NET.Llvm.Instructions.FPToSI, Boolean) - name.vb: SetIsVolatile(Of FPToSI)(FPToSI, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FPToSI,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FPToSI,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPToSI.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(FPToSI, string) - nameWithType: ValueExtensions.RegisterName(FPToSI, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.FPToSI, string) - nameWithType.vb: ValueExtensions.RegisterName(Of FPToSI)(FPToSI, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.FPToSI)(Ubiquity.NET.Llvm.Instructions.FPToSI, String) - name.vb: RegisterName(Of FPToSI)(FPToSI, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FPToSI,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FPToSI,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPToUI.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPToUI.yml deleted file mode 100644 index fce50f5406..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPToUI.yml +++ /dev/null @@ -1,980 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.FPToUI - commentId: T:Ubiquity.NET.Llvm.Instructions.FPToUI - id: FPToUI - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: FPToUI - nameWithType: FPToUI - fullName: Ubiquity.NET.Llvm.Instructions.FPToUI - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/FPToUI.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPToUI - path: ../src/Ubiquity.NET.Llvm/Instructions/FPToUI.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to convert a floating point value to an unsigned integer type - example: [] - syntax: - content: 'public sealed class FPToUI : Cast, IEquatable' - content.vb: Public NotInheritable Class FPToUI Inherits Cast Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#fptoui-to-instruction - altText: LLVM fptoui .. to Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.FPToUI.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.FPToUI.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.FPToUI.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPToUI.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(FPToUI, uint) - nameWithType: InstructionExtensions.SetAlignment(FPToUI, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.FPToUI, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of FPToUI)(FPToUI, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.FPToUI)(Ubiquity.NET.Llvm.Instructions.FPToUI, UInteger) - name.vb: SetAlignment(Of FPToUI)(FPToUI, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FPToUI,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FPToUI,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPToUI.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(FPToUI, bool) - nameWithType: InstructionExtensions.SetIsVolatile(FPToUI, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.FPToUI, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of FPToUI)(FPToUI, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.FPToUI)(Ubiquity.NET.Llvm.Instructions.FPToUI, Boolean) - name.vb: SetIsVolatile(Of FPToUI)(FPToUI, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FPToUI,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FPToUI,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPToUI.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(FPToUI, string) - nameWithType: ValueExtensions.RegisterName(FPToUI, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.FPToUI, string) - nameWithType.vb: ValueExtensions.RegisterName(Of FPToUI)(FPToUI, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.FPToUI)(Ubiquity.NET.Llvm.Instructions.FPToUI, String) - name.vb: RegisterName(Of FPToUI)(FPToUI, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FPToUI,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FPToUI,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPTrunc.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPTrunc.yml deleted file mode 100644 index 2561d667e3..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FPTrunc.yml +++ /dev/null @@ -1,980 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - commentId: T:Ubiquity.NET.Llvm.Instructions.FPTrunc - id: FPTrunc - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: FPTrunc - nameWithType: FPTrunc - fullName: Ubiquity.NET.Llvm.Instructions.FPTrunc - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/FPTrunc.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPTrunc - path: ../src/Ubiquity.NET.Llvm/Instructions/FPTrunc.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to truncate a floating point value to another floating point type - example: [] - syntax: - content: 'public sealed class FPTrunc : Cast, IEquatable' - content.vb: Public NotInheritable Class FPTrunc Inherits Cast Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#fptruncto-to-instruction - altText: LLVM fptruncto .. to Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.FPTrunc.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.FPTrunc.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.FPTrunc.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPTrunc.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(FPTrunc, uint) - nameWithType: InstructionExtensions.SetAlignment(FPTrunc, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.FPTrunc, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of FPTrunc)(FPTrunc, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.FPTrunc)(Ubiquity.NET.Llvm.Instructions.FPTrunc, UInteger) - name.vb: SetAlignment(Of FPTrunc)(FPTrunc, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FPTrunc,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FPTrunc,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPTrunc.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(FPTrunc, bool) - nameWithType: InstructionExtensions.SetIsVolatile(FPTrunc, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.FPTrunc, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of FPTrunc)(FPTrunc, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.FPTrunc)(Ubiquity.NET.Llvm.Instructions.FPTrunc, Boolean) - name.vb: SetIsVolatile(Of FPTrunc)(FPTrunc, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FPTrunc,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FPTrunc,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FPTrunc.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(FPTrunc, string) - nameWithType: ValueExtensions.RegisterName(FPTrunc, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.FPTrunc, string) - nameWithType.vb: ValueExtensions.RegisterName(Of FPTrunc)(FPTrunc, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.FPTrunc)(Ubiquity.NET.Llvm.Instructions.FPTrunc, String) - name.vb: RegisterName(Of FPTrunc)(FPTrunc, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FPTrunc,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FPTrunc,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Fence.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Fence.yml deleted file mode 100644 index b6b8e9cc30..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Fence.yml +++ /dev/null @@ -1,948 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Fence - commentId: T:Ubiquity.NET.Llvm.Instructions.Fence - id: Fence - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: Fence - nameWithType: Fence - fullName: Ubiquity.NET.Llvm.Instructions.Fence - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Fence.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fence - path: ../src/Ubiquity.NET.Llvm/Instructions/Fence.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Synchronization instruction to introduce "happens-before" edges between operations - example: [] - syntax: - content: 'public sealed class Fence : Instruction, IEquatable' - content.vb: Public NotInheritable Class Fence Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#fence-instruction - altText: LLVM fence Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Fence.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Fence.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Fence.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Fence.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Fence, uint) - nameWithType: InstructionExtensions.SetAlignment(Fence, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Fence, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Fence)(Fence, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Fence)(Ubiquity.NET.Llvm.Instructions.Fence, UInteger) - name.vb: SetAlignment(Of Fence)(Fence, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Fence,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Fence,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Fence.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Fence, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Fence, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Fence, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Fence)(Fence, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Fence)(Ubiquity.NET.Llvm.Instructions.Fence, Boolean) - name.vb: SetIsVolatile(Of Fence)(Fence, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Fence,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Fence,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Fence.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Fence, string) - nameWithType: ValueExtensions.RegisterName(Fence, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Fence, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Fence)(Fence, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Fence)(Ubiquity.NET.Llvm.Instructions.Fence, String) - name.vb: RegisterName(Of Fence)(Fence, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Fence,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Fence,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Freeze.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Freeze.yml deleted file mode 100644 index cc6750d9ad..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Freeze.yml +++ /dev/null @@ -1,990 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Freeze - commentId: T:Ubiquity.NET.Llvm.Instructions.Freeze - id: Freeze - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Freeze.Value - langs: - - csharp - - vb - name: Freeze - nameWithType: Freeze - fullName: Ubiquity.NET.Llvm.Instructions.Freeze - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Freeze.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Freeze - path: ../src/Ubiquity.NET.Llvm/Instructions/Freeze.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Freeze a poison or undef value - example: [] - syntax: - content: 'public sealed class Freeze : UnaryInstruction, IEquatable' - content.vb: Public NotInheritable Class Freeze Inherits UnaryInstruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Freeze.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Freeze.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Freeze.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Freeze.Value - commentId: P:Ubiquity.NET.Llvm.Instructions.Freeze.Value - id: Value - parent: Ubiquity.NET.Llvm.Instructions.Freeze - langs: - - csharp - - vb - name: Value - nameWithType: Freeze.Value - fullName: Ubiquity.NET.Llvm.Instructions.Freeze.Value - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Freeze.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Value - path: ../src/Ubiquity.NET.Llvm/Instructions/Freeze.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the value this instruction freezes - example: [] - syntax: - content: public Value Value { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Value - content.vb: Public ReadOnly Property Value As Value - overload: Ubiquity.NET.Llvm.Instructions.Freeze.Value* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Freeze.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Freeze, uint) - nameWithType: InstructionExtensions.SetAlignment(Freeze, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Freeze, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Freeze)(Freeze, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Freeze)(Ubiquity.NET.Llvm.Instructions.Freeze, UInteger) - name.vb: SetAlignment(Of Freeze)(Freeze, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Freeze,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Freeze,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Freeze.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Freeze, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Freeze, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Freeze, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Freeze)(Freeze, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Freeze)(Ubiquity.NET.Llvm.Instructions.Freeze, Boolean) - name.vb: SetIsVolatile(Of Freeze)(Freeze, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Freeze,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Freeze,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Freeze.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Freeze, string) - nameWithType: ValueExtensions.RegisterName(Freeze, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Freeze, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Freeze)(Freeze, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Freeze)(Ubiquity.NET.Llvm.Instructions.Freeze, String) - name.vb: RegisterName(Of Freeze)(Freeze, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Freeze,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Freeze,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Freeze.Value* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Freeze.Value - href: Ubiquity.NET.Llvm.Instructions.Freeze.html#Ubiquity_NET_Llvm_Instructions_Freeze_Value - name: Value - nameWithType: Freeze.Value - fullName: Ubiquity.NET.Llvm.Instructions.Freeze.Value diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FuncletPad.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FuncletPad.yml deleted file mode 100644 index 18beeffb64..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.FuncletPad.yml +++ /dev/null @@ -1,1160 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - commentId: T:Ubiquity.NET.Llvm.Instructions.FuncletPad - id: FuncletPad - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - - Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - langs: - - csharp - - vb - name: FuncletPad - nameWithType: FuncletPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/FuncletPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FuncletPad - path: ../src/Ubiquity.NET.Llvm/Instructions/FuncletPad.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Funclet pad for exception handling - example: [] - syntax: - content: 'public class FuncletPad : Instruction, IEquatable' - content.vb: Public Class FuncletPad Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.CatchPad - - Ubiquity.NET.Llvm.Instructions.CleanupPad - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.FuncletPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.FuncletPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.FuncletPad.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - commentId: P:Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - id: ParentPad - parent: Ubiquity.NET.Llvm.Instructions.FuncletPad - langs: - - csharp - - vb - name: ParentPad - nameWithType: FuncletPad.ParentPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/FuncletPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ParentPad - path: ../src/Ubiquity.NET.Llvm/Instructions/FuncletPad.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the outer EH-pad this funclet is nested withing - remarks: >- -
note

This returns the associated if this - - is a instruction.

- example: [] - syntax: - content: public Value ParentPad { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Value - content.vb: Public ReadOnly Property ParentPad As Value - overload: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad* -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - commentId: P:Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - id: ArgOperands - parent: Ubiquity.NET.Llvm.Instructions.FuncletPad - langs: - - csharp - - vb - name: ArgOperands - nameWithType: FuncletPad.ArgOperands - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/FuncletPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ArgOperands - path: ../src/Ubiquity.NET.Llvm/Instructions/FuncletPad.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the argument operands for this . - example: [] - syntax: - content: public IOperandCollection ArgOperands { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.Value} - content.vb: Public ReadOnly Property ArgOperands As IOperandCollection(Of Value) - overload: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(FuncletPad, uint) - nameWithType: InstructionExtensions.SetAlignment(FuncletPad, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.FuncletPad, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of FuncletPad)(FuncletPad, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.FuncletPad)(Ubiquity.NET.Llvm.Instructions.FuncletPad, UInteger) - name.vb: SetAlignment(Of FuncletPad)(FuncletPad, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FuncletPad,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.FuncletPad,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(FuncletPad, bool) - nameWithType: InstructionExtensions.SetIsVolatile(FuncletPad, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.FuncletPad, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of FuncletPad)(FuncletPad, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.FuncletPad)(Ubiquity.NET.Llvm.Instructions.FuncletPad, Boolean) - name.vb: SetIsVolatile(Of FuncletPad)(FuncletPad, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FuncletPad,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.FuncletPad,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(FuncletPad, string) - nameWithType: ValueExtensions.RegisterName(FuncletPad, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.FuncletPad, string) - nameWithType.vb: ValueExtensions.RegisterName(Of FuncletPad)(FuncletPad, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.FuncletPad)(Ubiquity.NET.Llvm.Instructions.FuncletPad, String) - name.vb: RegisterName(Of FuncletPad)(FuncletPad, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FuncletPad,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.FuncletPad,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - name: CatchSwitch - nameWithType: CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - commentId: T:Ubiquity.NET.Llvm.Instructions.FuncletPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - name: FuncletPad - nameWithType: FuncletPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad -- uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - name: CleanupPad - nameWithType: CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.CleanupPad -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html#Ubiquity_NET_Llvm_Instructions_FuncletPad_ParentPad - name: ParentPad - nameWithType: FuncletPad.ParentPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad.ParentPad -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html#Ubiquity_NET_Llvm_Instructions_FuncletPad_ArgOperands - name: ArgOperands - nameWithType: FuncletPad.ArgOperands - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad.ArgOperands -- uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.Value} - commentId: T:Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.Value} - parent: Ubiquity.NET.Llvm - definition: Ubiquity.NET.Llvm.IOperandCollection`1 - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of Value) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IOperandCollection(Of Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.IOperandCollection`1 - commentId: T:Ubiquity.NET.Llvm.IOperandCollection`1 - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.GetElementPtr.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.GetElementPtr.yml deleted file mode 100644 index 1a882f6472..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.GetElementPtr.yml +++ /dev/null @@ -1,948 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - commentId: T:Ubiquity.NET.Llvm.Instructions.GetElementPtr - id: GetElementPtr - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: GetElementPtr - nameWithType: GetElementPtr - fullName: Ubiquity.NET.Llvm.Instructions.GetElementPtr - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/GetElementPtr.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtr - path: ../src/Ubiquity.NET.Llvm/Instructions/GetElementPtr.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to compute the address of a sub element of an aggregate data type - example: [] - syntax: - content: 'public sealed class GetElementPtr : Instruction, IEquatable' - content.vb: Public NotInheritable Class GetElementPtr Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#getelementptr-instruction - altText: LLVM getelementptr Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.GetElementPtr.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.GetElementPtr.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.GetElementPtr.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(GetElementPtr, uint) - nameWithType: InstructionExtensions.SetAlignment(GetElementPtr, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.GetElementPtr, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of GetElementPtr)(GetElementPtr, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.GetElementPtr)(Ubiquity.NET.Llvm.Instructions.GetElementPtr, UInteger) - name.vb: SetAlignment(Of GetElementPtr)(GetElementPtr, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.GetElementPtr,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.GetElementPtr,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(GetElementPtr, bool) - nameWithType: InstructionExtensions.SetIsVolatile(GetElementPtr, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.GetElementPtr, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of GetElementPtr)(GetElementPtr, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.GetElementPtr)(Ubiquity.NET.Llvm.Instructions.GetElementPtr, Boolean) - name.vb: SetIsVolatile(Of GetElementPtr)(GetElementPtr, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.GetElementPtr,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.GetElementPtr,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(GetElementPtr, string) - nameWithType: ValueExtensions.RegisterName(GetElementPtr, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.GetElementPtr, string) - nameWithType.vb: ValueExtensions.RegisterName(Of GetElementPtr)(GetElementPtr, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.GetElementPtr)(Ubiquity.NET.Llvm.Instructions.GetElementPtr, String) - name.vb: RegisterName(Of GetElementPtr)(GetElementPtr, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.GetElementPtr,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.GetElementPtr,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IndirectBranch.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IndirectBranch.yml deleted file mode 100644 index 3584187422..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IndirectBranch.yml +++ /dev/null @@ -1,963 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - commentId: T:Ubiquity.NET.Llvm.Instructions.IndirectBranch - id: IndirectBranch - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: IndirectBranch - nameWithType: IndirectBranch - fullName: Ubiquity.NET.Llvm.Instructions.IndirectBranch - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/IndirectBranch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IndirectBranch - path: ../src/Ubiquity.NET.Llvm/Instructions/IndirectBranch.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to perform an indirect branch to a block within the current function - remarks: The address of the branch must come from a constant - example: [] - syntax: - content: 'public sealed class IndirectBranch : Terminator, IEquatable' - content.vb: Public NotInheritable Class IndirectBranch Inherits Terminator Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#indirectbr-instruction - altText: LLVM indirectbr Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.IndirectBranch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.IndirectBranch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.IndirectBranch.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values.BlockAddress - commentId: T:Ubiquity.NET.Llvm.Values.BlockAddress - href: Ubiquity.NET.Llvm.Values.BlockAddress.html - name: BlockAddress - nameWithType: BlockAddress - fullName: Ubiquity.NET.Llvm.Values.BlockAddress -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(IndirectBranch, uint) - nameWithType: InstructionExtensions.SetAlignment(IndirectBranch, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.IndirectBranch, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of IndirectBranch)(IndirectBranch, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.IndirectBranch)(Ubiquity.NET.Llvm.Instructions.IndirectBranch, UInteger) - name.vb: SetAlignment(Of IndirectBranch)(IndirectBranch, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.IndirectBranch,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.IndirectBranch,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(IndirectBranch, bool) - nameWithType: InstructionExtensions.SetIsVolatile(IndirectBranch, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.IndirectBranch, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of IndirectBranch)(IndirectBranch, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.IndirectBranch)(Ubiquity.NET.Llvm.Instructions.IndirectBranch, Boolean) - name.vb: SetIsVolatile(Of IndirectBranch)(IndirectBranch, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.IndirectBranch,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.IndirectBranch,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(IndirectBranch, string) - nameWithType: ValueExtensions.RegisterName(IndirectBranch, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.IndirectBranch, string) - nameWithType.vb: ValueExtensions.RegisterName(Of IndirectBranch)(IndirectBranch, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.IndirectBranch)(Ubiquity.NET.Llvm.Instructions.IndirectBranch, String) - name.vb: RegisterName(Of IndirectBranch)(IndirectBranch, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.IndirectBranch,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.IndirectBranch,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InsertElement.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InsertElement.yml deleted file mode 100644 index cf6cfc9cbb..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InsertElement.yml +++ /dev/null @@ -1,948 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.InsertElement - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertElement - id: InsertElement - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: InsertElement - nameWithType: InsertElement - fullName: Ubiquity.NET.Llvm.Instructions.InsertElement - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InsertElement.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertElement - path: ../src/Ubiquity.NET.Llvm/Instructions/InsertElement.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to insert an element into a vector type - example: [] - syntax: - content: 'public sealed class InsertElement : Instruction, IEquatable' - content.vb: Public NotInheritable Class InsertElement Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#insertelement-instruction - altText: LLVM insertelement Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.InsertElement.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.InsertElement.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InsertElement.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InsertElement.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(InsertElement, uint) - nameWithType: InstructionExtensions.SetAlignment(InsertElement, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.InsertElement, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of InsertElement)(InsertElement, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.InsertElement)(Ubiquity.NET.Llvm.Instructions.InsertElement, UInteger) - name.vb: SetAlignment(Of InsertElement)(InsertElement, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.InsertElement,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.InsertElement,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InsertElement.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(InsertElement, bool) - nameWithType: InstructionExtensions.SetIsVolatile(InsertElement, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.InsertElement, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of InsertElement)(InsertElement, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.InsertElement)(Ubiquity.NET.Llvm.Instructions.InsertElement, Boolean) - name.vb: SetIsVolatile(Of InsertElement)(InsertElement, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.InsertElement,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.InsertElement,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InsertElement.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(InsertElement, string) - nameWithType: ValueExtensions.RegisterName(InsertElement, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.InsertElement, string) - nameWithType.vb: ValueExtensions.RegisterName(Of InsertElement)(InsertElement, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.InsertElement)(Ubiquity.NET.Llvm.Instructions.InsertElement, String) - name.vb: RegisterName(Of InsertElement)(InsertElement, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.InsertElement,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.InsertElement,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InsertValue.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InsertValue.yml deleted file mode 100644 index 4eb5e8eaa9..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InsertValue.yml +++ /dev/null @@ -1,948 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.InsertValue - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertValue - id: InsertValue - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: InsertValue - nameWithType: InsertValue - fullName: Ubiquity.NET.Llvm.Instructions.InsertValue - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InsertValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertValue - path: ../src/Ubiquity.NET.Llvm/Instructions/InsertValue.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to insert a value into a member field in an aggregate value - example: [] - syntax: - content: 'public sealed class InsertValue : Instruction, IEquatable' - content.vb: Public NotInheritable Class InsertValue Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#insertvalue-instruction - altText: LLVM insertvalue Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.InsertValue.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.InsertValue.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InsertValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InsertValue.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(InsertValue, uint) - nameWithType: InstructionExtensions.SetAlignment(InsertValue, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.InsertValue, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of InsertValue)(InsertValue, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.InsertValue)(Ubiquity.NET.Llvm.Instructions.InsertValue, UInteger) - name.vb: SetAlignment(Of InsertValue)(InsertValue, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.InsertValue,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.InsertValue,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InsertValue.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(InsertValue, bool) - nameWithType: InstructionExtensions.SetIsVolatile(InsertValue, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.InsertValue, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of InsertValue)(InsertValue, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.InsertValue)(Ubiquity.NET.Llvm.Instructions.InsertValue, Boolean) - name.vb: SetIsVolatile(Of InsertValue)(InsertValue, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.InsertValue,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.InsertValue,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InsertValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(InsertValue, string) - nameWithType: ValueExtensions.RegisterName(InsertValue, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.InsertValue, string) - nameWithType.vb: ValueExtensions.RegisterName(Of InsertValue)(InsertValue, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.InsertValue)(Ubiquity.NET.Llvm.Instructions.InsertValue, String) - name.vb: RegisterName(Of InsertValue)(InsertValue, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.InsertValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.InsertValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Instruction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Instruction.yml deleted file mode 100644 index 009fc203d3..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Instruction.yml +++ /dev/null @@ -1,1601 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - id: Instruction - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - langs: - - csharp - - vb - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Instruction - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 422 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Exposes an LLVM Instruction - example: [] - syntax: - content: 'public class Instruction : User, IEquatable' - content.vb: Public Class Instruction Inherits User Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - - Ubiquity.NET.Llvm.Instructions.AtomicRMW - - Ubiquity.NET.Llvm.Instructions.BinaryOperator - - Ubiquity.NET.Llvm.Instructions.CallBr - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.CatchSwitch - - Ubiquity.NET.Llvm.Instructions.Cmp - - Ubiquity.NET.Llvm.Instructions.ExtractElement - - Ubiquity.NET.Llvm.Instructions.Fence - - Ubiquity.NET.Llvm.Instructions.FuncletPad - - Ubiquity.NET.Llvm.Instructions.GetElementPtr - - Ubiquity.NET.Llvm.Instructions.InsertElement - - Ubiquity.NET.Llvm.Instructions.InsertValue - - Ubiquity.NET.Llvm.Instructions.LandingPad - - Ubiquity.NET.Llvm.Instructions.PhiNode - - Ubiquity.NET.Llvm.Instructions.SelectInstruction - - Ubiquity.NET.Llvm.Instructions.ShuffleVector - - Ubiquity.NET.Llvm.Instructions.Store - - Ubiquity.NET.Llvm.Instructions.Terminator - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.UnaryOperator - - Ubiquity.NET.Llvm.Instructions.UserOp1 - - Ubiquity.NET.Llvm.Instructions.UserOp2 - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Instruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Instruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Instruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - id: ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ContainingBlock - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 426 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the that contains this instruction - example: [] - syntax: - content: public BasicBlock ContainingBlock { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - content.vb: Public ReadOnly Property ContainingBlock As BasicBlock - overload: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock* -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - id: Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Opcode - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 430 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the LLVM opcode for the instruction - example: [] - syntax: - content: public OpCode Opcode { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - content.vb: Public ReadOnly Property Opcode As OpCode - overload: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode* -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - id: Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Location - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 433 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the for this instruction - example: [] - syntax: - content: public DILocation? Location { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - content.vb: Public Property Location As DILocation - overload: Ubiquity.NET.Llvm.Instructions.Instruction.Location* -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - id: IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsMemoryAccess - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 440 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a value indicating whether the opcode is for a memory access (, , ) - example: [] - syntax: - content: public bool IsMemoryAccess { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsMemoryAccess As Boolean - overload: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess* -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - id: HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HasMetadata - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 452 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a value indicating whether this instruction has metadata - example: [] - syntax: - content: public bool HasMetadata { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property HasMetadata As Boolean - overload: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata* -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - id: Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: this[] - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 457 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets IrMetadata (as a value) for this instruction - example: [] - syntax: - content: public MetadataAsValue? this[MetadataKind kindKey] { get; set; } - parameters: - - id: kindKey - type: Ubiquity.NET.Llvm.Metadata.MetadataKind - description: IrMetadata kind to get - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - description: IrMetadata for the kind or null if not present - content.vb: Public Default Property this[](kindKey As MetadataKind) As MetadataAsValue - overload: Ubiquity.NET.Llvm.Instructions.Instruction.Item* - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - id: NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NonDebugLocMetadata - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 466 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a snap-shot collection of the metadata for this instruction, filtering out all the debug location nodes - example: [] - syntax: - content: public IEnumerable NonDebugLocMetadata { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.MDNode} - description: Enumerable of the metadata nodes for the instruction - content.vb: Public ReadOnly Property NonDebugLocMetadata As IEnumerable(Of MDNode) - overload: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata* -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - id: Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Alignment - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 486 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the alignment for the instruction - remarks: >- - The alignment is always 0 for instructions other than , - - , that deal with memory accesses. - - Setting the alignment for other instructions results in an - - - example: [] - syntax: - content: public uint Alignment { get; set; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public Property Alignment As UInteger - overload: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment* -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - id: Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - langs: - - csharp - - vb - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Successors - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 502 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a, potentially empty, collection of successor blocks for this instruction - example: [] - syntax: - content: public IOperandCollection Successors { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - content.vb: Public ReadOnly Property Successors As IOperandCollection(Of BasicBlock) - overload: Ubiquity.NET.Llvm.Instructions.Instruction.Successors* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Instruction, uint) - nameWithType: InstructionExtensions.SetAlignment(Instruction, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Instruction, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Instruction)(Instruction, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Instruction)(Ubiquity.NET.Llvm.Instructions.Instruction, UInteger) - name.vb: SetAlignment(Of Instruction)(Instruction, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Instruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Instruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Instruction, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Instruction, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Instruction, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Instruction)(Instruction, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Instruction)(Ubiquity.NET.Llvm.Instructions.Instruction, Boolean) - name.vb: SetIsVolatile(Of Instruction)(Instruction, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Instruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Instruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Instruction, string) - nameWithType: ValueExtensions.RegisterName(Instruction, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Instruction, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Instruction)(Instruction, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Instruction)(Ubiquity.NET.Llvm.Instructions.Instruction, String) - name.vb: RegisterName(Of Instruction)(Instruction, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Instruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Instruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.OpCode - commentId: T:Ubiquity.NET.Llvm.Instructions.OpCode - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.OpCode.html - name: OpCode - nameWithType: OpCode - fullName: Ubiquity.NET.Llvm.Instructions.OpCode -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocation - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html - name: DILocation - nameWithType: DILocation - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.Location - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.Instructions.Alloca - commentId: T:Ubiquity.NET.Llvm.Instructions.Alloca - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - name: Alloca - nameWithType: Alloca - fullName: Ubiquity.NET.Llvm.Instructions.Alloca -- uid: Ubiquity.NET.Llvm.Instructions.Load - commentId: T:Ubiquity.NET.Llvm.Instructions.Load - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Load.html - name: Load - nameWithType: Load - fullName: Ubiquity.NET.Llvm.Instructions.Load -- uid: Ubiquity.NET.Llvm.Instructions.Store - commentId: T:Ubiquity.NET.Llvm.Instructions.Store - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Store.html - name: Store - nameWithType: Store - fullName: Ubiquity.NET.Llvm.Instructions.Store -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.Item - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - name: this - nameWithType: Instruction.this - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this - nameWithType.vb: Instruction.this[] - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[] - name.vb: this[] -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataKind - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: MetadataKind - nameWithType: MetadataKind - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataAsValue - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.html - name: MetadataAsValue - nameWithType: MetadataAsValue - fullName: Ubiquity.NET.Llvm.Metadata.MetadataAsValue -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.MDNode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.MDNode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of MDNode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Metadata.MDNode) - name.vb: IEnumerable(Of MDNode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.MDNode - name: MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.MDNode - name: MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.InvalidOperationException - commentId: T:System.InvalidOperationException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception - name: InvalidOperationException - nameWithType: InvalidOperationException - fullName: System.InvalidOperationException -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - commentId: T:Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - parent: Ubiquity.NET.Llvm - definition: Ubiquity.NET.Llvm.IOperandCollection`1 - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of BasicBlock) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: IOperandCollection(Of BasicBlock) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: Ubiquity.NET.Llvm.IOperandCollection`1 - commentId: T:Ubiquity.NET.Llvm.IOperandCollection`1 - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml deleted file mode 100644 index 14d9a6324d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InstructionBuilder.yml +++ /dev/null @@ -1,6019 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionBuilder - id: InstructionBuilder - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor(Ubiquity.NET.Llvm.IContext) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor(Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.ConstantInt) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value}) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Value[]) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.IntPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.Predicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.RealPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue(Ubiquity.NET.Llvm.Values.Value,System.UInt32) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.UInt32) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Values.Value,System.UInt32) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.UInt32) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.IPointerType) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value},Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd(Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore(Ubiquity.NET.Llvm.Instructions.Instruction) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(Ubiquity.NET.Llvm.DebugInfo.DILocation) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,System.UInt32) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - langs: - - csharp - - vb - name: InstructionBuilder - nameWithType: InstructionBuilder - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InstructionBuilder - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: LLVM Instruction builder allowing managed code to generate IR instructions - example: [] - syntax: - content: 'public sealed class InstructionBuilder : IDisposable' - content.vb: Public NotInheritable Class InstructionBuilder Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Dispose() - nameWithType: InstructionBuilder.Dispose() - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor(Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor(Ubiquity.NET.Llvm.IContext) - id: '#ctor(Ubiquity.NET.Llvm.IContext)' - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: InstructionBuilder(IContext) - nameWithType: InstructionBuilder.InstructionBuilder(IContext) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InstructionBuilder(Ubiquity.NET.Llvm.IContext) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Initializes a new instance of the class for a given - example: [] - syntax: - content: public InstructionBuilder(IContext context) - parameters: - - id: context - type: Ubiquity.NET.Llvm.IContext - description: ContextAlias used for creating instructions - content.vb: Public Sub New(context As IContext) - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor* - nameWithType.vb: InstructionBuilder.New(IContext) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.New(Ubiquity.NET.Llvm.IContext) - name.vb: New(IContext) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor(Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor(Ubiquity.NET.Llvm.Values.BasicBlock) - id: '#ctor(Ubiquity.NET.Llvm.Values.BasicBlock)' - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: InstructionBuilder(BasicBlock) - nameWithType: InstructionBuilder.InstructionBuilder(BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InstructionBuilder(Ubiquity.NET.Llvm.Values.BasicBlock) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Initializes a new instance of the class for a - example: [] - syntax: - content: public InstructionBuilder(BasicBlock block) - parameters: - - id: block - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Block this builder is initially attached to - content.vb: Public Sub New(block As BasicBlock) - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor* - nameWithType.vb: InstructionBuilder.New(BasicBlock) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.New(Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: New(BasicBlock) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context - commentId: P:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context - id: Context - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Context - nameWithType: InstructionBuilder.Context - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the context this builder is creating instructions for - example: [] - syntax: - content: public IContext Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: Public ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation - commentId: P:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation - id: CurrentDebugLocation - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: CurrentDebugLocation - nameWithType: InstructionBuilder.CurrentDebugLocation - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CurrentDebugLocation - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the current Debug Location for this - example: [] - syntax: - content: public DILocation? CurrentDebugLocation { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - content.vb: Public Property CurrentDebugLocation As DILocation - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation) - id: SetDebugLocation(System.UInt32,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DILocalScope,Ubiquity.NET.Llvm.DebugInfo.DILocation) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: SetDebugLocation(uint, uint, DILocalScope, DILocation?) - nameWithType: InstructionBuilder.SetDebugLocation(uint, uint, DILocalScope, DILocation?) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(uint, uint, Ubiquity.NET.Llvm.DebugInfo.DILocalScope, Ubiquity.NET.Llvm.DebugInfo.DILocation?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetDebugLocation - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Set the current debug location for this - example: [] - syntax: - content: public InstructionBuilder SetDebugLocation(uint line, uint col, DILocalScope scope, DILocation? inlinedAt = null) - parameters: - - id: line - type: System.UInt32 - description: Source line - - id: col - type: System.UInt32 - description: Source column - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - description: for the location - - id: inlinedAt - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: the location is inlined into - return: - type: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - description: This builder for fluent API usage - content.vb: Public Function SetDebugLocation(line As UInteger, col As UInteger, scope As DILocalScope, inlinedAt As DILocation = Nothing) As InstructionBuilder - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation* - nameWithType.vb: InstructionBuilder.SetDebugLocation(UInteger, UInteger, DILocalScope, DILocation) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(UInteger, UInteger, Ubiquity.NET.Llvm.DebugInfo.DILocalScope, Ubiquity.NET.Llvm.DebugInfo.DILocation) - name.vb: SetDebugLocation(UInteger, UInteger, DILocalScope, DILocation) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(Ubiquity.NET.Llvm.DebugInfo.DILocation) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(Ubiquity.NET.Llvm.DebugInfo.DILocation) - id: SetDebugLocation(Ubiquity.NET.Llvm.DebugInfo.DILocation) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: SetDebugLocation(DILocation?) - nameWithType: InstructionBuilder.SetDebugLocation(DILocation?) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(Ubiquity.NET.Llvm.DebugInfo.DILocation?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetDebugLocation - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Set the current debug location for this - example: [] - syntax: - content: public InstructionBuilder SetDebugLocation(DILocation? location) - parameters: - - id: location - type: Ubiquity.NET.Llvm.DebugInfo.DILocation - description: Location to set - return: - type: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - description: This builder for fluent API usage - content.vb: Public Function SetDebugLocation(location As DILocation) As InstructionBuilder - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation* - nameWithType.vb: InstructionBuilder.SetDebugLocation(DILocation) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation(Ubiquity.NET.Llvm.DebugInfo.DILocation) - name.vb: SetDebugLocation(DILocation) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock - id: InsertBlock - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: InsertBlock - nameWithType: InstructionBuilder.InsertBlock - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertBlock - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the this builder is building instructions for - example: [] - syntax: - content: public BasicBlock? InsertBlock { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - content.vb: Public ReadOnly Property InsertBlock As BasicBlock - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction - id: InsertFunction - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: InsertFunction - nameWithType: InstructionBuilder.InsertFunction - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertFunction - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 74 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the function this builder currently inserts into - example: [] - syntax: - content: public Function? InsertFunction { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Function - content.vb: Public ReadOnly Property InsertFunction As [Function] - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd(Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd(Ubiquity.NET.Llvm.Values.BasicBlock) - id: PositionAtEnd(Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: PositionAtEnd(BasicBlock) - nameWithType: InstructionBuilder.PositionAtEnd(BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd(Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PositionAtEnd - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 78 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Positions the builder at the end of a given - example: [] - syntax: - content: public void PositionAtEnd(BasicBlock basicBlock) - parameters: - - id: basicBlock - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Block to set the position of - content.vb: Public Sub PositionAtEnd(basicBlock As BasicBlock) - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore(Ubiquity.NET.Llvm.Instructions.Instruction) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore(Ubiquity.NET.Llvm.Instructions.Instruction) - id: PositionBefore(Ubiquity.NET.Llvm.Instructions.Instruction) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: PositionBefore(Instruction) - nameWithType: InstructionBuilder.PositionBefore(Instruction) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore(Ubiquity.NET.Llvm.Instructions.Instruction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PositionBefore - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Positions the builder before the given instruction - remarks: >- - This method will position the builder to add new instructions - immediately before the specified instruction. -
note

It is important to keep in mind that this can change the - block this builder is targeting. That is, instr - is not required to come from the same block the instruction builder is - currently referencing.

- example: [] - syntax: - content: public void PositionBefore(Instruction instr) - parameters: - - id: instr - type: Ubiquity.NET.Llvm.Instructions.Instruction - description: Instruction to position the builder before - content.vb: Public Sub PositionBefore(instr As Instruction) - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - id: AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AppendBasicBlock(BasicBlock) - nameWithType: InstructionBuilder.AppendBasicBlock(BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AppendBasicBlock - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Appends a basic block after the of this - example: [] - syntax: - content: public void AppendBasicBlock(BasicBlock block) - parameters: - - id: block - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Block to insert - content.vb: Public Sub AppendBasicBlock(block As BasicBlock) - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg(Ubiquity.NET.Llvm.Values.Value) - id: FNeg(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FNeg(Value) - nameWithType: InstructionBuilder.FNeg(Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FNeg - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 113 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point negation operator - example: [] - syntax: - content: public Value FNeg(Value value) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: value to negate - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function FNeg(value As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: FAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FAdd(Value, Value) - nameWithType: InstructionBuilder.FAdd(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FAdd - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 119 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point add operator - example: [] - syntax: - content: public Value FAdd(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function FAdd(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: FSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FSub(Value, Value) - nameWithType: InstructionBuilder.FSub(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FSub - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 125 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point subtraction operator - example: [] - syntax: - content: public Value FSub(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function FSub(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: FMul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FMul(Value, Value) - nameWithType: InstructionBuilder.FMul(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FMul - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 131 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point multiple operator - example: [] - syntax: - content: public Value FMul(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function FMul(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: FDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FDiv(Value, Value) - nameWithType: InstructionBuilder.FDiv(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FDiv - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 137 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point division operator - example: [] - syntax: - content: public Value FDiv(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function FDiv(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: FRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FRem(Value, Value) - nameWithType: InstructionBuilder.FRem(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FRem - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 143 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point remainder operator - example: [] - syntax: - content: public Value FRem(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function FRem(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg(Ubiquity.NET.Llvm.Values.Value) - id: Neg(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Neg(Value) - nameWithType: InstructionBuilder.Neg(Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Neg - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 148 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer negation operator - example: [] - syntax: - content: public Value Neg(Value value) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: operand to negate - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function Neg(value As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not(Ubiquity.NET.Llvm.Values.Value) - id: Not(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Not(Value) - nameWithType: InstructionBuilder.Not(Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Not - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 154 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer logical not operator - remarks: LLVM IR doesn't actually have a logical not instruction so this is implemented as value XOR {one} - example: [] - syntax: - content: public Value Not(Value value) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function [Not](value As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Add(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Add(Value, Value) - nameWithType: InstructionBuilder.Add(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Add - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 160 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer add operator - example: [] - syntax: - content: public Value Add(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function Add(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: And(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: And(Value, Value) - nameWithType: InstructionBuilder.And(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: And - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 166 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer bitwise and operator - example: [] - syntax: - content: public Value And(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function [And](lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Sub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Sub(Value, Value) - nameWithType: InstructionBuilder.Sub(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Sub - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 172 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer subtraction operator - example: [] - syntax: - content: public Value Sub(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function [Sub](lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Mul(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Mul(Value, Value) - nameWithType: InstructionBuilder.Mul(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Mul - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 178 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer multiplication operator - example: [] - syntax: - content: public Value Mul(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function Mul(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: ShiftLeft(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: ShiftLeft(Value, Value) - nameWithType: InstructionBuilder.ShiftLeft(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ShiftLeft - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 184 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer shift left operator - example: [] - syntax: - content: public Value ShiftLeft(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function ShiftLeft(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: ArithmeticShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: ArithmeticShiftRight(Value, Value) - nameWithType: InstructionBuilder.ArithmeticShiftRight(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ArithmeticShiftRight - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 190 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer arithmetic shift right operator - example: [] - syntax: - content: public Value ArithmeticShiftRight(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function ArithmeticShiftRight(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: LogicalShiftRight(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: LogicalShiftRight(Value, Value) - nameWithType: InstructionBuilder.LogicalShiftRight(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LogicalShiftRight - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 196 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer logical shift right operator - example: [] - syntax: - content: public Value LogicalShiftRight(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function LogicalShiftRight(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: UDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: UDiv(Value, Value) - nameWithType: InstructionBuilder.UDiv(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UDiv - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 202 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer unsigned division operator - example: [] - syntax: - content: public Value UDiv(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function UDiv(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: SDiv(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: SDiv(Value, Value) - nameWithType: InstructionBuilder.SDiv(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SDiv - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 208 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer signed division operator - example: [] - syntax: - content: public Value SDiv(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function SDiv(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: URem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: URem(Value, Value) - nameWithType: InstructionBuilder.URem(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: URem - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 214 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer unsigned remainder operator - example: [] - syntax: - content: public Value URem(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function URem(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: SRem(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: SRem(Value, Value) - nameWithType: InstructionBuilder.SRem(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SRem - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 220 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer signed remainder operator - example: [] - syntax: - content: public Value SRem(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function SRem(lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Xor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Xor(Value, Value) - nameWithType: InstructionBuilder.Xor(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Xor - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 226 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer bitwise exclusive or operator - example: [] - syntax: - content: public Value Xor(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function [Xor](lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Or(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Or(Value, Value) - nameWithType: InstructionBuilder.Or(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Or - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 232 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer bitwise or operator - example: [] - syntax: - content: public Value Or(Value lhs, Value rhs) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: left hand side operand - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: right hand side operand - return: - type: Ubiquity.NET.Llvm.Values.Value - description: for the instruction - content.vb: Public Function [Or](lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef) - id: Alloca(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Alloca(ITypeRef) - nameWithType: InstructionBuilder.Alloca(ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Alloca - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 237 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an alloca instruction - example: [] - syntax: - content: public Alloca Alloca(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value to allocate - return: - type: Ubiquity.NET.Llvm.Instructions.Alloca - description: instruction - content.vb: Public Function Alloca(typeRef As ITypeRef) As Alloca - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.ConstantInt) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.ConstantInt) - id: Alloca(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.ConstantInt) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Alloca(ITypeRef, ConstantInt) - nameWithType: InstructionBuilder.Alloca(ITypeRef, ConstantInt) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.ConstantInt) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Alloca - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 251 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an alloca instruction - example: [] - syntax: - content: public Alloca Alloca(ITypeRef typeRef, ConstantInt elements) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value to allocate - - id: elements - type: Ubiquity.NET.Llvm.Values.ConstantInt - description: Number of elements to allocate - return: - type: Ubiquity.NET.Llvm.Instructions.Alloca - description: instruction - content.vb: Public Function Alloca(typeRef As ITypeRef, elements As ConstantInt) As Alloca - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return - id: Return - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Return() - nameWithType: InstructionBuilder.Return() - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Return - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 266 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a return instruction for a function that has no return value - example: [] - syntax: - content: public ReturnInstruction Return() - return: - type: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - description: - content.vb: Public Function [Return]() As ReturnInstruction - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return* - exceptions: - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: the function has a non-void return type -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return(Ubiquity.NET.Llvm.Values.Value) - id: Return(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Return(Value) - nameWithType: InstructionBuilder.Return(Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Return - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 290 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a return instruction with the return value for a function - example: [] - syntax: - content: public ReturnInstruction Return(Value value) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: to return - return: - type: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - description: - content.vb: Public Function [Return](value As Value) As ReturnInstruction - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Value[]) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Value[]) - id: Call(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Value[]) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Call(Function, params Value[]) - nameWithType: InstructionBuilder.Call(Function, params Value[]) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function, params Ubiquity.NET.Llvm.Values.Value[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Call - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 325 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a call function - example: [] - syntax: - content: public CallInstruction Call(Function func, params Value[] args) - parameters: - - id: func - type: Ubiquity.NET.Llvm.Values.Function - description: Function to call - - id: args - type: Ubiquity.NET.Llvm.Values.Value[] - description: Arguments to pass to the function - return: - type: Ubiquity.NET.Llvm.Instructions.CallInstruction - description: - content.vb: Public Function [Call](func As [Function], ParamArray args As Value()) As CallInstruction - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call* - nameWithType.vb: InstructionBuilder.Call(Function, ParamArray Value()) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function, ParamArray Ubiquity.NET.Llvm.Values.Value()) - name.vb: Call(Function, ParamArray Value()) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value}) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value}) - id: Call(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value}) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Call(Function, IReadOnlyList) - nameWithType: InstructionBuilder.Call(Function, IReadOnlyList) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function, System.Collections.Generic.IReadOnlyList) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Call - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 331 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a call function - example: [] - syntax: - content: public CallInstruction Call(Function func, IReadOnlyList args) - parameters: - - id: func - type: Ubiquity.NET.Llvm.Values.Function - description: Function to call - - id: args - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value} - description: Arguments to pass to the function - return: - type: Ubiquity.NET.Llvm.Instructions.CallInstruction - description: - content.vb: Public Function [Call](func As [Function], args As IReadOnlyList(Of Value)) As CallInstruction - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call* - nameWithType.vb: InstructionBuilder.Call(Function, IReadOnlyList(Of Value)) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call(Ubiquity.NET.Llvm.Values.Function, System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Values.Value)) - name.vb: Call(Function, IReadOnlyList(Of Value)) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value},Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value},Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock) - id: Invoke(Ubiquity.NET.Llvm.Values.Function,System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value},Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Invoke(Function, IReadOnlyList, BasicBlock, BasicBlock) - nameWithType: InstructionBuilder.Invoke(Function, IReadOnlyList, BasicBlock, BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke(Ubiquity.NET.Llvm.Values.Function, System.Collections.Generic.IReadOnlyList, Ubiquity.NET.Llvm.Values.BasicBlock, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Invoke - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 346 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an instruction - example: [] - syntax: - content: public Invoke Invoke(Function func, IReadOnlyList args, BasicBlock then, BasicBlock catchBlock) - parameters: - - id: func - type: Ubiquity.NET.Llvm.Values.Function - description: Function to invoke - - id: args - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value} - description: arguments to pass to the function - - id: then - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Successful continuation block - - id: catchBlock - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Exception handling block - return: - type: Ubiquity.NET.Llvm.Instructions.Invoke - description: - content.vb: Public Function Invoke(func As [Function], args As IReadOnlyList(Of Value), [then] As BasicBlock, catchBlock As BasicBlock) As Invoke - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke* - nameWithType.vb: InstructionBuilder.Invoke(Function, IReadOnlyList(Of Value), BasicBlock, BasicBlock) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke(Ubiquity.NET.Llvm.Values.Function, System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Values.Value), Ubiquity.NET.Llvm.Values.BasicBlock, Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: Invoke(Function, IReadOnlyList(Of Value), BasicBlock, BasicBlock) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad(Ubiquity.NET.Llvm.Types.ITypeRef) - id: LandingPad(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: LandingPad(ITypeRef) - nameWithType: InstructionBuilder.LandingPad(ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LandingPad - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 374 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a instruction - example: [] - syntax: - content: public LandingPad LandingPad(ITypeRef resultType) - parameters: - - id: resultType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Result type for the pad - return: - type: Ubiquity.NET.Llvm.Instructions.LandingPad - description: - content.vb: Public Function LandingPad(resultType As ITypeRef) As LandingPad - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze(Ubiquity.NET.Llvm.Values.Value) - id: Freeze(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Freeze(Value) - nameWithType: InstructionBuilder.Freeze(Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Freeze - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 389 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a instruction - example: [] - syntax: - content: public Freeze Freeze(Value value) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: Value to freeze - return: - type: Ubiquity.NET.Llvm.Instructions.Freeze - description: - content.vb: Public Function Freeze(value As Value) As Freeze - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume(Ubiquity.NET.Llvm.Values.Value) - id: Resume(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Resume(Value) - nameWithType: InstructionBuilder.Resume(Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Resume - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 399 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a - example: [] - syntax: - content: public ResumeInstruction Resume(Value exception) - parameters: - - id: exception - type: Ubiquity.NET.Llvm.Values.Value - description: Exception value - return: - type: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - description: - content.vb: Public Function [Resume](exception As Value) As ResumeInstruction - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Store(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Store(Value, Value) - nameWithType: InstructionBuilder.Store(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Store - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 417 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds an LLVM Store instruction - remarks: >- - Since store targets memory the type of destination - - must be an . Furthermore, the element type of - - the pointer must match the type of value. Otherwise, - - an is thrown. - example: [] - syntax: - content: public Store Store(Value value, Value destination) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: Value to store in destination - - id: destination - type: Ubiquity.NET.Llvm.Values.Value - description: value for the destination - return: - type: Ubiquity.NET.Llvm.Instructions.Store - description: instruction - content.vb: Public Function Store(value As Value, destination As Value) As Store - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value) - id: Load(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Load(ITypeRef, Value) - nameWithType: InstructionBuilder.Load(ITypeRef, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Load - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 439 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a load instruction - remarks: >- - The type of the value must be a sized type (e.g. not Opaque with a non-zero size ). - - if sourcePtr is a non-opaque pointer then its ElementType must be the same as type - example: [] - syntax: - content: public Load Load(ITypeRef type, Value sourcePtr) - parameters: - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value to load - - id: sourcePtr - type: Ubiquity.NET.Llvm.Values.Value - description: pointer to load the value from - return: - type: Ubiquity.NET.Llvm.Instructions.Load - description: Load instruction - content.vb: Public Function Load(type As ITypeRef, sourcePtr As Value) As Load - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicXchg(Value, Value) - nameWithType: InstructionBuilder.AtomicXchg(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicXchg - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 462 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic exchange (Read, Modify, Write) instruction - example: [] - syntax: - content: public AtomicRMW AtomicXchg(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicXchg(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicAdd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicAdd(Value, Value) - nameWithType: InstructionBuilder.AtomicAdd(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicAdd - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 468 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic add instruction - example: [] - syntax: - content: public AtomicRMW AtomicAdd(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicAdd(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicSub(Value, Value) - nameWithType: InstructionBuilder.AtomicSub(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicSub - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 474 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic subtraction instruction - example: [] - syntax: - content: public AtomicRMW AtomicSub(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicSub(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicAnd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicAnd(Value, Value) - nameWithType: InstructionBuilder.AtomicAnd(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicAnd - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 480 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic AND instruction - example: [] - syntax: - content: public AtomicRMW AtomicAnd(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicAnd(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicNand(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicNand(Value, Value) - nameWithType: InstructionBuilder.AtomicNand(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicNand - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 486 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic NAND instruction - example: [] - syntax: - content: public AtomicRMW AtomicNand(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicNand(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicOr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicOr(Value, Value) - nameWithType: InstructionBuilder.AtomicOr(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicOr - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 492 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic or instruction - example: [] - syntax: - content: public AtomicRMW AtomicOr(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicOr(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicXor(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicXor(Value, Value) - nameWithType: InstructionBuilder.AtomicXor(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicXor - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 498 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic XOR instruction - example: [] - syntax: - content: public AtomicRMW AtomicXor(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicXor(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicMax(Value, Value) - nameWithType: InstructionBuilder.AtomicMax(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicMax - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 504 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic ADD instruction - example: [] - syntax: - content: public AtomicRMW AtomicMax(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicMax(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicMin(Value, Value) - nameWithType: InstructionBuilder.AtomicMin(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicMin - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 510 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic MIN instruction - example: [] - syntax: - content: public AtomicRMW AtomicMin(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicMin(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicUMax(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicUMax(Value, Value) - nameWithType: InstructionBuilder.AtomicUMax(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicUMax - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 516 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic UMax instruction - example: [] - syntax: - content: public AtomicRMW AtomicUMax(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicUMax(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicUMin(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicUMin(Value, Value) - nameWithType: InstructionBuilder.AtomicUMin(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicUMin - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 522 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic UMin instruction - example: [] - syntax: - content: public AtomicRMW AtomicUMin(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicUMin(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicFadd(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicFadd(Value, Value) - nameWithType: InstructionBuilder.AtomicFadd(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicFadd - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 528 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic FAdd instruction - example: [] - syntax: - content: public AtomicRMW AtomicFadd(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicFadd(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicFSub(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicFSub(Value, Value) - nameWithType: InstructionBuilder.AtomicFSub(Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicFSub - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 534 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic FSub instruction - example: [] - syntax: - content: public AtomicRMW AtomicFSub(Value ptr, Value val) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: val - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicRMW - description: - content.vb: Public Function AtomicFSub(ptr As Value, val As Value) As AtomicRMW - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: AtomicCmpXchg(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AtomicCmpXchg(Value, Value, Value) - nameWithType: InstructionBuilder.AtomicCmpXchg(Value, Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicCmpXchg - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 541 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an atomic Compare exchange instruction - example: [] - syntax: - content: public AtomicCmpXchg AtomicCmpXchg(Value ptr, Value cmp, Value value) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer to the value to update (e.g. destination and the left hand operand) - - id: cmp - type: Ubiquity.NET.Llvm.Values.Value - description: Comparand for the operation - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side operand - return: - type: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - description: - content.vb: Public Function AtomicCmpXchg(ptr As Value, cmp As Value, value As Value) As AtomicCmpXchg - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Values.Value,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Values.Value,System.UInt32) - id: GetStructElementPointer(Ubiquity.NET.Llvm.Values.Value,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetStructElementPointer(Value, uint) - nameWithType: InstructionBuilder.GetStructElementPointer(Value, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Values.Value, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetStructElementPointer - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 575 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element (field) of a structure - example: [] - syntax: - content: >- - [Obsolete("Use the overload that takes a type and opaque pointer")] - - public Value GetStructElementPointer(Value pointer, uint index) - parameters: - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: pointer to the structure to get an element from - - id: index - type: System.UInt32 - description: element index - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: >- - - - Public Function GetStructElementPointer(pointer As Value, index As UInteger) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use the overload that takes a type and opaque pointer - nameWithType.vb: InstructionBuilder.GetStructElementPointer(Value, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Values.Value, UInteger) - name.vb: GetStructElementPointer(Value, UInteger) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.UInt32) - id: GetStructElementPointer(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetStructElementPointer(ITypeRef, Value, uint) - nameWithType: InstructionBuilder.GetStructElementPointer(ITypeRef, Value, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetStructElementPointer - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 597 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element (field) of a structure - example: [] - syntax: - content: public Value GetStructElementPointer(ITypeRef type, Value pointer, uint index) - parameters: - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the pointer - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: OPaque pointer to the structure to get an element from - - id: index - type: System.UInt32 - description: element index - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: Public Function GetStructElementPointer(type As ITypeRef, pointer As Value, index As UInteger) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer* - nameWithType.vb: InstructionBuilder.GetStructElementPointer(ITypeRef, Value, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value, UInteger) - name.vb: GetStructElementPointer(ITypeRef, Value, UInteger) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - id: GetElementPtr(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetElementPtr(ITypeRef, Value, IEnumerable) - nameWithType: InstructionBuilder.GetElementPtr(ITypeRef, Value, IEnumerable) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtr - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 629 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element of a type referenced by a pointer - remarks: >- - For details on GetElementPointer (GEP) see - - The Often Misunderstood GEP Instruction. - - The basic gist is that the GEP instruction does not access memory, it only computes a pointer - - offset from a base. A common confusion is around the first index and what it means. For C - - and C++ programmers an expression like pFoo->bar seems to only have a single offset or - - index. However, that is only syntactic sugar where the compiler implicitly hides the first - - index. That is, there is no difference between pFoo[0].bar and pFoo->bar except that the - - former makes the first index explicit. LLVM requires an explicit first index, even if it is - - zero, in order to properly compute the offset for a given element in an aggregate type. - example: [] - syntax: - content: public Value GetElementPtr(ITypeRef type, Value pointer, IEnumerable args) - parameters: - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of array,vector or structure to get the element pointer from - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: opaque pointer to get an element from - - id: args - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value} - description: additional indices for computing the resulting pointer - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: Public Function GetElementPtr(type As ITypeRef, pointer As Value, args As IEnumerable(Of Value)) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr* - nameWithType.vb: InstructionBuilder.GetElementPtr(ITypeRef, Value, IEnumerable(Of Value)) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Value)) - name.vb: GetElementPtr(ITypeRef, Value, IEnumerable(Of Value)) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - id: GetElementPtr(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetElementPtr(Value, IEnumerable) - nameWithType: InstructionBuilder.GetElementPtr(Value, IEnumerable) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtr - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 664 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element of a type referenced by a pointer - remarks: >- - For details on GetElementPointer (GEP) see - - The Often Misunderstood GEP Instruction. - - The basic gist is that the GEP instruction does not access memory, it only computes a pointer - - offset from a base. A common confusion is around the first index and what it means. For C - - and C++ programmers an expression like pFoo->bar seems to only have a single offset or - - index. However, that is only syntactic sugar where the compiler implicitly hides the first - - index. That is, there is no difference between pFoo[0].bar and pFoo->bar except that the - - former makes the first index explicit. LLVM requires an explicit first index, even if it is - - zero, in order to properly compute the offset for a given element in an aggregate type. - example: [] - syntax: - content: public Value GetElementPtr(Value pointer, IEnumerable args) - parameters: - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: pointer to get an element from - - id: args - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value} - description: additional indices for computing the resulting pointer - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: Public Function GetElementPtr(pointer As Value, args As IEnumerable(Of Value)) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr* - nameWithType.vb: InstructionBuilder.GetElementPtr(Value, IEnumerable(Of Value)) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Value)) - name.vb: GetElementPtr(Value, IEnumerable(Of Value)) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - id: GetElementPtr(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetElementPtr(Value, params Value[]) - nameWithType: InstructionBuilder.GetElementPtr(Value, params Value[]) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value, params Ubiquity.NET.Llvm.Values.Value[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtr - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 689 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element of a type referenced by a pointer - remarks: >- - For details on GetElementPointer (GEP) see - - The Often Misunderstood GEP Instruction. - - The basic gist is that the GEP instruction does not access memory, it only computes a pointer - - offset from a base. A common confusion is around the first index and what it means. For C - - and C++ programmers an expression like pFoo->bar seems to only have a single offset or - - index. However, that is only syntactic sugar where the compiler implicitly hides the first - - index. That is, there is no difference between pFoo[0].bar and pFoo->bar except that the - - former makes the first index explicit. LLVM requires an explicit first index, even if it is - - zero, in order to properly compute the offset for a given element in an aggregate type. - example: [] - syntax: - content: public Value GetElementPtr(Value pointer, params Value[] args) - parameters: - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: pointer to get an element from - - id: args - type: Ubiquity.NET.Llvm.Values.Value[] - description: additional indices for computing the resulting pointer - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: Public Function GetElementPtr(pointer As Value, ParamArray args As Value()) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr* - nameWithType.vb: InstructionBuilder.GetElementPtr(Value, ParamArray Value()) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr(Ubiquity.NET.Llvm.Values.Value, ParamArray Ubiquity.NET.Llvm.Values.Value()) - name.vb: GetElementPtr(Value, ParamArray Value()) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - id: GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetElementPtrInBounds(Value, IEnumerable) - nameWithType: InstructionBuilder.GetElementPtrInBounds(Value, IEnumerable) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtrInBounds - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 713 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element of a type referenced by a pointer - remarks: >- - For details on GetElementPointer (GEP) see - - The Often Misunderstood GEP Instruction. - - The basic gist is that the GEP instruction does not access memory, it only computes a pointer - - offset from a base. A common confusion is around the first index and what it means. For C - - and C++ programmers an expression like pFoo->bar seems to only have a single offset or - - index. However, that is only syntactic sugar where the compiler implicitly hides the first - - index. That is, there is no difference between pFoo[0].bar and pFoo->bar except that the - - former makes the first index explicit. LLVM requires an explicit first index, even if it is - - zero, in order to properly compute the offset for a given element in an aggregate type. - example: [] - syntax: - content: >- - [Obsolete("Use overload that takes a pointer type and opaque pointer")] - - public Value GetElementPtrInBounds(Value pointer, IEnumerable args) - parameters: - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: pointer to get an element from - - id: args - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value} - description: additional indices for computing the resulting pointer - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: >- - - - Public Function GetElementPtrInBounds(pointer As Value, args As IEnumerable(Of Value)) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use overload that takes a pointer type and opaque pointer - nameWithType.vb: InstructionBuilder.GetElementPtrInBounds(Value, IEnumerable(Of Value)) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Value)) - name.vb: GetElementPtrInBounds(Value, IEnumerable(Of Value)) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - id: GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value}) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetElementPtrInBounds(ITypeRef, Value, IEnumerable) - nameWithType: InstructionBuilder.GetElementPtrInBounds(ITypeRef, Value, IEnumerable) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtrInBounds - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 742 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element of a type referenced by a pointer - remarks: >- - For details on GetElementPointer (GEP) see - - The Often Misunderstood GEP Instruction. - - The basic gist is that the GEP instruction does not access memory, it only computes a pointer - - offset from a base. A common confusion is around the first index and what it means. For C - - and C++ programmers an expression like pFoo->bar seems to only have a single offset or - - index. However, that is only syntactic sugar where the compiler implicitly hides the first - - index. That is, there is no difference between pFoo[0].bar and pFoo->bar except that the - - former makes the first index explicit. LLVM requires an explicit first index, even if it is - - zero, in order to properly compute the offset for a given element in an aggregate type. - example: [] - syntax: - content: public Value GetElementPtrInBounds(ITypeRef type, Value pointer, IEnumerable args) - parameters: - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Base pointer type - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: opaque pointer to get an element from - - id: args - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value} - description: additional indices for computing the resulting pointer - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: Public Function GetElementPtrInBounds(type As ITypeRef, pointer As Value, args As IEnumerable(Of Value)) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds* - nameWithType.vb: InstructionBuilder.GetElementPtrInBounds(ITypeRef, Value, IEnumerable(Of Value)) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Value)) - name.vb: GetElementPtrInBounds(ITypeRef, Value, IEnumerable(Of Value)) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - id: GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetElementPtrInBounds(Value, params Value[]) - nameWithType: InstructionBuilder.GetElementPtrInBounds(Value, params Value[]) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value, params Ubiquity.NET.Llvm.Values.Value[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtrInBounds - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 777 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element of a type referenced by a pointer - remarks: >- - For details on GetElementPointer (GEP) see - - The Often Misunderstood GEP Instruction. - - The basic gist is that the GEP instruction does not access memory, it only computes a pointer - - offset from a base. A common confusion is around the first index and what it means. For C - - and C++ programmers an expression like pFoo->bar seems to only have a single offset or - - index. However that is only syntactic sugar where the compiler implicitly hides the first - - index. That is, there is no difference between pFoo[0].bar and pFoo->bar except that the - - former makes the first index explicit. LLVM requires an explicit first index, even if it is - - zero, in order to properly compute the offset for a given element in an aggregate type. - example: [] - syntax: - content: >- - [Obsolete("Use overload that accepts base pointer type and na opaque pointer")] - - public Value GetElementPtrInBounds(Value pointer, params Value[] args) - parameters: - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: pointer to get an element from - - id: args - type: Ubiquity.NET.Llvm.Values.Value[] - description: additional indices for computing the resulting pointer - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: >- - - - Public Function GetElementPtrInBounds(pointer As Value, ParamArray args As Value()) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds* - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Use overload that accepts base pointer type and na opaque pointer - nameWithType.vb: InstructionBuilder.GetElementPtrInBounds(Value, ParamArray Value()) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value, ParamArray Ubiquity.NET.Llvm.Values.Value()) - name.vb: GetElementPtrInBounds(Value, ParamArray Value()) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - id: GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: GetElementPtrInBounds(ITypeRef, Value, params Value[]) - nameWithType: InstructionBuilder.GetElementPtrInBounds(ITypeRef, Value, params Value[]) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value, params Ubiquity.NET.Llvm.Values.Value[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtrInBounds - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 806 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element of a type referenced by a pointer - remarks: >- - For details on GetElementPointer (GEP) see - - The Often Misunderstood GEP Instruction. - - The basic gist is that the GEP instruction does not access memory, it only computes a pointer - - offset from a base. A common confusion is around the first index and what it means. For C - - and C++ programmers an expression like pFoo->bar seems to only have a single offset or - - index. However that is only syntactic sugar where the compiler implicitly hides the first - - index. That is, there is no difference between pFoo[0].bar and pFoo->bar except that the - - former makes the first index explicit. LLVM requires an explicit first index, even if it is - - zero, in order to properly compute the offset for a given element in an aggregate type. - example: [] - syntax: - content: public Value GetElementPtrInBounds(ITypeRef type, Value pointer, params Value[] args) - parameters: - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Base pointer type - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: opaque pointer to get an element from - - id: args - type: Ubiquity.NET.Llvm.Values.Value[] - description: additional indices for computing the resulting pointer - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a - - as LLVM may optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: Public Function GetElementPtrInBounds(type As ITypeRef, pointer As Value, ParamArray args As Value()) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds* - nameWithType.vb: InstructionBuilder.GetElementPtrInBounds(ITypeRef, Value, ParamArray Value()) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds(Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.Values.Value, ParamArray Ubiquity.NET.Llvm.Values.Value()) - name.vb: GetElementPtrInBounds(ITypeRef, Value, ParamArray Value()) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - id: ConstGetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value[]) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: ConstGetElementPtrInBounds(Value, params Value[]) - nameWithType: InstructionBuilder.ConstGetElementPtrInBounds(Value, params Value[]) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value, params Ubiquity.NET.Llvm.Values.Value[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstGetElementPtrInBounds - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 833 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a that accesses an element of a type referenced by a pointer - remarks: >- - For details on GetElementPointer (GEP) see - - The Often Misunderstood GEP Instruction. - - The basic gist is that the GEP instruction does not access memory, it only computes a pointer - - offset from a base. A common confusion is around the first index and what it means. For C - - and C++ programmers an expression like pFoo->bar seems to only have a single offset or - - index. However that is only syntactic sugar where the compiler implicitly hides the first - - index. That is, there is no difference between pFoo[0].bar and pFoo->bar except that the - - former makes the first index explicit. LLVM requires an explicit first index, even if it is - - zero, in order to properly compute the offset for a given element in an aggregate type. - example: [] - syntax: - content: public static Value ConstGetElementPtrInBounds(Value pointer, params Value[] args) - parameters: - - id: pointer - type: Ubiquity.NET.Llvm.Values.Value - description: pointer to get an element from - - id: args - type: Ubiquity.NET.Llvm.Values.Value[] - description: additional indices for computing the resulting pointer - return: - type: Ubiquity.NET.Llvm.Values.Value - description: >- -

for the member access. This is a User as LLVM may - - optimize the expression to a if it - - can so the actual type of the result may be - - or .

- -

Note that pointer must be a pointer to a structure - - or an exception is thrown.

- content.vb: Public Shared Function ConstGetElementPtrInBounds(pointer As Value, ParamArray args As Value()) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds* - nameWithType.vb: InstructionBuilder.ConstGetElementPtrInBounds(Value, ParamArray Value()) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds(Ubiquity.NET.Llvm.Values.Value, ParamArray Ubiquity.NET.Llvm.Values.Value()) - name.vb: ConstGetElementPtrInBounds(Value, ParamArray Value()) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.IPointerType) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.IPointerType) - id: IntToPointer(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.IPointerType) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: IntToPointer(Value, IPointerType) - nameWithType: InstructionBuilder.IntToPointer(Value, IPointerType) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.IPointerType) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntToPointer - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 850 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds a cast from an integer to a pointer - remarks: >- - The actual type of value returned depends on intValue - - and is either a or an - - instruction. Conversion to a constant expression is performed whenever possible. - example: [] - syntax: - content: public Value IntToPointer(Value intValue, IPointerType ptrType) - parameters: - - id: intValue - type: Ubiquity.NET.Llvm.Values.Value - description: Integer value to cast - - id: ptrType - type: Ubiquity.NET.Llvm.Types.IPointerType - description: pointer type to return - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Resulting value from the cast - content.vb: Public Function IntToPointer(intValue As Value, ptrType As IPointerType) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: PointerToInt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: PointerToInt(Value, ITypeRef) - nameWithType: InstructionBuilder.PointerToInt(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerToInt - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 872 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds a cast from a pointer to an integer type - remarks: >- - The actual type of value returned depends on ptrValue - - and is either a or a - - instruction. Conversion to a constant expression is performed whenever possible. - example: [] - syntax: - content: public Value PointerToInt(Value ptrValue, ITypeRef intType) - parameters: - - id: ptrValue - type: Ubiquity.NET.Llvm.Values.Value - description: Pointer value to cast - - id: intType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Integer type to return - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Resulting value from the cast - content.vb: Public Function PointerToInt(ptrValue As Value, intType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.BasicBlock) - id: Branch(Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Branch(BasicBlock) - nameWithType: InstructionBuilder.Branch(BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Branch - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 897 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Create an unconditional branch - example: [] - syntax: - content: public Branch Branch(BasicBlock target) - parameters: - - id: target - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Target block for the branch - return: - type: Ubiquity.NET.Llvm.Instructions.Branch - description: - content.vb: Public Function Branch(target As BasicBlock) As Branch - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock) - id: Branch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Branch(Value, BasicBlock, BasicBlock) - nameWithType: InstructionBuilder.Branch(Value, BasicBlock, BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.BasicBlock, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Branch - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 908 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a conditional branch instruction - example: [] - syntax: - content: public Branch Branch(Value ifCondition, BasicBlock thenTarget, BasicBlock elseTarget) - parameters: - - id: ifCondition - type: Ubiquity.NET.Llvm.Values.Value - description: Condition for the branch - - id: thenTarget - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Target block for the branch when ifCondition evaluates to a non-zero value - - id: elseTarget - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Target block for the branch when ifCondition evaluates to a zero value - return: - type: Ubiquity.NET.Llvm.Instructions.Branch - description: - content.vb: Public Function Branch(ifCondition As Value, thenTarget As BasicBlock, elseTarget As BasicBlock) As Branch - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable - id: Unreachable - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Unreachable() - nameWithType: InstructionBuilder.Unreachable() - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unreachable - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 925 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an instruction - example: [] - syntax: - content: public Unreachable Unreachable() - return: - type: Ubiquity.NET.Llvm.Instructions.Unreachable - description: - content.vb: Public Function Unreachable() As Unreachable - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.IntPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.IntPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Compare(Ubiquity.NET.Llvm.Instructions.IntPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Compare(IntPredicate, Value, Value) - nameWithType: InstructionBuilder.Compare(IntPredicate, Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.IntPredicate, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Compare - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 933 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds an Integer compare instruction - example: [] - syntax: - content: public Value Compare(IntPredicate predicate, Value lhs, Value rhs) - parameters: - - id: predicate - type: Ubiquity.NET.Llvm.Instructions.IntPredicate - description: Integer predicate for the comparison - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: Left hand side of the comparison - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side of the comparison - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Comparison instruction - content.vb: Public Function Compare(predicate As IntPredicate, lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.RealPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.RealPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Compare(Ubiquity.NET.Llvm.Instructions.RealPredicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Compare(RealPredicate, Value, Value) - nameWithType: InstructionBuilder.Compare(RealPredicate, Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.RealPredicate, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Compare - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 958 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds a Floating point compare instruction - example: [] - syntax: - content: public Value Compare(RealPredicate predicate, Value lhs, Value rhs) - parameters: - - id: predicate - type: Ubiquity.NET.Llvm.Instructions.RealPredicate - description: predicate for the comparison - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: Left hand side of the comparison - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side of the comparison - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Comparison instruction - content.vb: Public Function Compare(predicate As RealPredicate, lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.Predicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.Predicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Compare(Ubiquity.NET.Llvm.Instructions.Predicate,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Compare(Predicate, Value, Value) - nameWithType: InstructionBuilder.Compare(Predicate, Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare(Ubiquity.NET.Llvm.Instructions.Predicate, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Compare - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 988 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds a compare instruction - example: [] - syntax: - content: public Value Compare(Predicate predicate, Value lhs, Value rhs) - parameters: - - id: predicate - type: Ubiquity.NET.Llvm.Instructions.Predicate - description: predicate for the comparison - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: Left hand side of the comparison - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side of the comparison - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Comparison instruction - content.vb: Public Function Compare(predicate As Predicate, lhs As Value, rhs As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: ZeroExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: ZeroExtendOrBitCast(Value, ITypeRef) - nameWithType: InstructionBuilder.ZeroExtendOrBitCast(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ZeroExtendOrBitCast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1011 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a zero extend or bit cast instruction - example: [] - syntax: - content: public Value ZeroExtendOrBitCast(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function ZeroExtendOrBitCast(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: SignExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: SignExtendOrBitCast(Value, ITypeRef) - nameWithType: InstructionBuilder.SignExtendOrBitCast(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignExtendOrBitCast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1030 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a sign extend or bit cast instruction - example: [] - syntax: - content: public Value SignExtendOrBitCast(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function SignExtendOrBitCast(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: TruncOrBitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: TruncOrBitCast(Value, ITypeRef) - nameWithType: InstructionBuilder.TruncOrBitCast(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TruncOrBitCast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1049 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a trunc or bit cast instruction - example: [] - syntax: - content: public Value TruncOrBitCast(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function TruncOrBitCast(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: ZeroExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: ZeroExtend(Value, ITypeRef) - nameWithType: InstructionBuilder.ZeroExtend(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ZeroExtend - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1072 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a Zero Extend instruction - example: [] - syntax: - content: public Value ZeroExtend(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function ZeroExtend(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: SignExtend(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: SignExtend(Value, ITypeRef) - nameWithType: InstructionBuilder.SignExtend(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignExtend - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1085 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a Sign Extend instruction - example: [] - syntax: - content: public Value SignExtend(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function SignExtend(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: BitCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: BitCast(Value, ITypeRef) - nameWithType: InstructionBuilder.BitCast(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitCast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1098 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a bitcast instruction - example: [] - syntax: - content: public Value BitCast(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function BitCast(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean) - id: IntCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: IntCast(Value, ITypeRef, bool) - nameWithType: InstructionBuilder.IntCast(Value, ITypeRef, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntCast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1122 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an integer cast instruction - example: [] - syntax: - content: public Value IntCast(Value valueRef, ITypeRef targetType, bool isSigned) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - - id: isSigned - type: System.Boolean - description: Flag to indicate if the cast is signed or unsigned - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function IntCast(valueRef As Value, targetType As ITypeRef, isSigned As Boolean) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast* - nameWithType.vb: InstructionBuilder.IntCast(Value, ITypeRef, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef, Boolean) - name.vb: IntCast(Value, ITypeRef, Boolean) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: Trunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Trunc(Value, ITypeRef) - nameWithType: InstructionBuilder.Trunc(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Trunc - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1135 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a trunc instruction - example: [] - syntax: - content: public Value Trunc(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function Trunc(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: SIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: SIToFPCast(Value, ITypeRef) - nameWithType: InstructionBuilder.SIToFPCast(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SIToFPCast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1151 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a signed integer to floating point cast instruction - example: [] - syntax: - content: public Value SIToFPCast(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function SIToFPCast(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: UIToFPCast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: UIToFPCast(Value, ITypeRef) - nameWithType: InstructionBuilder.UIToFPCast(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UIToFPCast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1164 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an unsigned integer to floating point cast instruction - example: [] - syntax: - content: public Value UIToFPCast(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function UIToFPCast(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: FPToUICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FPToUICast(Value, ITypeRef) - nameWithType: InstructionBuilder.FPToUICast(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPToUICast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1177 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a Floating point to unsigned integer cast instruction - example: [] - syntax: - content: public Value FPToUICast(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function FPToUICast(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: FPToSICast(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FPToSICast(Value, ITypeRef) - nameWithType: InstructionBuilder.FPToSICast(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPToSICast - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1190 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point to signed integer cast instruction - example: [] - syntax: - content: public Value FPToSICast(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function FPToSICast(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: FPExt(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FPExt(Value, ITypeRef) - nameWithType: InstructionBuilder.FPExt(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPExt - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1203 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point extend instruction - example: [] - syntax: - content: public Value FPExt(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function FPExt(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - id: FPTrunc(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: FPTrunc(Value, ITypeRef) - nameWithType: InstructionBuilder.FPTrunc(Value, ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPTrunc - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1216 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a floating point truncate instruction - example: [] - syntax: - content: public Value FPTrunc(Value valueRef, ITypeRef targetType) - parameters: - - id: valueRef - type: Ubiquity.NET.Llvm.Values.Value - description: Operand for the instruction - - id: targetType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Target type for the instruction - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Result - content.vb: Public Function FPTrunc(valueRef As Value, targetType As ITypeRef) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - id: Select(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Select(Value, Value, Value) - nameWithType: InstructionBuilder.Select(Value, Value, Value) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Select - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1234 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds a instruction - remarks: >- - If ifCondition is a vector then both values must be a vector of the same - - size and the selection is performed element by element. The values must be the same type. - example: [] - syntax: - content: public Value Select(Value ifCondition, Value thenValue, Value elseValue) - parameters: - - id: ifCondition - type: Ubiquity.NET.Llvm.Values.Value - description: Value for the condition to select between the values - - id: thenValue - type: Ubiquity.NET.Llvm.Values.Value - description: Result value if ifCondition evaluates to 1 - - id: elseValue - type: Ubiquity.NET.Llvm.Values.Value - description: Result value if ifCondition evaluates to 0 - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Selected value - content.vb: Public Function [Select](ifCondition As Value, thenValue As Value, elseValue As Value) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode(Ubiquity.NET.Llvm.Types.ITypeRef) - id: PhiNode(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: PhiNode(ITypeRef) - nameWithType: InstructionBuilder.PhiNode(ITypeRef) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PhiNode - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1279 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a Phi instruction - example: [] - syntax: - content: public PhiNode PhiNode(ITypeRef resultType) - parameters: - - id: resultType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Result type for the instruction - return: - type: Ubiquity.NET.Llvm.Instructions.PhiNode - description: - content.vb: Public Function PhiNode(resultType As ITypeRef) As PhiNode - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue(Ubiquity.NET.Llvm.Values.Value,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue(Ubiquity.NET.Llvm.Values.Value,System.UInt32) - id: ExtractValue(Ubiquity.NET.Llvm.Values.Value,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: ExtractValue(Value, uint) - nameWithType: InstructionBuilder.ExtractValue(Value, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue(Ubiquity.NET.Llvm.Values.Value, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExtractValue - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1289 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates an extractvalue instruction - example: [] - syntax: - content: public Value ExtractValue(Value instance, uint index) - parameters: - - id: instance - type: Ubiquity.NET.Llvm.Values.Value - description: Instance to extract a value from - - id: index - type: System.UInt32 - description: index of the element to extract - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Value for the instruction - content.vb: Public Function ExtractValue(instance As Value, index As UInteger) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue* - nameWithType.vb: InstructionBuilder.ExtractValue(Value, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue(Ubiquity.NET.Llvm.Values.Value, UInteger) - name.vb: ExtractValue(Value, UInteger) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,System.UInt32) - id: Switch(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Switch(Value, BasicBlock, uint) - nameWithType: InstructionBuilder.Switch(Value, BasicBlock, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.BasicBlock, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Switch - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1306 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a switch instruction - remarks: >- - Callers can use to add cases to the - - instruction. - example: [] - syntax: - content: public Switch Switch(Value value, BasicBlock defaultCase, uint numCases) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: Value to switch on - - id: defaultCase - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: default case if value does match any case - - id: numCases - type: System.UInt32 - description: Number of cases for the switch - return: - type: Ubiquity.NET.Llvm.Instructions.Switch - description: - content.vb: Public Function Switch(value As Value, defaultCase As BasicBlock, numCases As UInteger) As Switch - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch* - nameWithType.vb: InstructionBuilder.Switch(Value, BasicBlock, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.BasicBlock, UInteger) - name.vb: Switch(Value, BasicBlock, UInteger) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing - id: DoNothing - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: DoNothing() - nameWithType: InstructionBuilder.DoNothing() - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DoNothing - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1320 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a call to the llvm.donothing intrinsic - example: [] - syntax: - content: public CallInstruction DoNothing() - return: - type: Ubiquity.NET.Llvm.Instructions.CallInstruction - description: - content.vb: Public Function DoNothing() As CallInstruction - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing* - exceptions: - - type: System.InvalidOperationException - commentId: T:System.InvalidOperationException - description: is null or it's is null or has a null -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap - id: DebugTrap - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: DebugTrap() - nameWithType: InstructionBuilder.DebugTrap() - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugTrap - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1330 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a llvm.debugtrap call - example: [] - syntax: - content: public CallInstruction DebugTrap() - return: - type: Ubiquity.NET.Llvm.Instructions.CallInstruction - description: - content.vb: Public Function DebugTrap() As CallInstruction - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap - id: Trap - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: Trap() - nameWithType: InstructionBuilder.Trap() - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Trap - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1340 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Creates a llvm.trap call - example: [] - syntax: - content: public CallInstruction Trap() - return: - type: Ubiquity.NET.Llvm.Instructions.CallInstruction - description: - content.vb: Public Function Trap() As CallInstruction - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap* -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - id: MemCpy(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: MemCpy(Value, Value, Value, bool) - nameWithType: InstructionBuilder.MemCpy(Value, Value, Value, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MemCpy - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1359 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds a memcpy intrinsic call - remarks: >- - LLVM has many overloaded variants of the memcpy intrinsic, this implementation will deduce the types from - - the provided values and generate a more specific call without the need to provide overloaded forms of this - - method and otherwise complicating the calling code. - example: [] - syntax: - content: public Value MemCpy(Value destination, Value source, Value len, bool isVolatile) - parameters: - - id: destination - type: Ubiquity.NET.Llvm.Values.Value - description: Destination pointer of the memcpy - - id: source - type: Ubiquity.NET.Llvm.Values.Value - description: Source pointer of the memcpy - - id: len - type: Ubiquity.NET.Llvm.Values.Value - description: length of the data to copy - - id: isVolatile - type: System.Boolean - description: Flag to indicate if the copy involves volatile data such as physical registers - return: - type: Ubiquity.NET.Llvm.Values.Value - description: call for the memcpy - content.vb: Public Function MemCpy(destination As Value, source As Value, len As Value, isVolatile As Boolean) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy* - nameWithType.vb: InstructionBuilder.MemCpy(Value, Value, Value, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Boolean) - name.vb: MemCpy(Value, Value, Value, Boolean) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - id: MemMove(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: MemMove(Value, Value, Value, bool) - nameWithType: InstructionBuilder.MemMove(Value, Value, Value, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MemMove - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1414 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds a memmove intrinsic call - remarks: >- - LLVM has many overloaded variants of the memmove intrinsic, this implementation will deduce the types from - - the provided values and generate a more specific call without the need to provide overloaded forms of this - - method and otherwise complicating the calling code. - example: [] - syntax: - content: public Value MemMove(Value destination, Value source, Value len, bool isVolatile) - parameters: - - id: destination - type: Ubiquity.NET.Llvm.Values.Value - description: Destination pointer of the memmove - - id: source - type: Ubiquity.NET.Llvm.Values.Value - description: Source pointer of the memmove - - id: len - type: Ubiquity.NET.Llvm.Values.Value - description: length of the data to copy - - id: isVolatile - type: System.Boolean - description: Flag to indicate if the copy involves volatile data such as physical registers - return: - type: Ubiquity.NET.Llvm.Values.Value - description: call for the memmove - content.vb: Public Function MemMove(destination As Value, source As Value, len As Value, isVolatile As Boolean) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove* - nameWithType.vb: InstructionBuilder.MemMove(Value, Value, Value, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Boolean) - name.vb: MemMove(Value, Value, Value, Boolean) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - id: MemSet(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: MemSet(Value, Value, Value, bool) - nameWithType: InstructionBuilder.MemSet(Value, Value, Value, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MemSet - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1464 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds a memset intrinsic call - remarks: >- - LLVM has many overloaded variants of the memset intrinsic, this implementation will deduce the types from - - the provided values and generate a more specific call without the need to provide overloaded forms of this - - method and otherwise complicating the calling code. - example: [] - syntax: - content: public Value MemSet(Value destination, Value value, Value len, bool isVolatile) - parameters: - - id: destination - type: Ubiquity.NET.Llvm.Values.Value - description: Destination pointer of the memset - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: fill value for the memset - - id: len - type: Ubiquity.NET.Llvm.Values.Value - description: length of the data to fill - - id: isVolatile - type: System.Boolean - description: Flag to indicate if the fill involves volatile data such as physical registers - return: - type: Ubiquity.NET.Llvm.Values.Value - description: call for the memset - content.vb: Public Function MemSet(destination As Value, value As Value, len As Value, isVolatile As Boolean) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet* - nameWithType.vb: InstructionBuilder.MemSet(Value, Value, Value, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Boolean) - name.vb: MemSet(Value, Value, Value, Boolean) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.UInt32) - id: InsertValue(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: InsertValue(Value, Value, uint) - nameWithType: InstructionBuilder.InsertValue(Value, Value, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertValue - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1509 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Builds an instruction - example: [] - syntax: - content: public Value InsertValue(Value aggValue, Value elementValue, uint index) - parameters: - - id: aggValue - type: Ubiquity.NET.Llvm.Values.Value - description: Aggregate value to insert elementValue into - - id: elementValue - type: Ubiquity.NET.Llvm.Values.Value - description: Value to insert into aggValue - - id: index - type: System.UInt32 - description: Index to insert the value into - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Instruction as a - content.vb: Public Function InsertValue(aggValue As Value, elementValue As Value, index As UInteger) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue* - nameWithType.vb: InstructionBuilder.InsertValue(Value, Value, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, UInteger) - name.vb: InsertValue(Value, Value, UInteger) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - id: AddWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: AddWithOverflow(Value, Value, bool) - nameWithType: InstructionBuilder.AddWithOverflow(Value, Value, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddWithOverflow - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1523 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Generates a call to the llvm.[s|u]add.with.overflow intrinsic - example: [] - syntax: - content: public Value AddWithOverflow(Value lhs, Value rhs, bool signed) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: Left hand side of the operation - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side of the operation - - id: signed - type: System.Boolean - description: Flag to indicate if the operation is signed true or unsigned false - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Instruction as a - content.vb: Public Function AddWithOverflow(lhs As Value, rhs As Value, signed As Boolean) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow* - nameWithType.vb: InstructionBuilder.AddWithOverflow(Value, Value, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Boolean) - name.vb: AddWithOverflow(Value, Value, Boolean) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - id: SubWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: SubWithOverflow(Value, Value, bool) - nameWithType: InstructionBuilder.SubWithOverflow(Value, Value, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SubWithOverflow - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1541 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Generates a call to the llvm.[s|u]sub.with.overflow intrinsic - example: [] - syntax: - content: public Value SubWithOverflow(Value lhs, Value rhs, bool signed) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: Left hand side of the operation - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side of the operation - - id: signed - type: System.Boolean - description: Flag to indicate if the operation is signed true or unsigned false - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Instruction as a - content.vb: Public Function SubWithOverflow(lhs As Value, rhs As Value, signed As Boolean) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow* - nameWithType.vb: InstructionBuilder.SubWithOverflow(Value, Value, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Boolean) - name.vb: SubWithOverflow(Value, Value, Boolean) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - id: MulWithOverflow(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.Value,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - langs: - - csharp - - vb - name: MulWithOverflow(Value, Value, bool) - nameWithType: InstructionBuilder.MulWithOverflow(Value, Value, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MulWithOverflow - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionBuilder.cs - startLine: 1560 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Generates a call to the llvm.[s|u]mul.with.overflow intrinsic - example: [] - syntax: - content: public Value MulWithOverflow(Value lhs, Value rhs, bool signed) - parameters: - - id: lhs - type: Ubiquity.NET.Llvm.Values.Value - description: Left hand side of the operation - - id: rhs - type: Ubiquity.NET.Llvm.Values.Value - description: Right hand side of the operation - - id: signed - type: System.Boolean - description: Flag to indicate if the operation is signed true or unsigned false - return: - type: Ubiquity.NET.Llvm.Values.Value - description: Instruction as a - content.vb: Public Function MulWithOverflow(lhs As Value, rhs As Value, signed As Boolean) As Value - overload: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow* - nameWithType.vb: InstructionBuilder.MulWithOverflow(Value, Value, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.Value, Boolean) - name.vb: MulWithOverflow(Value, Value, Boolean) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Dispose - name: Dispose - nameWithType: InstructionBuilder.Dispose - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionBuilder - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html - name: InstructionBuilder - nameWithType: InstructionBuilder - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder -- uid: Ubiquity.NET.Llvm.ContextAlias - commentId: T:Ubiquity.NET.Llvm.ContextAlias - name: ContextAlias - nameWithType: ContextAlias - fullName: Ubiquity.NET.Llvm.ContextAlias -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.#ctor - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder__ctor_Ubiquity_NET_Llvm_IContext_ - name: InstructionBuilder - nameWithType: InstructionBuilder.InstructionBuilder - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InstructionBuilder - nameWithType.vb: InstructionBuilder.New - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.New - name.vb: New -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Context - name: Context - nameWithType: InstructionBuilder.Context - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Context -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_CurrentDebugLocation - name: CurrentDebugLocation - nameWithType: InstructionBuilder.CurrentDebugLocation - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.CurrentDebugLocation -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocation - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocation - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocation.html - name: DILocation - nameWithType: DILocation - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocation -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DILocalScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DILocalScope.html - name: DILocalScope - nameWithType: DILocalScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DILocalScope -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_SetDebugLocation_System_UInt32_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DILocalScope_Ubiquity_NET_Llvm_DebugInfo_DILocation_ - name: SetDebugLocation - nameWithType: InstructionBuilder.SetDebugLocation - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SetDebugLocation -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_InsertBlock - name: InsertBlock - nameWithType: InstructionBuilder.InsertBlock - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_InsertFunction - name: InsertFunction - nameWithType: InstructionBuilder.InsertFunction - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertFunction -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_PositionAtEnd_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: PositionAtEnd - nameWithType: InstructionBuilder.PositionAtEnd - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionAtEnd -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_PositionBefore_Ubiquity_NET_Llvm_Instructions_Instruction_ - name: PositionBefore - nameWithType: InstructionBuilder.PositionBefore - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PositionBefore -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_InsertBlock - name: InsertBlock - nameWithType: InstructionBuilder.InsertBlock - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertBlock -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AppendBasicBlock_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: AppendBasicBlock - nameWithType: InstructionBuilder.AppendBasicBlock - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AppendBasicBlock -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FNeg_Ubiquity_NET_Llvm_Values_Value_ - name: FNeg - nameWithType: InstructionBuilder.FNeg - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FNeg -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FAdd_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: FAdd - nameWithType: InstructionBuilder.FAdd - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FAdd -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FSub_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: FSub - nameWithType: InstructionBuilder.FSub - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FSub -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FMul_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: FMul - nameWithType: InstructionBuilder.FMul - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FMul -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FDiv_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: FDiv - nameWithType: InstructionBuilder.FDiv - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FDiv -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FRem_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: FRem - nameWithType: InstructionBuilder.FRem - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FRem -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Neg_Ubiquity_NET_Llvm_Values_Value_ - name: Neg - nameWithType: InstructionBuilder.Neg - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Neg -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Not_Ubiquity_NET_Llvm_Values_Value_ - name: Not - nameWithType: InstructionBuilder.Not - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Not -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Add_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: Add - nameWithType: InstructionBuilder.Add - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Add -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_And_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: And - nameWithType: InstructionBuilder.And - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.And -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Sub_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: Sub - nameWithType: InstructionBuilder.Sub - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Sub -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Mul_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: Mul - nameWithType: InstructionBuilder.Mul - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Mul -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_ShiftLeft_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: ShiftLeft - nameWithType: InstructionBuilder.ShiftLeft - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ShiftLeft -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_ArithmeticShiftRight_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: ArithmeticShiftRight - nameWithType: InstructionBuilder.ArithmeticShiftRight - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ArithmeticShiftRight -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_LogicalShiftRight_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: LogicalShiftRight - nameWithType: InstructionBuilder.LogicalShiftRight - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LogicalShiftRight -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_UDiv_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: UDiv - nameWithType: InstructionBuilder.UDiv - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UDiv -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_SDiv_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: SDiv - nameWithType: InstructionBuilder.SDiv - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SDiv -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_URem_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: URem - nameWithType: InstructionBuilder.URem - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.URem -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_SRem_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: SRem - nameWithType: InstructionBuilder.SRem - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SRem -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Xor_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: Xor - nameWithType: InstructionBuilder.Xor - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Xor -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Or_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: Or - nameWithType: InstructionBuilder.Or - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Or -- uid: Ubiquity.NET.Llvm.Instructions.Alloca - commentId: T:Ubiquity.NET.Llvm.Instructions.Alloca - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - name: Alloca - nameWithType: Alloca - fullName: Ubiquity.NET.Llvm.Instructions.Alloca -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Alloca_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: Alloca - nameWithType: InstructionBuilder.Alloca - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Alloca -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Values.ConstantInt - commentId: T:Ubiquity.NET.Llvm.Values.ConstantInt - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - name: ConstantInt - nameWithType: ConstantInt - fullName: Ubiquity.NET.Llvm.Values.ConstantInt -- uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ReturnInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - name: ReturnInstruction - nameWithType: ReturnInstruction - fullName: Ubiquity.NET.Llvm.Instructions.ReturnInstruction -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Return - name: Return - nameWithType: InstructionBuilder.Return - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Return -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Call_Ubiquity_NET_Llvm_Values_Function_Ubiquity_NET_Llvm_Values_Value___ - name: Call - nameWithType: InstructionBuilder.Call - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Call -- uid: Ubiquity.NET.Llvm.Values.Value[] - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value[] - nameWithType: Value[] - fullName: Ubiquity.NET.Llvm.Values.Value[] - nameWithType.vb: Value() - fullName.vb: Ubiquity.NET.Llvm.Values.Value() - name.vb: Value() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ( - - name: ) -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Value} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of Value) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IReadOnlyList(Of Value) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Instructions.Invoke - commentId: T:Ubiquity.NET.Llvm.Instructions.Invoke - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - name: Invoke - nameWithType: Invoke - fullName: Ubiquity.NET.Llvm.Instructions.Invoke -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Invoke_Ubiquity_NET_Llvm_Values_Function_System_Collections_Generic_IReadOnlyList_Ubiquity_NET_Llvm_Values_Value__Ubiquity_NET_Llvm_Values_BasicBlock_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: Invoke - nameWithType: InstructionBuilder.Invoke - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Invoke -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad - commentId: T:Ubiquity.NET.Llvm.Instructions.LandingPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - name: LandingPad - nameWithType: LandingPad - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_LandingPad_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: LandingPad - nameWithType: InstructionBuilder.LandingPad - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.LandingPad -- uid: Ubiquity.NET.Llvm.Instructions.Freeze - commentId: T:Ubiquity.NET.Llvm.Instructions.Freeze - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - name: Freeze - nameWithType: Freeze - fullName: Ubiquity.NET.Llvm.Instructions.Freeze -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Freeze_Ubiquity_NET_Llvm_Values_Value_ - name: Freeze - nameWithType: InstructionBuilder.Freeze - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Freeze -- uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ResumeInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - name: ResumeInstruction - nameWithType: ResumeInstruction - fullName: Ubiquity.NET.Llvm.Instructions.ResumeInstruction -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Resume_Ubiquity_NET_Llvm_Values_Value_ - name: Resume - nameWithType: InstructionBuilder.Resume - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Resume -- uid: Ubiquity.NET.Llvm.Instructions.Store - commentId: T:Ubiquity.NET.Llvm.Instructions.Store - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Store.html - name: Store - nameWithType: Store - fullName: Ubiquity.NET.Llvm.Instructions.Store -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Store_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: Store - nameWithType: InstructionBuilder.Store - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Store -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Load_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_Values_Value_ - name: Load - nameWithType: InstructionBuilder.Load - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Load -- uid: Ubiquity.NET.Llvm.Instructions.Load - commentId: T:Ubiquity.NET.Llvm.Instructions.Load - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Load.html - name: Load - nameWithType: Load - fullName: Ubiquity.NET.Llvm.Instructions.Load -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMW - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - name: AtomicRMW - nameWithType: AtomicRMW - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMW -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicXchg_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicXchg - nameWithType: InstructionBuilder.AtomicXchg - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXchg -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicAdd_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicAdd - nameWithType: InstructionBuilder.AtomicAdd - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAdd -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicSub_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicSub - nameWithType: InstructionBuilder.AtomicSub - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicSub -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicAnd_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicAnd - nameWithType: InstructionBuilder.AtomicAnd - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicAnd -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicNand_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicNand - nameWithType: InstructionBuilder.AtomicNand - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicNand -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicOr_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicOr - nameWithType: InstructionBuilder.AtomicOr - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicOr -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicXor_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicXor - nameWithType: InstructionBuilder.AtomicXor - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicXor -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicMax_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicMax - nameWithType: InstructionBuilder.AtomicMax - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMax -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicMin_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicMin - nameWithType: InstructionBuilder.AtomicMin - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicMin -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicUMax_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicUMax - nameWithType: InstructionBuilder.AtomicUMax - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMax -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicUMin_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicUMin - nameWithType: InstructionBuilder.AtomicUMin - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicUMin -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicFadd_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicFadd - nameWithType: InstructionBuilder.AtomicFadd - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFadd -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicFSub_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicFSub - nameWithType: InstructionBuilder.AtomicFSub - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicFSub -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AtomicCmpXchg_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: AtomicCmpXchg - nameWithType: InstructionBuilder.AtomicCmpXchg - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AtomicCmpXchg -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - name: AtomicCmpXchg - nameWithType: AtomicCmpXchg - fullName: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression - commentId: T:Ubiquity.NET.Llvm.Values.ConstantExpression - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html - name: ConstantExpression - nameWithType: ConstantExpression - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression -- uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - commentId: T:Ubiquity.NET.Llvm.Instructions.GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - name: GetElementPtr - nameWithType: GetElementPtr - fullName: Ubiquity.NET.Llvm.Instructions.GetElementPtr -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_GetStructElementPointer_Ubiquity_NET_Llvm_Values_Value_System_UInt32_ - name: GetStructElementPointer - nameWithType: InstructionBuilder.GetStructElementPointer - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetStructElementPointer -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_GetElementPtr_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_Values_Value_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Value__ - name: GetElementPtr - nameWithType: InstructionBuilder.GetElementPtr - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtr -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Value} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Value) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEnumerable(Of Value) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_GetElementPtrInBounds_Ubiquity_NET_Llvm_Values_Value_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_Value__ - name: GetElementPtrInBounds - nameWithType: InstructionBuilder.GetElementPtrInBounds - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.GetElementPtrInBounds -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_ConstGetElementPtrInBounds_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value___ - name: ConstGetElementPtrInBounds - nameWithType: InstructionBuilder.ConstGetElementPtrInBounds - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ConstGetElementPtrInBounds -- uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - commentId: T:Ubiquity.NET.Llvm.Instructions.IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - name: IntToPointer - nameWithType: IntToPointer - fullName: Ubiquity.NET.Llvm.Instructions.IntToPointer -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_IntToPointer_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_IPointerType_ - name: IntToPointer - nameWithType: InstructionBuilder.IntToPointer - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntToPointer -- uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - commentId: T:Ubiquity.NET.Llvm.Instructions.PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - name: PointerToInt - nameWithType: PointerToInt - fullName: Ubiquity.NET.Llvm.Instructions.PointerToInt -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_PointerToInt_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: PointerToInt - nameWithType: InstructionBuilder.PointerToInt - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PointerToInt -- uid: Ubiquity.NET.Llvm.Instructions.Branch - commentId: T:Ubiquity.NET.Llvm.Instructions.Branch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Branch.html - name: Branch - nameWithType: Branch - fullName: Ubiquity.NET.Llvm.Instructions.Branch -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Branch_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: Branch - nameWithType: InstructionBuilder.Branch - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Branch -- uid: Ubiquity.NET.Llvm.Instructions.Unreachable - commentId: T:Ubiquity.NET.Llvm.Instructions.Unreachable - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - name: Unreachable - nameWithType: Unreachable - fullName: Ubiquity.NET.Llvm.Instructions.Unreachable -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Unreachable - name: Unreachable - nameWithType: InstructionBuilder.Unreachable - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Unreachable -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Compare_Ubiquity_NET_Llvm_Instructions_IntPredicate_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: Compare - nameWithType: InstructionBuilder.Compare - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Compare -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate - commentId: T:Ubiquity.NET.Llvm.Instructions.IntPredicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.IntPredicate.html - name: IntPredicate - nameWithType: IntPredicate - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate - commentId: T:Ubiquity.NET.Llvm.Instructions.RealPredicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.RealPredicate.html - name: RealPredicate - nameWithType: RealPredicate - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate - commentId: T:Ubiquity.NET.Llvm.Instructions.Predicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Predicate.html - name: Predicate - nameWithType: Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_ZeroExtendOrBitCast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ZeroExtendOrBitCast - nameWithType: InstructionBuilder.ZeroExtendOrBitCast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtendOrBitCast -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_SignExtendOrBitCast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: SignExtendOrBitCast - nameWithType: InstructionBuilder.SignExtendOrBitCast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtendOrBitCast -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_TruncOrBitCast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: TruncOrBitCast - nameWithType: InstructionBuilder.TruncOrBitCast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.TruncOrBitCast -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_ZeroExtend_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ZeroExtend - nameWithType: InstructionBuilder.ZeroExtend - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ZeroExtend -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_SignExtend_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: SignExtend - nameWithType: InstructionBuilder.SignExtend - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SignExtend -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_BitCast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: BitCast - nameWithType: InstructionBuilder.BitCast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.BitCast -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_IntCast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_ - name: IntCast - nameWithType: InstructionBuilder.IntCast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.IntCast -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Trunc_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: Trunc - nameWithType: InstructionBuilder.Trunc - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trunc -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_SIToFPCast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: SIToFPCast - nameWithType: InstructionBuilder.SIToFPCast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SIToFPCast -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_UIToFPCast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UIToFPCast - nameWithType: InstructionBuilder.UIToFPCast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.UIToFPCast -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FPToUICast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: FPToUICast - nameWithType: InstructionBuilder.FPToUICast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToUICast -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FPToSICast_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: FPToSICast - nameWithType: InstructionBuilder.FPToSICast - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPToSICast -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FPExt_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: FPExt - nameWithType: InstructionBuilder.FPExt - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPExt -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_FPTrunc_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: FPTrunc - nameWithType: InstructionBuilder.FPTrunc - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.FPTrunc -- uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - name: SelectInstruction - nameWithType: SelectInstruction - fullName: Ubiquity.NET.Llvm.Instructions.SelectInstruction -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Select_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_ - name: Select - nameWithType: InstructionBuilder.Select - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Select -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode - commentId: T:Ubiquity.NET.Llvm.Instructions.PhiNode - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - name: PhiNode - nameWithType: PhiNode - fullName: Ubiquity.NET.Llvm.Instructions.PhiNode -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_PhiNode_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: PhiNode - nameWithType: InstructionBuilder.PhiNode - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.PhiNode -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_ExtractValue_Ubiquity_NET_Llvm_Values_Value_System_UInt32_ - name: ExtractValue - nameWithType: InstructionBuilder.ExtractValue - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.ExtractValue -- uid: Ubiquity.NET.Llvm.Instructions.Switch - commentId: T:Ubiquity.NET.Llvm.Instructions.Switch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Switch.html - name: Switch - nameWithType: Switch - fullName: Ubiquity.NET.Llvm.Instructions.Switch -- uid: Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - href: Ubiquity.NET.Llvm.Instructions.Switch.html#Ubiquity_NET_Llvm_Instructions_Switch_AddCase_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: AddCase(Value, BasicBlock) - nameWithType: Switch.AddCase(Value, BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.BasicBlock) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - name: AddCase - href: Ubiquity.NET.Llvm.Instructions.Switch.html#Ubiquity_NET_Llvm_Instructions_Switch_AddCase_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_BasicBlock_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - name: AddCase - href: Ubiquity.NET.Llvm.Instructions.Switch.html#Ubiquity_NET_Llvm_Instructions_Switch_AddCase_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_BasicBlock_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Switch_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_BasicBlock_System_UInt32_ - name: Switch - nameWithType: InstructionBuilder.Switch - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Switch -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction - commentId: P:Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction - href: Ubiquity.NET.Llvm.Values.BasicBlock.html#Ubiquity_NET_Llvm_Values_BasicBlock_ContainingFunction - name: ContainingFunction - nameWithType: BasicBlock.ContainingFunction - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: System.InvalidOperationException - commentId: T:System.InvalidOperationException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception - name: InvalidOperationException - nameWithType: InvalidOperationException - fullName: System.InvalidOperationException -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_DoNothing - name: DoNothing - nameWithType: InstructionBuilder.DoNothing - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DoNothing -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_DebugTrap - name: DebugTrap - nameWithType: InstructionBuilder.DebugTrap - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.DebugTrap -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_Trap - name: Trap - nameWithType: InstructionBuilder.Trap - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.Trap -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_MemCpy_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_System_Boolean_ - name: MemCpy - nameWithType: InstructionBuilder.MemCpy - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemCpy -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_MemMove_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_System_Boolean_ - name: MemMove - nameWithType: InstructionBuilder.MemMove - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemMove -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_MemSet_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_System_Boolean_ - name: MemSet - nameWithType: InstructionBuilder.MemSet - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MemSet -- uid: Ubiquity.NET.Llvm.Instructions.InsertValue - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - name: InsertValue - nameWithType: InsertValue - fullName: Ubiquity.NET.Llvm.Instructions.InsertValue -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_InsertValue_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_System_UInt32_ - name: InsertValue - nameWithType: InstructionBuilder.InsertValue - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.InsertValue -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_AddWithOverflow_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_System_Boolean_ - name: AddWithOverflow - nameWithType: InstructionBuilder.AddWithOverflow - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.AddWithOverflow -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_SubWithOverflow_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_System_Boolean_ - name: SubWithOverflow - nameWithType: InstructionBuilder.SubWithOverflow - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.SubWithOverflow -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html#Ubiquity_NET_Llvm_Instructions_InstructionBuilder_MulWithOverflow_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_Value_System_Boolean_ - name: MulWithOverflow - nameWithType: InstructionBuilder.MulWithOverflow - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.MulWithOverflow diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InstructionExtensions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InstructionExtensions.yml deleted file mode 100644 index 806ae0ed7d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.InstructionExtensions.yml +++ /dev/null @@ -1,486 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - id: InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - - Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - langs: - - csharp - - vb - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InstructionExtensions - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionExtensions.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Provides extension methods to that cannot be achieved as members of the class - remarks: >- - Using generic static extension methods allows for fluent coding while retaining the type of the "this" parameter. - - If these were members of the class then the only return type could be - - thus losing the original type and requiring a cast to get back to it, thereby defeating the purpose of the fluent style. - example: [] - syntax: - content: public static class InstructionExtensions - content.vb: Public Module InstructionExtensions - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - id: SetAlignment``1(``0,System.UInt32) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - langs: - - csharp - - vb - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetAlignment - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionExtensions.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Fluent style extension method to set the for an instruction - example: [] - syntax: - content: 'public static T SetAlignment(this T self, uint value) where T : Instruction' - parameters: - - id: self - type: '{T}' - description: Instruction to set the for - - id: value - type: System.UInt32 - description: New alignment for the instruction - typeParameters: - - id: T - description: Type of the instruction (usually implicitly inferred from usage) - return: - type: '{T}' - description: To allow fluent style coding this returns the self parameter - content.vb: Public Shared Function SetAlignment(Of T As Instruction)(self As T, value As UInteger) As T - overload: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment* - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - id: SetIsVolatile``1(``0,System.Boolean) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - langs: - - csharp - - vb - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/InstructionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetIsVolatile - path: ../src/Ubiquity.NET.Llvm/Instructions/InstructionExtensions.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Fluent style extension method to set the Volatile property of a or instruction - example: [] - syntax: - content: 'public static T SetIsVolatile(this T self, bool value) where T : Instruction' - parameters: - - id: self - type: '{T}' - description: Instruction to set the Volatile property for - - id: value - type: System.Boolean - description: Flag to indicate if the instruction's operation is volatile - typeParameters: - - id: T - description: Type of the instruction (usually implicitly inferred from usage) - return: - type: '{T}' - description: To allow fluent style coding this returns the self parameter - content.vb: Public Shared Function SetIsVolatile(Of T As Instruction)(self As T, value As Boolean) As T - overload: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile* - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) -references: -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment - nameWithType: InstructionExtensions.SetAlignment - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.Instructions.Load - commentId: T:Ubiquity.NET.Llvm.Instructions.Load - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Load.html - name: Load - nameWithType: Load - fullName: Ubiquity.NET.Llvm.Instructions.Load -- uid: Ubiquity.NET.Llvm.Instructions.Store - commentId: T:Ubiquity.NET.Llvm.Instructions.Store - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Store.html - name: Store - nameWithType: Store - fullName: Ubiquity.NET.Llvm.Instructions.Store -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile - nameWithType: InstructionExtensions.SetIsVolatile - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntCmp.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntCmp.yml deleted file mode 100644 index 9d9e56f573..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntCmp.yml +++ /dev/null @@ -1,964 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.IntCmp - commentId: T:Ubiquity.NET.Llvm.Instructions.IntCmp - id: IntCmp - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: IntCmp - nameWithType: IntCmp - fullName: Ubiquity.NET.Llvm.Instructions.IntCmp - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/IntCmp.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntCmp - path: ../src/Ubiquity.NET.Llvm/Instructions/IntCmp.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to perform an integer compare - example: [] - syntax: - content: 'public sealed class IntCmp : Cmp, IEquatable' - content.vb: Public NotInheritable Class IntCmp Inherits Cmp Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#intcmp-instruction - altText: LLVM intcmp Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Cmp - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.IntCmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.IntCmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.IntCmp.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Cmp - commentId: T:Ubiquity.NET.Llvm.Instructions.Cmp - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - name: Cmp - nameWithType: Cmp - fullName: Ubiquity.NET.Llvm.Instructions.Cmp -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - commentId: P:Ubiquity.NET.Llvm.Instructions.Cmp.Predicate - parent: Ubiquity.NET.Llvm.Instructions.Cmp - href: Ubiquity.NET.Llvm.Instructions.Cmp.html#Ubiquity_NET_Llvm_Instructions_Cmp_Predicate - name: Predicate - nameWithType: Cmp.Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Cmp.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IntCmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(IntCmp, uint) - nameWithType: InstructionExtensions.SetAlignment(IntCmp, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.IntCmp, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of IntCmp)(IntCmp, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.IntCmp)(Ubiquity.NET.Llvm.Instructions.IntCmp, UInteger) - name.vb: SetAlignment(Of IntCmp)(IntCmp, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.IntCmp,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.IntCmp,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IntCmp.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(IntCmp, bool) - nameWithType: InstructionExtensions.SetIsVolatile(IntCmp, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.IntCmp, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of IntCmp)(IntCmp, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.IntCmp)(Ubiquity.NET.Llvm.Instructions.IntCmp, Boolean) - name.vb: SetIsVolatile(Of IntCmp)(IntCmp, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.IntCmp,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.IntCmp,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IntCmp.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(IntCmp, string) - nameWithType: ValueExtensions.RegisterName(IntCmp, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.IntCmp, string) - nameWithType.vb: ValueExtensions.RegisterName(Of IntCmp)(IntCmp, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.IntCmp)(Ubiquity.NET.Llvm.Instructions.IntCmp, String) - name.vb: RegisterName(Of IntCmp)(IntCmp, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.IntCmp,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.IntCmp,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntPredicate.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntPredicate.yml deleted file mode 100644 index d7cb1fc8f5..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntPredicate.yml +++ /dev/null @@ -1,395 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate - commentId: T:Ubiquity.NET.Llvm.Instructions.IntPredicate - id: IntPredicate - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.IntPredicate.Equal - - Ubiquity.NET.Llvm.Instructions.IntPredicate.None - - Ubiquity.NET.Llvm.Instructions.IntPredicate.NotEqual - - Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThan - - Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThanOrEqual - - Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThan - - Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThanOrEqual - - Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterOrEqual - - Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterThan - - Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThan - - Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThanOrEqual - langs: - - csharp - - vb - name: IntPredicate - nameWithType: IntPredicate - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntPredicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 172 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Predicate enumeration for integer comparison - example: [] - syntax: - content: public enum IntPredicate - content.vb: Public Enum IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.None - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.None - id: None - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: None - nameWithType: IntPredicate.None - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 175 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: No predicate, this is an invalid value for integer predicates - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.Equal - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.Equal - id: Equal - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: Equal - nameWithType: IntPredicate.Equal - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.Equal - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equal - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 178 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer equality comparison - example: [] - syntax: - content: Equal = 32 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.NotEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.NotEqual - id: NotEqual - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: NotEqual - nameWithType: IntPredicate.NotEqual - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.NotEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NotEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 181 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer not equal comparison - example: [] - syntax: - content: NotEqual = 33 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterThan - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterThan - id: UnsignedGreaterThan - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: UnsignedGreaterThan - nameWithType: IntPredicate.UnsignedGreaterThan - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedGreaterThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 184 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer unsigned greater than comparison - example: [] - syntax: - content: UnsignedGreaterThan = 34 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterOrEqual - id: UnsignedGreaterOrEqual - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: UnsignedGreaterOrEqual - nameWithType: IntPredicate.UnsignedGreaterOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedGreaterOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedGreaterOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 187 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer unsigned greater than or equal comparison - example: [] - syntax: - content: UnsignedGreaterOrEqual = 35 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThan - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThan - id: UnsignedLessThan - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: UnsignedLessThan - nameWithType: IntPredicate.UnsignedLessThan - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedLessThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 190 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer unsigned less than comparison - example: [] - syntax: - content: UnsignedLessThan = 36 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThanOrEqual - id: UnsignedLessThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: UnsignedLessThanOrEqual - nameWithType: IntPredicate.UnsignedLessThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.UnsignedLessThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedLessThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 193 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer unsigned less than or equal comparison - example: [] - syntax: - content: UnsignedLessThanOrEqual = 37 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThan - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThan - id: SignedGreaterThan - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: SignedGreaterThan - nameWithType: IntPredicate.SignedGreaterThan - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedGreaterThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 196 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer signed greater than comparison - example: [] - syntax: - content: SignedGreaterThan = 38 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThanOrEqual - id: SignedGreaterThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: SignedGreaterThanOrEqual - nameWithType: IntPredicate.SignedGreaterThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedGreaterThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedGreaterThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 199 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer signed greater than or equal comparison - example: [] - syntax: - content: SignedGreaterThanOrEqual = 39 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThan - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThan - id: SignedLessThan - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: SignedLessThan - nameWithType: IntPredicate.SignedLessThan - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedLessThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 202 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer signed less than comparison - example: [] - syntax: - content: SignedLessThan = 40 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThanOrEqual - id: SignedLessThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.IntPredicate - langs: - - csharp - - vb - name: SignedLessThanOrEqual - nameWithType: IntPredicate.SignedLessThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate.SignedLessThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedLessThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 205 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer signed less than or equal comparison - example: [] - syntax: - content: SignedLessThanOrEqual = 41 - return: - type: Ubiquity.NET.Llvm.Instructions.IntPredicate -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate - commentId: T:Ubiquity.NET.Llvm.Instructions.IntPredicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.IntPredicate.html - name: IntPredicate - nameWithType: IntPredicate - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntToPointer.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntToPointer.yml deleted file mode 100644 index c24a4d2707..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.IntToPointer.yml +++ /dev/null @@ -1,980 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - commentId: T:Ubiquity.NET.Llvm.Instructions.IntToPointer - id: IntToPointer - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: IntToPointer - nameWithType: IntToPointer - fullName: Ubiquity.NET.Llvm.Instructions.IntToPointer - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/IntToPointer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntToPointer - path: ../src/Ubiquity.NET.Llvm/Instructions/IntToPointer.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to convert an integer to a pointer type - example: [] - syntax: - content: 'public sealed class IntToPointer : Cast, IEquatable' - content.vb: Public NotInheritable Class IntToPointer Inherits Cast Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#inttoptr-to-instruction - altText: LLVM inttoptr .. to Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.IntToPointer.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.IntToPointer.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.IntToPointer.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IntToPointer.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(IntToPointer, uint) - nameWithType: InstructionExtensions.SetAlignment(IntToPointer, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.IntToPointer, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of IntToPointer)(IntToPointer, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.IntToPointer)(Ubiquity.NET.Llvm.Instructions.IntToPointer, UInteger) - name.vb: SetAlignment(Of IntToPointer)(IntToPointer, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.IntToPointer,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.IntToPointer,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IntToPointer.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(IntToPointer, bool) - nameWithType: InstructionExtensions.SetIsVolatile(IntToPointer, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.IntToPointer, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of IntToPointer)(IntToPointer, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.IntToPointer)(Ubiquity.NET.Llvm.Instructions.IntToPointer, Boolean) - name.vb: SetIsVolatile(Of IntToPointer)(IntToPointer, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.IntToPointer,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.IntToPointer,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.IntToPointer.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(IntToPointer, string) - nameWithType: ValueExtensions.RegisterName(IntToPointer, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.IntToPointer, string) - nameWithType.vb: ValueExtensions.RegisterName(Of IntToPointer)(IntToPointer, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.IntToPointer)(Ubiquity.NET.Llvm.Instructions.IntToPointer, String) - name.vb: RegisterName(Of IntToPointer)(IntToPointer, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.IntToPointer,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.IntToPointer,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Intrinsic.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Intrinsic.yml deleted file mode 100644 index 7dd1d67a61..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Intrinsic.yml +++ /dev/null @@ -1,2308 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - id: Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - langs: - - csharp - - vb - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Intrinsic.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Intrinsic - path: ../src/Ubiquity.NET.Llvm/Instructions/Intrinsic.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: base class for calls to LLVM intrinsic functions - example: [] - syntax: - content: 'public class Intrinsic : CallInstruction, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public Class Intrinsic Inherits CallInstruction Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.CallInstruction - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - id: LookupId(System.String) - parent: Ubiquity.NET.Llvm.Instructions.Intrinsic - langs: - - csharp - - vb - name: LookupId(string) - nameWithType: Intrinsic.LookupId(string) - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Intrinsic.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LookupId - path: ../src/Ubiquity.NET.Llvm/Instructions/Intrinsic.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Looks up the LLVM intrinsic ID from it's name - example: [] - syntax: - content: public static uint LookupId(string name) - parameters: - - id: name - type: System.String - description: Name of the intrinsic - return: - type: System.UInt32 - description: Intrinsic ID or 0 if the name does not correspond with an intrinsic function - content.vb: Public Shared Function LookupId(name As String) As UInteger - overload: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId* - nameWithType.vb: Intrinsic.LookupId(String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(String) - name.vb: LookupId(String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Intrinsic, uint) - nameWithType: InstructionExtensions.SetAlignment(Intrinsic, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Intrinsic, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Intrinsic)(Intrinsic, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, UInteger) - name.vb: SetAlignment(Of Intrinsic)(Intrinsic, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Intrinsic, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Intrinsic, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Intrinsic, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Intrinsic)(Intrinsic, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Boolean) - name.vb: SetIsVolatile(Of Intrinsic)(Intrinsic, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(Intrinsic, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(Intrinsic, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(Intrinsic, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(Intrinsic, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(Intrinsic, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(Intrinsic, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(Intrinsic, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(Intrinsic, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(Intrinsic, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(Intrinsic, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(Intrinsic, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(Intrinsic, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(Intrinsic, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(Intrinsic, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(Intrinsic, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(Intrinsic, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of Intrinsic)(Intrinsic, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Intrinsic, string) - nameWithType: ValueExtensions.RegisterName(Intrinsic, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Intrinsic, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Intrinsic)(Intrinsic, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Intrinsic)(Ubiquity.NET.Llvm.Instructions.Intrinsic, String) - name.vb: RegisterName(Of Intrinsic)(Intrinsic, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Intrinsic,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - name: LookupId - nameWithType: Intrinsic.LookupId - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Invoke.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Invoke.yml deleted file mode 100644 index b67f0e69e0..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Invoke.yml +++ /dev/null @@ -1,2779 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Invoke - commentId: T:Ubiquity.NET.Llvm.Instructions.Invoke - id: Invoke - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.Invoke.Attributes - - Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination - - Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction - langs: - - csharp - - vb - name: Invoke - nameWithType: Invoke - fullName: Ubiquity.NET.Llvm.Instructions.Invoke - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Invoke - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to invoke (call) a function with exception handling - example: [] - syntax: - content: 'public sealed class Invoke : Terminator, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public NotInheritable Class Invoke Inherits Terminator Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - seealso: - - linkType: HRef - linkId: xref:llvm_langref#i-invoke - altText: LLVM invoke Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction - id: TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: TargetFunction - nameWithType: Invoke.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetFunction - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the target function of the invocation - example: [] - syntax: - content: public Function TargetFunction { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Function - content.vb: Public ReadOnly Property TargetFunction As [Function] - overload: Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction* -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination - commentId: P:Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination - id: NormalDestination - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: NormalDestination - nameWithType: Invoke.NormalDestination - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NormalDestination - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the normal destination for the invoke - example: [] - syntax: - content: public BasicBlock NormalDestination { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - content.vb: Public Property NormalDestination As BasicBlock - overload: Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination* -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.Invoke.Attributes - id: Attributes - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: Attributes - nameWithType: Invoke.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.Attributes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Attributes - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the attributes for this call site - example: [] - syntax: - content: public IAttributeDictionary Attributes { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.IAttributeDictionary - content.vb: Public ReadOnly Property Attributes As IAttributeDictionary - overload: Ubiquity.NET.Llvm.Instructions.Invoke.Attributes* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - id: AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: Invoke.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Adds an at a specified index - example: [] - syntax: - content: public void AddAttributeAtIndex(FunctionAttributeIndex index, AttributeValue attrib) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: attrib - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: Attribute to add - content.vb: Public Sub AddAttributeAtIndex(index As FunctionAttributeIndex, attrib As AttributeValue) - overload: Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: Invoke.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeCountAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the count of attributes on a given index - example: [] - syntax: - content: public uint GetAttributeCountAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the count for - return: - type: System.UInt32 - description: Number of attributes on the specified index - content.vb: Public Function GetAttributeCountAtIndex(index As FunctionAttributeIndex) As UInteger - overload: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: Invoke.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributesAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the attributes on a given index - example: [] - syntax: - content: public IEnumerable GetAttributesAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: index to get the attributes for - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Attributes for the index - content.vb: Public Function GetAttributesAtIndex(index As FunctionAttributeIndex) As IEnumerable(Of AttributeValue) - overload: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: Invoke.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a specific attribute at a given index - example: [] - syntax: - content: public AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Public Function GetAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) As AttributeValue - overload: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: Invoke.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a named attribute at a given index - example: [] - syntax: - content: public AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: name - type: System.String - description: name of the attribute to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Public Function GetAttributeAtIndex(index As FunctionAttributeIndex, name As String) As AttributeValue - overload: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - nameWithType.vb: Invoke.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: Invoke.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Removes an at a specified index - example: [] - syntax: - content: public void RemoveAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Attribute to Remove - content.vb: Public Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) - overload: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.Invoke - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: Invoke.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Instructions/Invoke.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Removes a named attribute at a specified index - example: [] - syntax: - content: public void RemoveAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: name - type: System.String - description: Name of the attribute to remove - content.vb: Public Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, name As String) - overload: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - nameWithType.vb: Invoke.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Invoke, uint) - nameWithType: InstructionExtensions.SetAlignment(Invoke, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Invoke, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Invoke)(Invoke, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, UInteger) - name.vb: SetAlignment(Of Invoke)(Invoke, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Invoke,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Invoke,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Invoke, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Invoke, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Invoke, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Invoke)(Invoke, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Boolean) - name.vb: SetIsVolatile(Of Invoke)(Invoke, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Invoke,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Invoke,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(Invoke, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(Invoke, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of Invoke)(Invoke, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of Invoke)(Invoke, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(Invoke, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(Invoke, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of Invoke)(Invoke, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of Invoke)(Invoke, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(Invoke, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(Invoke, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Invoke)(Invoke, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of Invoke)(Invoke, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(Invoke, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(Invoke, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Invoke)(Invoke, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of Invoke)(Invoke, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(Invoke, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(Invoke, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Invoke)(Invoke, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of Invoke)(Invoke, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(Invoke, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(Invoke, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Invoke)(Invoke, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of Invoke)(Invoke, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(Invoke, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(Invoke, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of Invoke)(Invoke, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of Invoke)(Invoke, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(Invoke, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(Invoke, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of Invoke)(Invoke, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of Invoke)(Invoke, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.Invoke,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Invoke, string) - nameWithType: ValueExtensions.RegisterName(Invoke, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Invoke, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Invoke)(Invoke, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Invoke)(Ubiquity.NET.Llvm.Instructions.Invoke, String) - name.vb: RegisterName(Of Invoke)(Invoke, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Invoke,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Invoke,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction - href: Ubiquity.NET.Llvm.Instructions.Invoke.html#Ubiquity_NET_Llvm_Instructions_Invoke_TargetFunction - name: TargetFunction - nameWithType: Invoke.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.TargetFunction -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination - href: Ubiquity.NET.Llvm.Instructions.Invoke.html#Ubiquity_NET_Llvm_Instructions_Invoke_NormalDestination - name: NormalDestination - nameWithType: Invoke.NormalDestination - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.NormalDestination -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.Attributes* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Invoke.Attributes - href: Ubiquity.NET.Llvm.Instructions.Invoke.html#Ubiquity_NET_Llvm_Instructions_Invoke_Attributes - name: Attributes - nameWithType: Invoke.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - commentId: P:Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - parent: Ubiquity.NET.Llvm.Values.IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html#Ubiquity_NET_Llvm_Values_IAttributeContainer_Attributes - name: Attributes - nameWithType: IAttributeContainer.Attributes - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeDictionary - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - name: IAttributeDictionary - nameWithType: IAttributeDictionary - fullName: Ubiquity.NET.Llvm.Values.IAttributeDictionary -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.Invoke.html#Ubiquity_NET_Llvm_Instructions_Invoke_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex - nameWithType: Invoke.AddAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.AddAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: IAttributeAccessor.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.Invoke.html#Ubiquity_NET_Llvm_Instructions_Invoke_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex - nameWithType: Invoke.GetAttributeCountAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeCountAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.Invoke.html#Ubiquity_NET_Llvm_Instructions_Invoke_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex - nameWithType: Invoke.GetAttributesAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributesAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of AttributeValue) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: IEnumerable(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.Invoke.html#Ubiquity_NET_Llvm_Instructions_Invoke_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex - nameWithType: Invoke.GetAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.GetAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - isExternal: true - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.Invoke.html#Ubiquity_NET_Llvm_Instructions_Invoke_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex - nameWithType: Invoke.RemoveAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Instructions.Invoke.RemoveAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - isExternal: true - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.LandingPad.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.LandingPad.yml deleted file mode 100644 index 3343f0bce4..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.LandingPad.yml +++ /dev/null @@ -1,1119 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad - commentId: T:Ubiquity.NET.Llvm.Instructions.LandingPad - id: LandingPad - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses - - Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup - langs: - - csharp - - vb - name: LandingPad - nameWithType: LandingPad - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/LandingPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LandingPad - path: ../src/Ubiquity.NET.Llvm/Instructions/LandingPad.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Marks a as a catch handler - remarks: >- - Like the , instruction this must be the first non-phi instruction - - in the block. - example: [] - syntax: - content: 'public sealed class LandingPad : Instruction, IEquatable' - content.vb: Public NotInheritable Class LandingPad Inherits Instruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#i-landingpad - altText: LLVM landing Instruction - - linkType: HRef - linkId: xref:llvm_exception_handling#exception-handling-in-llvm - altText: Exception Handling in LLVM - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.LandingPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.LandingPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.LandingPad.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup - commentId: P:Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup - id: IsCleanup - parent: Ubiquity.NET.Llvm.Instructions.LandingPad - langs: - - csharp - - vb - name: IsCleanup - nameWithType: LandingPad.IsCleanup - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/LandingPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsCleanup - path: ../src/Ubiquity.NET.Llvm/Instructions/LandingPad.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets a value indicating whether this is a cleanup pad - example: [] - syntax: - content: public bool IsCleanup { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property IsCleanup As Boolean - overload: Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup* -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses - commentId: P:Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses - id: Clauses - parent: Ubiquity.NET.Llvm.Instructions.LandingPad - langs: - - csharp - - vb - name: Clauses - nameWithType: LandingPad.Clauses - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/LandingPad.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Clauses - path: ../src/Ubiquity.NET.Llvm/Instructions/LandingPad.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the collection of clauses for this landing pad - example: [] - syntax: - content: public ValueOperandListCollection Clauses { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Constant} - content.vb: Public ReadOnly Property Clauses As ValueOperandListCollection(Of Constant) - overload: Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses* -references: -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - name: CatchPad - nameWithType: CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchPad -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(LandingPad, uint) - nameWithType: InstructionExtensions.SetAlignment(LandingPad, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.LandingPad, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of LandingPad)(LandingPad, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.LandingPad)(Ubiquity.NET.Llvm.Instructions.LandingPad, UInteger) - name.vb: SetAlignment(Of LandingPad)(LandingPad, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.LandingPad,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.LandingPad,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(LandingPad, bool) - nameWithType: InstructionExtensions.SetIsVolatile(LandingPad, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.LandingPad, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of LandingPad)(LandingPad, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.LandingPad)(Ubiquity.NET.Llvm.Instructions.LandingPad, Boolean) - name.vb: SetIsVolatile(Of LandingPad)(LandingPad, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.LandingPad,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.LandingPad,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(LandingPad, string) - nameWithType: ValueExtensions.RegisterName(LandingPad, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.LandingPad, string) - nameWithType.vb: ValueExtensions.RegisterName(Of LandingPad)(LandingPad, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.LandingPad)(Ubiquity.NET.Llvm.Instructions.LandingPad, String) - name.vb: RegisterName(Of LandingPad)(LandingPad, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.LandingPad,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.LandingPad,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad - commentId: T:Ubiquity.NET.Llvm.Instructions.LandingPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - name: LandingPad - nameWithType: LandingPad - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html#Ubiquity_NET_Llvm_Instructions_LandingPad_IsCleanup - name: IsCleanup - nameWithType: LandingPad.IsCleanup - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad.IsCleanup -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html#Ubiquity_NET_Llvm_Instructions_LandingPad_Clauses - name: Clauses - nameWithType: LandingPad.Clauses - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad.Clauses -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Constant} - commentId: T:Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Constant} - parent: Ubiquity.NET.Llvm.Values - definition: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - name: ValueOperandListCollection - nameWithType: ValueOperandListCollection - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection - nameWithType.vb: ValueOperandListCollection(Of Constant) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of Ubiquity.NET.Llvm.Values.Constant) - name.vb: ValueOperandListCollection(Of Constant) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: < - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - commentId: T:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - name: ValueOperandListCollection - nameWithType: ValueOperandListCollection - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection - nameWithType.vb: ValueOperandListCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T) - name.vb: ValueOperandListCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Load.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Load.yml deleted file mode 100644 index 39e0a7c34c..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Load.yml +++ /dev/null @@ -1,1005 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Load - commentId: T:Ubiquity.NET.Llvm.Instructions.Load - id: Load - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Load.IsVolatile - langs: - - csharp - - vb - name: Load - nameWithType: Load - fullName: Ubiquity.NET.Llvm.Instructions.Load - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Load.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Load - path: ../src/Ubiquity.NET.Llvm/Instructions/Load.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to read from memory - example: [] - syntax: - content: 'public sealed class Load : UnaryInstruction, IEquatable' - content.vb: Public NotInheritable Class Load Inherits UnaryInstruction Implements IEquatable(Of Value) - seealso: - - linkType: HRef - linkId: xref:llvm_langref#load-instruction - altText: LLVM load Instruction - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Load.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Load.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Load.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Load.IsVolatile - commentId: P:Ubiquity.NET.Llvm.Instructions.Load.IsVolatile - id: IsVolatile - parent: Ubiquity.NET.Llvm.Instructions.Load - langs: - - csharp - - vb - name: IsVolatile - nameWithType: Load.IsVolatile - fullName: Ubiquity.NET.Llvm.Instructions.Load.IsVolatile - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Load.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsVolatile - path: ../src/Ubiquity.NET.Llvm/Instructions/Load.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets a value indicating whether this load is volatile - example: [] - syntax: - content: public bool IsVolatile { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property IsVolatile As Boolean - overload: Ubiquity.NET.Llvm.Instructions.Load.IsVolatile* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Load.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Load, uint) - nameWithType: InstructionExtensions.SetAlignment(Load, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Load, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Load)(Load, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Load)(Ubiquity.NET.Llvm.Instructions.Load, UInteger) - name.vb: SetAlignment(Of Load)(Load, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Load,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Load,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Load.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Load, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Load, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Load, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Load)(Load, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Load)(Ubiquity.NET.Llvm.Instructions.Load, Boolean) - name.vb: SetIsVolatile(Of Load)(Load, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Load,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Load,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Load.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Load, string) - nameWithType: ValueExtensions.RegisterName(Load, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Load, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Load)(Load, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Load)(Ubiquity.NET.Llvm.Instructions.Load, String) - name.vb: RegisterName(Of Load)(Load, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Load,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Load,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - href: Ubiquity.NET.Llvm.Instructions.Load.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Load.IsVolatile* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Load.IsVolatile - href: Ubiquity.NET.Llvm.Instructions.Load.html#Ubiquity_NET_Llvm_Instructions_Load_IsVolatile - name: IsVolatile - nameWithType: Load.IsVolatile - fullName: Ubiquity.NET.Llvm.Instructions.Load.IsVolatile -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemCpy.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemCpy.yml deleted file mode 100644 index 3e1dd3c11d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemCpy.yml +++ /dev/null @@ -1,2261 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy - commentId: T:Ubiquity.NET.Llvm.Instructions.MemCpy - id: MemCpy - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: MemCpy - nameWithType: MemCpy - fullName: Ubiquity.NET.Llvm.Instructions.MemCpy - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/MemCpy.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MemCpy - path: ../src/Ubiquity.NET.Llvm/Instructions/MemCpy.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction for the LLVM intrinsic llvm.memcpy instruction - example: [] - syntax: - content: 'public sealed class MemCpy : MemIntrinsic, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public NotInheritable Class MemCpy Inherits MemIntrinsic Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.Intrinsic - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.MemIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - name: MemIntrinsic - nameWithType: MemIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.MemIntrinsic -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - parent: Ubiquity.NET.Llvm.Instructions.Intrinsic - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - name: LookupId(string) - nameWithType: Intrinsic.LookupId(string) - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(string) - nameWithType.vb: Intrinsic.LookupId(String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(String) - name.vb: LookupId(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(MemCpy, uint) - nameWithType: InstructionExtensions.SetAlignment(MemCpy, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.MemCpy, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of MemCpy)(MemCpy, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, UInteger) - name.vb: SetAlignment(Of MemCpy)(MemCpy, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.MemCpy,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.MemCpy,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(MemCpy, bool) - nameWithType: InstructionExtensions.SetIsVolatile(MemCpy, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.MemCpy, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of MemCpy)(MemCpy, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Boolean) - name.vb: SetIsVolatile(Of MemCpy)(MemCpy, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.MemCpy,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.MemCpy,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(MemCpy, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(MemCpy, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of MemCpy)(MemCpy, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of MemCpy)(MemCpy, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(MemCpy, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(MemCpy, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of MemCpy)(MemCpy, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of MemCpy)(MemCpy, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(MemCpy, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(MemCpy, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemCpy)(MemCpy, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of MemCpy)(MemCpy, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(MemCpy, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(MemCpy, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemCpy)(MemCpy, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of MemCpy)(MemCpy, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(MemCpy, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(MemCpy, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemCpy)(MemCpy, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of MemCpy)(MemCpy, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(MemCpy, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(MemCpy, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemCpy)(MemCpy, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of MemCpy)(MemCpy, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(MemCpy, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(MemCpy, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of MemCpy)(MemCpy, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of MemCpy)(MemCpy, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(MemCpy, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(MemCpy, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of MemCpy)(MemCpy, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of MemCpy)(MemCpy, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemCpy,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(MemCpy, string) - nameWithType: ValueExtensions.RegisterName(MemCpy, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.MemCpy, string) - nameWithType.vb: ValueExtensions.RegisterName(Of MemCpy)(MemCpy, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.MemCpy)(Ubiquity.NET.Llvm.Instructions.MemCpy, String) - name.vb: RegisterName(Of MemCpy)(MemCpy, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.MemCpy,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.MemCpy,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemIntrinsic.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemIntrinsic.yml deleted file mode 100644 index 79c3a2b795..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemIntrinsic.yml +++ /dev/null @@ -1,2282 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.MemIntrinsic - id: MemIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: MemIntrinsic - nameWithType: MemIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/MemIntrinsic.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MemIntrinsic - path: ../src/Ubiquity.NET.Llvm/Instructions/MemIntrinsic.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Base class for memory intrinsic instructions - example: [] - syntax: - content: 'public class MemIntrinsic : Intrinsic, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public Class MemIntrinsic Inherits Intrinsic Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.Intrinsic - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.MemCpy - - Ubiquity.NET.Llvm.Instructions.MemMove - - Ubiquity.NET.Llvm.Instructions.MemSet - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - parent: Ubiquity.NET.Llvm.Instructions.Intrinsic - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - name: LookupId(string) - nameWithType: Intrinsic.LookupId(string) - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(string) - nameWithType.vb: Intrinsic.LookupId(String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(String) - name.vb: LookupId(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(MemIntrinsic, uint) - nameWithType: InstructionExtensions.SetAlignment(MemIntrinsic, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of MemIntrinsic)(MemIntrinsic, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, UInteger) - name.vb: SetAlignment(Of MemIntrinsic)(MemIntrinsic, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(MemIntrinsic, bool) - nameWithType: InstructionExtensions.SetIsVolatile(MemIntrinsic, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of MemIntrinsic)(MemIntrinsic, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Boolean) - name.vb: SetIsVolatile(Of MemIntrinsic)(MemIntrinsic, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(MemIntrinsic, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(MemIntrinsic, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(MemIntrinsic, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(MemIntrinsic, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(MemIntrinsic, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(MemIntrinsic, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(MemIntrinsic, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(MemIntrinsic, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(MemIntrinsic, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(MemIntrinsic, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(MemIntrinsic, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(MemIntrinsic, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(MemIntrinsic, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(MemIntrinsic, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(MemIntrinsic, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(MemIntrinsic, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of MemIntrinsic)(MemIntrinsic, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(MemIntrinsic, string) - nameWithType: ValueExtensions.RegisterName(MemIntrinsic, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, string) - nameWithType.vb: ValueExtensions.RegisterName(Of MemIntrinsic)(MemIntrinsic, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.MemIntrinsic)(Ubiquity.NET.Llvm.Instructions.MemIntrinsic, String) - name.vb: RegisterName(Of MemIntrinsic)(MemIntrinsic, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.MemIntrinsic,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemMove.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemMove.yml deleted file mode 100644 index 4cb272ddd8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemMove.yml +++ /dev/null @@ -1,2261 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.MemMove - commentId: T:Ubiquity.NET.Llvm.Instructions.MemMove - id: MemMove - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: MemMove - nameWithType: MemMove - fullName: Ubiquity.NET.Llvm.Instructions.MemMove - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/MemMove.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MemMove - path: ../src/Ubiquity.NET.Llvm/Instructions/MemMove.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Intrinsic call to target optimized memmove - example: [] - syntax: - content: 'public sealed class MemMove : MemIntrinsic, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public NotInheritable Class MemMove Inherits MemIntrinsic Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.Intrinsic - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.MemIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - name: MemIntrinsic - nameWithType: MemIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.MemIntrinsic -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - parent: Ubiquity.NET.Llvm.Instructions.Intrinsic - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - name: LookupId(string) - nameWithType: Intrinsic.LookupId(string) - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(string) - nameWithType.vb: Intrinsic.LookupId(String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(String) - name.vb: LookupId(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(MemMove, uint) - nameWithType: InstructionExtensions.SetAlignment(MemMove, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.MemMove, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of MemMove)(MemMove, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, UInteger) - name.vb: SetAlignment(Of MemMove)(MemMove, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.MemMove,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.MemMove,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(MemMove, bool) - nameWithType: InstructionExtensions.SetIsVolatile(MemMove, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.MemMove, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of MemMove)(MemMove, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Boolean) - name.vb: SetIsVolatile(Of MemMove)(MemMove, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.MemMove,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.MemMove,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(MemMove, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(MemMove, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of MemMove)(MemMove, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of MemMove)(MemMove, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(MemMove, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(MemMove, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of MemMove)(MemMove, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of MemMove)(MemMove, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(MemMove, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(MemMove, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemMove)(MemMove, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of MemMove)(MemMove, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(MemMove, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(MemMove, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemMove)(MemMove, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of MemMove)(MemMove, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(MemMove, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(MemMove, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemMove)(MemMove, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of MemMove)(MemMove, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(MemMove, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(MemMove, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemMove)(MemMove, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of MemMove)(MemMove, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(MemMove, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(MemMove, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of MemMove)(MemMove, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of MemMove)(MemMove, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(MemMove, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(MemMove, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of MemMove)(MemMove, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of MemMove)(MemMove, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemMove,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemMove.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(MemMove, string) - nameWithType: ValueExtensions.RegisterName(MemMove, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.MemMove, string) - nameWithType.vb: ValueExtensions.RegisterName(Of MemMove)(MemMove, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.MemMove)(Ubiquity.NET.Llvm.Instructions.MemMove, String) - name.vb: RegisterName(Of MemMove)(MemMove, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.MemMove,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.MemMove,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemSet.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemSet.yml deleted file mode 100644 index 2b8657b3f9..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.MemSet.yml +++ /dev/null @@ -1,2261 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.MemSet - commentId: T:Ubiquity.NET.Llvm.Instructions.MemSet - id: MemSet - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: MemSet - nameWithType: MemSet - fullName: Ubiquity.NET.Llvm.Instructions.MemSet - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/MemSet.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MemSet - path: ../src/Ubiquity.NET.Llvm/Instructions/MemSet.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction for the LLVM intrinsic memset function - example: [] - syntax: - content: 'public sealed class MemSet : MemIntrinsic, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public NotInheritable Class MemSet Inherits MemIntrinsic Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.Intrinsic - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - - Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - - Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - - Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.MemIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - name: MemIntrinsic - nameWithType: MemIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.MemIntrinsic -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - parent: Ubiquity.NET.Llvm.Instructions.Intrinsic - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - name: LookupId(string) - nameWithType: Intrinsic.LookupId(string) - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(string) - nameWithType.vb: Intrinsic.LookupId(String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(String) - name.vb: LookupId(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic.LookupId(System.String) - name: LookupId - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html#Ubiquity_NET_Llvm_Instructions_Intrinsic_LookupId_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_TargetFunction - name: TargetFunction - nameWithType: CallInstruction.TargetFunction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.TargetFunction -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_IsTailCall - name: IsTailCall - nameWithType: CallInstruction.IsTailCall - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.IsTailCall -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - commentId: P:Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_Attributes - name: Attributes - nameWithType: CallInstruction.Attributes - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.Attributes -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: CallInstruction.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: CallInstruction.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Instructions.CallInstruction - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: CallInstruction.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html#Ubiquity_NET_Llvm_Instructions_CallInstruction_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(MemSet, uint) - nameWithType: InstructionExtensions.SetAlignment(MemSet, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.MemSet, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of MemSet)(MemSet, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, UInteger) - name.vb: SetAlignment(Of MemSet)(MemSet, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.MemSet,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.MemSet,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(MemSet, bool) - nameWithType: InstructionExtensions.SetIsVolatile(MemSet, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.MemSet, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of MemSet)(MemSet, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Boolean) - name.vb: SetIsVolatile(Of MemSet)(MemSet, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.MemSet,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.MemSet,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(MemSet, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(MemSet, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of MemSet)(MemSet, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of MemSet)(MemSet, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(MemSet, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(MemSet, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of MemSet)(MemSet, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of MemSet)(MemSet, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(MemSet, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(MemSet, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemSet)(MemSet, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of MemSet)(MemSet, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(MemSet, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(MemSet, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemSet)(MemSet, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of MemSet)(MemSet, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(MemSet, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(MemSet, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemSet)(MemSet, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of MemSet)(MemSet, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(MemSet, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(MemSet, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of MemSet)(MemSet, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of MemSet)(MemSet, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(MemSet, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(MemSet, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of MemSet)(MemSet, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of MemSet)(MemSet, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(MemSet, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(MemSet, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of MemSet)(MemSet, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of MemSet)(MemSet, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Instructions.MemSet,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.MemSet.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(MemSet, string) - nameWithType: ValueExtensions.RegisterName(MemSet, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.MemSet, string) - nameWithType.vb: ValueExtensions.RegisterName(Of MemSet)(MemSet, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.MemSet)(Ubiquity.NET.Llvm.Instructions.MemSet, String) - name.vb: RegisterName(Of MemSet)(MemSet, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.MemSet,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.MemSet,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.OpCode.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.OpCode.yml deleted file mode 100644 index 0ea709030c..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.OpCode.yml +++ /dev/null @@ -1,2892 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.OpCode - commentId: T:Ubiquity.NET.Llvm.Instructions.OpCode - id: OpCode - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.OpCode.AShr - - Ubiquity.NET.Llvm.Instructions.OpCode.Add - - Ubiquity.NET.Llvm.Instructions.OpCode.AddrSpaceCast - - Ubiquity.NET.Llvm.Instructions.OpCode.Alloca - - Ubiquity.NET.Llvm.Instructions.OpCode.And - - Ubiquity.NET.Llvm.Instructions.OpCode.AtomicCmpXchg - - Ubiquity.NET.Llvm.Instructions.OpCode.AtomicRMW - - Ubiquity.NET.Llvm.Instructions.OpCode.BitCast - - Ubiquity.NET.Llvm.Instructions.OpCode.Branch - - Ubiquity.NET.Llvm.Instructions.OpCode.Call - - Ubiquity.NET.Llvm.Instructions.OpCode.CallBr - - Ubiquity.NET.Llvm.Instructions.OpCode.CatchPad - - Ubiquity.NET.Llvm.Instructions.OpCode.CatchRet - - Ubiquity.NET.Llvm.Instructions.OpCode.CatchSwitch - - Ubiquity.NET.Llvm.Instructions.OpCode.CleanupPad - - Ubiquity.NET.Llvm.Instructions.OpCode.CleanupRet - - Ubiquity.NET.Llvm.Instructions.OpCode.ExtractElement - - Ubiquity.NET.Llvm.Instructions.OpCode.ExtractValue - - Ubiquity.NET.Llvm.Instructions.OpCode.FAdd - - Ubiquity.NET.Llvm.Instructions.OpCode.FCmp - - Ubiquity.NET.Llvm.Instructions.OpCode.FDiv - - Ubiquity.NET.Llvm.Instructions.OpCode.FMul - - Ubiquity.NET.Llvm.Instructions.OpCode.FPExt - - Ubiquity.NET.Llvm.Instructions.OpCode.FPToSI - - Ubiquity.NET.Llvm.Instructions.OpCode.FPToUI - - Ubiquity.NET.Llvm.Instructions.OpCode.FPTrunc - - Ubiquity.NET.Llvm.Instructions.OpCode.FRem - - Ubiquity.NET.Llvm.Instructions.OpCode.FSub - - Ubiquity.NET.Llvm.Instructions.OpCode.Fence - - Ubiquity.NET.Llvm.Instructions.OpCode.Freeze - - Ubiquity.NET.Llvm.Instructions.OpCode.GetElementPtr - - Ubiquity.NET.Llvm.Instructions.OpCode.ICmp - - Ubiquity.NET.Llvm.Instructions.OpCode.IndirectBranch - - Ubiquity.NET.Llvm.Instructions.OpCode.InsertElement - - Ubiquity.NET.Llvm.Instructions.OpCode.InsertValue - - Ubiquity.NET.Llvm.Instructions.OpCode.IntToPtr - - Ubiquity.NET.Llvm.Instructions.OpCode.Invalid - - Ubiquity.NET.Llvm.Instructions.OpCode.Invoke - - Ubiquity.NET.Llvm.Instructions.OpCode.LShr - - Ubiquity.NET.Llvm.Instructions.OpCode.LandingPad - - Ubiquity.NET.Llvm.Instructions.OpCode.Load - - Ubiquity.NET.Llvm.Instructions.OpCode.Mul - - Ubiquity.NET.Llvm.Instructions.OpCode.Or - - Ubiquity.NET.Llvm.Instructions.OpCode.Phi - - Ubiquity.NET.Llvm.Instructions.OpCode.PtrToInt - - Ubiquity.NET.Llvm.Instructions.OpCode.Resume - - Ubiquity.NET.Llvm.Instructions.OpCode.Return - - Ubiquity.NET.Llvm.Instructions.OpCode.SDiv - - Ubiquity.NET.Llvm.Instructions.OpCode.SIToFP - - Ubiquity.NET.Llvm.Instructions.OpCode.SRem - - Ubiquity.NET.Llvm.Instructions.OpCode.Select - - Ubiquity.NET.Llvm.Instructions.OpCode.Shl - - Ubiquity.NET.Llvm.Instructions.OpCode.ShuffleVector - - Ubiquity.NET.Llvm.Instructions.OpCode.SignExtend - - Ubiquity.NET.Llvm.Instructions.OpCode.Store - - Ubiquity.NET.Llvm.Instructions.OpCode.Sub - - Ubiquity.NET.Llvm.Instructions.OpCode.Switch - - Ubiquity.NET.Llvm.Instructions.OpCode.Trunc - - Ubiquity.NET.Llvm.Instructions.OpCode.UDiv - - Ubiquity.NET.Llvm.Instructions.OpCode.UIToFP - - Ubiquity.NET.Llvm.Instructions.OpCode.URem - - Ubiquity.NET.Llvm.Instructions.OpCode.Unreachable - - Ubiquity.NET.Llvm.Instructions.OpCode.UserOp1 - - Ubiquity.NET.Llvm.Instructions.OpCode.UserOp2 - - Ubiquity.NET.Llvm.Instructions.OpCode.VaArg - - Ubiquity.NET.Llvm.Instructions.OpCode.Xor - - Ubiquity.NET.Llvm.Instructions.OpCode.ZeroExtend - langs: - - csharp - - vb - name: OpCode - nameWithType: OpCode - fullName: Ubiquity.NET.Llvm.Instructions.OpCode - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpCode - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: LLVM Instruction opcodes - remarks: These are based on the "C" API and therefore more stable as changes in the underlying instruction ids are remapped in the C API layer - example: [] - syntax: - content: public enum OpCode - content.vb: Public Enum OpCode - seealso: - - linkType: HRef - linkId: xref:llvm_langref#instruction-reference - altText: LLVM instruction Reference -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Invalid - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Invalid - id: Invalid - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Invalid - nameWithType: OpCode.Invalid - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Invalid - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Invalid - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Invalid or unknown instruction - example: [] - syntax: - content: Invalid = 0 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Return - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Return - id: Return - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Return - nameWithType: OpCode.Return - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Return - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Return - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Return instruction - example: [] - syntax: - content: Return = 1 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ReturnInstruction - - linkType: HRef - linkId: xref:llvm_langref#ret-instruction - altText: LLVM ret Instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Branch - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Branch - id: Branch - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Branch - nameWithType: OpCode.Branch - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Branch - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Branch - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Branch instruction - example: [] - syntax: - content: Branch = 2 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Branch - commentId: T:Ubiquity.NET.Llvm.Instructions.Branch - - linkType: HRef - linkId: xref:llvm_langref#br-instruction - altText: LLVM br Instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Switch - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Switch - id: Switch - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Switch - nameWithType: OpCode.Switch - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Switch - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Switch - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Switch instruction - example: [] - syntax: - content: Switch = 3 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Switch - commentId: T:Ubiquity.NET.Llvm.Instructions.Switch - - linkType: HRef - linkId: xref:llvm_langref#switch-instruction - altText: LLVM switch instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.IndirectBranch - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.IndirectBranch - id: IndirectBranch - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: IndirectBranch - nameWithType: OpCode.IndirectBranch - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.IndirectBranch - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IndirectBranch - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Indirect branch instruction - example: [] - syntax: - content: IndirectBranch = 4 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.IndirectBranch - commentId: T:Ubiquity.NET.Llvm.Instructions.IndirectBranch - - linkType: HRef - linkId: xref:llvm_langref#indirectbr-instruction - altText: LLVM indirectbr instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Invoke - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Invoke - id: Invoke - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Invoke - nameWithType: OpCode.Invoke - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Invoke - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Invoke - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Invoke instruction - example: [] - syntax: - content: Invoke = 5 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Invoke - commentId: T:Ubiquity.NET.Llvm.Instructions.Invoke - - linkType: HRef - linkId: xref:llvm_langref#invoke-instruction - altText: LLVM invoke instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Unreachable - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Unreachable - id: Unreachable - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Unreachable - nameWithType: OpCode.Unreachable - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Unreachable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unreachable - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unreachable instruction - example: [] - syntax: - content: Unreachable = 7 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Unreachable - commentId: T:Ubiquity.NET.Llvm.Instructions.Unreachable - - linkType: HRef - linkId: xref:llvm_langref#unreachable-instruction - altText: LLVM unreachable instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Add - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Add - id: Add - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Add - nameWithType: OpCode.Add - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Add - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Add - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Add instruction - example: [] - syntax: - content: Add = 8 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#add-instruction - altText: LLVM add instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FAdd - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FAdd - id: FAdd - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FAdd - nameWithType: OpCode.FAdd - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FAdd - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FAdd - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: FAdd instruction - example: [] - syntax: - content: FAdd = 9 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#fadd-instruction - altText: LLVM FAdd instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Sub - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Sub - id: Sub - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Sub - nameWithType: OpCode.Sub - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Sub - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Sub - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 75 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Sub instruction - example: [] - syntax: - content: Sub = 10 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations - - linkType: HRef - linkId: xref:llvm_langref#sub-instruction - altText: LLVM sub instruction -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FSub - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FSub - id: FSub - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FSub - nameWithType: OpCode.FSub - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FSub - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FSub - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 81 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: FSub instruction - example: [] - syntax: - content: FSub = 11 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#fsub-instruction - altText: LLVM fsub instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Mul - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Mul - id: Mul - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Mul - nameWithType: OpCode.Mul - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Mul - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Mul - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 87 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Mul instruction - example: [] - syntax: - content: Mul = 12 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#mul-instruction - altText: LLVM mul instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FMul - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FMul - id: FMul - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FMul - nameWithType: OpCode.FMul - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FMul - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FMul - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 93 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: FMul instruction - example: [] - syntax: - content: FMul = 13 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#fmul-instruction - altText: LLVM fmul instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.UDiv - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.UDiv - id: UDiv - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: UDiv - nameWithType: OpCode.UDiv - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.UDiv - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UDiv - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 99 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: UDiv instruction - example: [] - syntax: - content: UDiv = 14 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#udiv-instruction - altText: LLVM udiv instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.SDiv - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.SDiv - id: SDiv - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: SDiv - nameWithType: OpCode.SDiv - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.SDiv - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SDiv - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 105 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: SDiv instruction - example: [] - syntax: - content: SDiv = 15 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#sdiv-instruction - altText: LLVM sdiv instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FDiv - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FDiv - id: FDiv - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FDiv - nameWithType: OpCode.FDiv - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FDiv - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FDiv - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 111 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: FDiv instruction - example: [] - syntax: - content: FDiv = 16 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#fdiv-instruction - altText: LLVM fdiv instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.URem - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.URem - id: URem - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: URem - nameWithType: OpCode.URem - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.URem - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: URem - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 117 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: URem instruction - example: [] - syntax: - content: URem = 17 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#urem-instruction - altText: LLVM urem instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.SRem - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.SRem - id: SRem - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: SRem - nameWithType: OpCode.SRem - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.SRem - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SRem - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 123 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: SRem instruction - example: [] - syntax: - content: SRem = 18 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#srem-instruction - altText: LLVM srem instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FRem - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FRem - id: FRem - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FRem - nameWithType: OpCode.FRem - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FRem - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FRem - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: FRem instruction - example: [] - syntax: - content: FRem = 19 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#frem-instruction - altText: LLVM frem instruction - - linkType: HRef - linkId: xref:llvm_langref#binary-operations - altText: LLVM Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Shl - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Shl - id: Shl - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Shl - nameWithType: OpCode.Shl - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Shl - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Shl - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 137 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Shift Left instruction - example: [] - syntax: - content: Shl = 20 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#shl-instruction - altText: LLVM shl instruction - - linkType: HRef - linkId: xref:llvm_langref#bitwise-binary-operations - altText: LLVM Bitwise Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.LShr - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.LShr - id: LShr - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: LShr - nameWithType: OpCode.LShr - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.LShr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LShr - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 143 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Logical Shift Right instruction - example: [] - syntax: - content: LShr = 21 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#lshr-instruction - altText: LLVM lshr instruction - - linkType: HRef - linkId: xref:llvm_langref#bitwise-binary-operations - altText: LLVM Bitwise Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.AShr - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.AShr - id: AShr - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: AShr - nameWithType: OpCode.AShr - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.AShr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AShr - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 149 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Arithmetic Shift Right instruction - example: [] - syntax: - content: AShr = 22 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#ashr-instruction - altText: LLVM ashr instruction - - linkType: HRef - linkId: xref:llvm_langref#bitwise-binary-operations - altText: LLVM Bitwise Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.And - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.And - id: And - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: And - nameWithType: OpCode.And - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.And - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: And - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 155 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Bitwise And instruction - example: [] - syntax: - content: And = 23 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#an-instruction - altText: LLVM and instruction - - linkType: HRef - linkId: xref:llvm_langref#bitwise-binary-operations - altText: LLVM Bitwise Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Or - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Or - id: Or - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Or - nameWithType: OpCode.Or - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Or - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Or - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 161 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Bitwise Or instruction - example: [] - syntax: - content: Or = 24 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#or-instruction - altText: LLVM or instruction - - linkType: HRef - linkId: xref:llvm_langref#bitwise-binary-operations - altText: LLVM Bitwise Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Xor - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Xor - id: Xor - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Xor - nameWithType: OpCode.Xor - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Xor - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Xor - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 167 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Bitwise Xor instruction - example: [] - syntax: - content: Xor = 25 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - - linkType: HRef - linkId: xref:llvm_langref#xor-instruction - altText: LLVM xor instruction - - linkType: HRef - linkId: xref:llvm_langref#bitwise-binary-operations - altText: LLVM Bitwise Binary Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Alloca - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Alloca - id: Alloca - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Alloca - nameWithType: OpCode.Alloca - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Alloca - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Alloca - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 175 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: xxx instruction - example: [] - syntax: - content: Alloca = 26 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Alloca - commentId: T:Ubiquity.NET.Llvm.Instructions.Alloca - - linkType: HRef - linkId: xref:llvm_langref#alloca-instruction - altText: LLVM alloca instruction - - linkType: HRef - linkId: xref:llvm_langref#memory-access-and-addressing-operations - altText: LLVM Memory Access and Addressing Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Load - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Load - id: Load - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Load - nameWithType: OpCode.Load - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Load - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Load - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 181 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Load instruction - example: [] - syntax: - content: Load = 27 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Load - commentId: T:Ubiquity.NET.Llvm.Instructions.Load - - linkType: HRef - linkId: xref:llvm_langref#load-instruction - altText: LLVM load instruction - - linkType: HRef - linkId: xref:llvm_langref#memory-access-and-addressing-operations - altText: LLVM Memory Access and Addressing Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Store - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Store - id: Store - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Store - nameWithType: OpCode.Store - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Store - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Store - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 187 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Store instruction - example: [] - syntax: - content: Store = 28 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Store - commentId: T:Ubiquity.NET.Llvm.Instructions.Store - - linkType: HRef - linkId: xref:llvm_langref#store-instruction - altText: LLVM store instruction - - linkType: HRef - linkId: xref:llvm_langref#memory-access-and-addressing-operations - altText: LLVM Memory Access and Addressing Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Fence - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Fence - id: Fence - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Fence - nameWithType: OpCode.Fence - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Fence - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fence - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 193 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Fence instruction - example: [] - syntax: - content: Fence = 55 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Fence - commentId: T:Ubiquity.NET.Llvm.Instructions.Fence - - linkType: HRef - linkId: xref:llvm_langref#fence-instruction - altText: LLVM fence instruction - - linkType: HRef - linkId: xref:llvm_langref#memory-access-and-addressing-operations - altText: LLVM Memory Access and Addressing Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.AtomicCmpXchg - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.AtomicCmpXchg - id: AtomicCmpXchg - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: AtomicCmpXchg - nameWithType: OpCode.AtomicCmpXchg - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.AtomicCmpXchg - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicCmpXchg - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 199 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: CmpXchg instruction - example: [] - syntax: - content: AtomicCmpXchg = 56 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - - linkType: HRef - linkId: xref:llvm_langref#cmpxchg-instruction - altText: LLVM cmpxchg instruction - - linkType: HRef - linkId: xref:llvm_langref#memory-access-and-addressing-operations - altText: LLVM Memory Access and Addressing Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.AtomicRMW - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.AtomicRMW - id: AtomicRMW - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: AtomicRMW - nameWithType: OpCode.AtomicRMW - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.AtomicRMW - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AtomicRMW - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 205 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: atomicrmw instruction - example: [] - syntax: - content: AtomicRMW = 57 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.AtomicRMW - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMW - - linkType: HRef - linkId: xref:llvm_langref#atomicrmw-instruction - altText: LLVM atomicrmw instruction - - linkType: HRef - linkId: xref:llvm_langref#memory-access-and-addressing-operations - altText: LLVM Memory Access and Addressing Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.GetElementPtr - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.GetElementPtr - id: GetElementPtr - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: GetElementPtr - nameWithType: OpCode.GetElementPtr - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.GetElementPtr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetElementPtr - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 211 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: getelementptr instruction - example: [] - syntax: - content: GetElementPtr = 29 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.GetElementPtr - commentId: T:Ubiquity.NET.Llvm.Instructions.GetElementPtr - - linkType: HRef - linkId: xref:llvm_langref#getelementptr-instruction - altText: LLVM getelementptr instruction - - linkType: HRef - linkId: xref:llvm_langref#memory-access-and-addressing-operations - altText: LLVM Memory Access and Addressing Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Trunc - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Trunc - id: Trunc - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Trunc - nameWithType: OpCode.Trunc - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Trunc - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Trunc - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 219 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: trunc .. to instruction - example: [] - syntax: - content: Trunc = 30 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.Trunc - commentId: T:Ubiquity.NET.Llvm.Instructions.Trunc - - linkType: HRef - linkId: xref:llvm_langref#trunc-to-instruction - altText: LLVM trunc .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.ZeroExtend - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.ZeroExtend - id: ZeroExtend - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: ZeroExtend - nameWithType: OpCode.ZeroExtend - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.ZeroExtend - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ZeroExtend - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 225 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: zext .. to instruction - example: [] - syntax: - content: ZeroExtend = 31 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.ZeroExtend - commentId: T:Ubiquity.NET.Llvm.Instructions.ZeroExtend - - linkType: HRef - linkId: xref:llvm_langref#zext-to-instruction - altText: LLVM zext .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.SignExtend - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.SignExtend - id: SignExtend - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: SignExtend - nameWithType: OpCode.SignExtend - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.SignExtend - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignExtend - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 231 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: sext .. to instruction - example: [] - syntax: - content: SignExtend = 32 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.SignExtend - commentId: T:Ubiquity.NET.Llvm.Instructions.SignExtend - - linkType: HRef - linkId: xref:llvm_langref#sext-to-instruction - altText: LLVM sext .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FPToUI - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FPToUI - id: FPToUI - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FPToUI - nameWithType: OpCode.FPToUI - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FPToUI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPToUI - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 237 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: fptoui .. to instruction - example: [] - syntax: - content: FPToUI = 33 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.FPToUI - commentId: T:Ubiquity.NET.Llvm.Instructions.FPToUI - - linkType: HRef - linkId: xref:llvm_langref#fptoui-to-instruction - altText: LLVM fptoui .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FPToSI - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FPToSI - id: FPToSI - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FPToSI - nameWithType: OpCode.FPToSI - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FPToSI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPToSI - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 243 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: fptosi .. to instruction - example: [] - syntax: - content: FPToSI = 34 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.FPToSI - commentId: T:Ubiquity.NET.Llvm.Instructions.FPToSI - - linkType: HRef - linkId: xref:llvm_langref#fptosi-to-instruction - altText: LLVM fptosi .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.UIToFP - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.UIToFP - id: UIToFP - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: UIToFP - nameWithType: OpCode.UIToFP - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.UIToFP - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UIToFP - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 249 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: uitofp .. to instruction - example: [] - syntax: - content: UIToFP = 35 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.UIToFP - commentId: T:Ubiquity.NET.Llvm.Instructions.UIToFP - - linkType: HRef - linkId: xref:llvm_langref#uitofp-to-instruction - altText: LLVM uitofp .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.SIToFP - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.SIToFP - id: SIToFP - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: SIToFP - nameWithType: OpCode.SIToFP - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.SIToFP - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SIToFP - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 255 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: sitofp .. to instruction - example: [] - syntax: - content: SIToFP = 36 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.SIToFP - commentId: T:Ubiquity.NET.Llvm.Instructions.SIToFP - - linkType: HRef - linkId: xref:llvm_langref#sitofp-to-instruction - altText: LLVM sitofp .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FPTrunc - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FPTrunc - id: FPTrunc - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FPTrunc - nameWithType: OpCode.FPTrunc - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FPTrunc - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPTrunc - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 261 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: fptrunc .. to instruction - example: [] - syntax: - content: FPTrunc = 37 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.FPTrunc - commentId: T:Ubiquity.NET.Llvm.Instructions.FPTrunc - - linkType: HRef - linkId: xref:llvm_langref#fptrunct-to-instruction - altText: LLVM fptrunc .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FPExt - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FPExt - id: FPExt - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FPExt - nameWithType: OpCode.FPExt - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FPExt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FPExt - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 267 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: fpext .. to instruction - example: [] - syntax: - content: FPExt = 38 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.FPExt - commentId: T:Ubiquity.NET.Llvm.Instructions.FPExt - - linkType: HRef - linkId: xref:llvm_langref#fpext-to-instruction - altText: LLVM fpext .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.PtrToInt - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.PtrToInt - id: PtrToInt - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: PtrToInt - nameWithType: OpCode.PtrToInt - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.PtrToInt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PtrToInt - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 273 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: ptrtoint .. to instruction - example: [] - syntax: - content: PtrToInt = 39 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.PointerToInt - commentId: T:Ubiquity.NET.Llvm.Instructions.PointerToInt - - linkType: HRef - linkId: xref:llvm_langref#ptrtoint-to-instruction - altText: LLVM ptrtoint .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.IntToPtr - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.IntToPtr - id: IntToPtr - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: IntToPtr - nameWithType: OpCode.IntToPtr - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.IntToPtr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntToPtr - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 279 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: inttoptr .. to instruction - example: [] - syntax: - content: IntToPtr = 40 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.IntToPointer - commentId: T:Ubiquity.NET.Llvm.Instructions.IntToPointer - - linkType: HRef - linkId: xref:llvm_langref#inttoptr-to-instruction - altText: LLVM inttoptr .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.BitCast - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.BitCast - id: BitCast - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: BitCast - nameWithType: OpCode.BitCast - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.BitCast - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitCast - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 285 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: bitcast .. to instruction - example: [] - syntax: - content: BitCast = 41 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.BitCast - commentId: T:Ubiquity.NET.Llvm.Instructions.BitCast - - linkType: HRef - linkId: xref:llvm_langref#bitcast-to-instruction - altText: LLVM bitcast .. to instruction - - linkType: HRef - linkId: xref:llvm_langref#conversion-operations - altText: LLVM Conversion Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.AddrSpaceCast - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.AddrSpaceCast - id: AddrSpaceCast - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: AddrSpaceCast - nameWithType: OpCode.AddrSpaceCast - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.AddrSpaceCast - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddrSpaceCast - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 290 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: addressspacecast .. to instruction - example: [] - syntax: - content: AddrSpaceCast = 60 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - commentId: T:Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - - linkType: HRef - linkId: xref:llvm_langref#addressspacecast-to-instruction - altText: LLVM addressspacecast .. to instruction -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.ICmp - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.ICmp - id: ICmp - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: ICmp - nameWithType: OpCode.ICmp - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.ICmp - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ICmp - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 298 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: icmp instruction - example: [] - syntax: - content: ICmp = 42 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.IntCmp - commentId: T:Ubiquity.NET.Llvm.Instructions.IntCmp - - linkType: HRef - linkId: xref:llvm_langref#icmp-instruction - altText: LLVM icmp instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.FCmp - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.FCmp - id: FCmp - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: FCmp - nameWithType: OpCode.FCmp - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.FCmp - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FCmp - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 304 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: fcmp instruction - example: [] - syntax: - content: FCmp = 43 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.FCmp - commentId: T:Ubiquity.NET.Llvm.Instructions.FCmp - - linkType: HRef - linkId: xref:llvm_langref#fcmp-instruction - altText: LLVM fcmp instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Phi - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Phi - id: Phi - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Phi - nameWithType: OpCode.Phi - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Phi - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Phi - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 310 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: phi instruction - example: [] - syntax: - content: Phi = 44 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.PhiNode - commentId: T:Ubiquity.NET.Llvm.Instructions.PhiNode - - linkType: HRef - linkId: xref:llvm_langref#phi-instruction - altText: LLVM phi instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Call - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Call - id: Call - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Call - nameWithType: OpCode.Call - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Call - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Call - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 316 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: call instruction - example: [] - syntax: - content: Call = 45 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - - linkType: HRef - linkId: xref:llvm_langref#call-instruction - altText: LLVM call instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Select - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Select - id: Select - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Select - nameWithType: OpCode.Select - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Select - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Select - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 322 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: select instruction - example: [] - syntax: - content: Select = 46 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.SelectInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.SelectInstruction - - linkType: HRef - linkId: xref:llvm_langref#select-instruction - altText: LLVM select instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.UserOp1 - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.UserOp1 - id: UserOp1 - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: UserOp1 - nameWithType: OpCode.UserOp1 - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.UserOp1 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UserOp1 - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 326 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Custom user operator1 instruction - example: [] - syntax: - content: UserOp1 = 47 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.UserOp1 - commentId: T:Ubiquity.NET.Llvm.Instructions.UserOp1 -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.UserOp2 - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.UserOp2 - id: UserOp2 - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: UserOp2 - nameWithType: OpCode.UserOp2 - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.UserOp2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UserOp2 - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 330 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Custom user operator2 instruction - example: [] - syntax: - content: UserOp2 = 48 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.UserOp2 - commentId: T:Ubiquity.NET.Llvm.Instructions.UserOp2 -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.VaArg - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.VaArg - id: VaArg - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: VaArg - nameWithType: OpCode.VaArg - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.VaArg - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VaArg - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 336 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: va_arg instruction - example: [] - syntax: - content: VaArg = 49 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.VaArg - commentId: T:Ubiquity.NET.Llvm.Instructions.VaArg - - linkType: HRef - linkId: xref:llvm_langref#va-arg-instruction - altText: LLVM va_arg instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.ExtractElement - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.ExtractElement - id: ExtractElement - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: ExtractElement - nameWithType: OpCode.ExtractElement - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.ExtractElement - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExtractElement - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 342 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: extractelement instruction - example: [] - syntax: - content: ExtractElement = 50 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.ExtractElement - commentId: T:Ubiquity.NET.Llvm.Instructions.ExtractElement - - linkType: HRef - linkId: xref:llvm_langref#extractelement-instruction - altText: LLVM extractelement instruction - - linkType: HRef - linkId: xref:llvm_langref#vector-operations - altText: LLVM Vector Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.InsertElement - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.InsertElement - id: InsertElement - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: InsertElement - nameWithType: OpCode.InsertElement - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.InsertElement - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertElement - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 348 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: insert instruction - example: [] - syntax: - content: InsertElement = 51 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.InsertElement - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertElement - - linkType: HRef - linkId: xref:llvm_langref#insert-instruction - altText: LLVM insert instruction - - linkType: HRef - linkId: xref:llvm_langref#vector-operations - altText: LLVM Vector Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.ShuffleVector - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.ShuffleVector - id: ShuffleVector - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: ShuffleVector - nameWithType: OpCode.ShuffleVector - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.ShuffleVector - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ShuffleVector - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 354 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: shufflevector instruction - example: [] - syntax: - content: ShuffleVector = 52 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.ShuffleVector - commentId: T:Ubiquity.NET.Llvm.Instructions.ShuffleVector - - linkType: HRef - linkId: xref:llvm_langref#shufflevector-instruction - altText: LLVM shufflevector instruction - - linkType: HRef - linkId: xref:llvm_langref#vector-operations - altText: LLVM Vector Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.ExtractValue - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.ExtractValue - id: ExtractValue - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: ExtractValue - nameWithType: OpCode.ExtractValue - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.ExtractValue - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExtractValue - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 360 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: extractvalue instruction - example: [] - syntax: - content: ExtractValue = 53 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.ExtractValue - commentId: T:Ubiquity.NET.Llvm.Instructions.ExtractValue - - linkType: HRef - linkId: xref:llvm_langref#extractvalue-instruction - altText: LLVM extractvalue instruction - - linkType: HRef - linkId: xref:llvm_langref#aggregate-operations - altText: LLVM Vector Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.InsertValue - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.InsertValue - id: InsertValue - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: InsertValue - nameWithType: OpCode.InsertValue - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.InsertValue - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertValue - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 366 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: insertvalue instruction - example: [] - syntax: - content: InsertValue = 54 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.InsertValue - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertValue - - linkType: HRef - linkId: xref:llvm_langref#xxx-instruction - altText: LLVM insertvalue instruction - - linkType: HRef - linkId: xref:llvm_langref#aggregate-operations - altText: LLVM Aggregate Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Resume - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Resume - id: Resume - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Resume - nameWithType: OpCode.Resume - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Resume - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Resume - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 374 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: resume instruction - example: [] - syntax: - content: Resume = 58 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ResumeInstruction - - linkType: HRef - linkId: xref:llvm_langref#xxx-instruction - altText: LLVM resume instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.LandingPad - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.LandingPad - id: LandingPad - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: LandingPad - nameWithType: OpCode.LandingPad - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.LandingPad - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LandingPad - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 380 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: landingpad instruction - example: [] - syntax: - content: LandingPad = 59 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.LandingPad - commentId: T:Ubiquity.NET.Llvm.Instructions.LandingPad - - linkType: HRef - linkId: xref:llvm_langref#landingpad-instruction - altText: LLVM landingpad instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.CleanupRet - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.CleanupRet - id: CleanupRet - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: CleanupRet - nameWithType: OpCode.CleanupRet - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.CleanupRet - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CleanupRet - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 386 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: cleanupret instruction - example: [] - syntax: - content: CleanupRet = 61 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.CleanupReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupReturn - - linkType: HRef - linkId: xref:llvm_langref#cleanupret-instruction - altText: LLVM cleanupret instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.CatchRet - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.CatchRet - id: CatchRet - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: CatchRet - nameWithType: OpCode.CatchRet - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.CatchRet - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchRet - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 392 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: catchret instruction - example: [] - syntax: - content: CatchRet = 62 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.CatchReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchReturn - - linkType: HRef - linkId: xref:llvm_langref#catchret-instruction - altText: LLVM catchret instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.CatchPad - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.CatchPad - id: CatchPad - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: CatchPad - nameWithType: OpCode.CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.CatchPad - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchPad - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 398 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: catchpad instruction - example: [] - syntax: - content: CatchPad = 63 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.CatchPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchPad - - linkType: HRef - linkId: xref:llvm_langref#catchpad-instruction - altText: LLVM catchpad instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.CleanupPad - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.CleanupPad - id: CleanupPad - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: CleanupPad - nameWithType: OpCode.CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.CleanupPad - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CleanupPad - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 404 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: cleanuppad instruction - example: [] - syntax: - content: CleanupPad = 64 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.CleanupPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupPad - - linkType: HRef - linkId: xref:llvm_langref#cleanuppad-instruction - altText: LLVM cleanuppad instruction - - linkType: HRef - linkId: xref:llvm_langref#other-operations - altText: LLVM Other Operations -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.CatchSwitch - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.CatchSwitch - id: CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: CatchSwitch - nameWithType: OpCode.CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.CatchSwitch - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CatchSwitch - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 410 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: catchswitch instruction - example: [] - syntax: - content: CatchSwitch = 65 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkId: Ubiquity.NET.Llvm.Instructions.CatchSwitch - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchSwitch - - linkType: HRef - linkId: xref:llvm_langref#catchswitch-instruction - altText: LLVM catchswitch instruction - - linkType: HRef - linkId: xref:llvm_langref#terminator-instructions - altText: LLVM Terminator Instructions -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.CallBr - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.CallBr - id: CallBr - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: CallBr - nameWithType: OpCode.CallBr - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.CallBr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallBr - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 414 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: callbr instruction - example: [] - syntax: - content: CallBr = 67 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkType: HRef - linkId: xref::llvm_langref#i-callbr - altText: xref::llvm_langref#i-callbr -- uid: Ubiquity.NET.Llvm.Instructions.OpCode.Freeze - commentId: F:Ubiquity.NET.Llvm.Instructions.OpCode.Freeze - id: Freeze - parent: Ubiquity.NET.Llvm.Instructions.OpCode - langs: - - csharp - - vb - name: Freeze - nameWithType: OpCode.Freeze - fullName: Ubiquity.NET.Llvm.Instructions.OpCode.Freeze - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Freeze - path: ../src/Ubiquity.NET.Llvm/Instructions/Instruction.cs - startLine: 418 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Freeze instruction - example: [] - syntax: - content: Freeze = 68 - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - seealso: - - linkType: HRef - linkId: xref:llvm_langref#i-freeze - altText: xref:llvm_langref#i-freeze -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: Ubiquity.NET.Llvm.Instructions.OpCode - commentId: T:Ubiquity.NET.Llvm.Instructions.OpCode - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.OpCode.html - name: OpCode - nameWithType: OpCode - fullName: Ubiquity.NET.Llvm.Instructions.OpCode -- uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ReturnInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - name: ReturnInstruction - nameWithType: ReturnInstruction - fullName: Ubiquity.NET.Llvm.Instructions.ReturnInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Branch - commentId: T:Ubiquity.NET.Llvm.Instructions.Branch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Branch.html - name: Branch - nameWithType: Branch - fullName: Ubiquity.NET.Llvm.Instructions.Branch -- uid: Ubiquity.NET.Llvm.Instructions.Switch - commentId: T:Ubiquity.NET.Llvm.Instructions.Switch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Switch.html - name: Switch - nameWithType: Switch - fullName: Ubiquity.NET.Llvm.Instructions.Switch -- uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - commentId: T:Ubiquity.NET.Llvm.Instructions.IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - name: IndirectBranch - nameWithType: IndirectBranch - fullName: Ubiquity.NET.Llvm.Instructions.IndirectBranch -- uid: Ubiquity.NET.Llvm.Instructions.Invoke - commentId: T:Ubiquity.NET.Llvm.Instructions.Invoke - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - name: Invoke - nameWithType: Invoke - fullName: Ubiquity.NET.Llvm.Instructions.Invoke -- uid: Ubiquity.NET.Llvm.Instructions.Unreachable - commentId: T:Ubiquity.NET.Llvm.Instructions.Unreachable - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - name: Unreachable - nameWithType: Unreachable - fullName: Ubiquity.NET.Llvm.Instructions.Unreachable -- uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - name: BinaryOperator - nameWithType: BinaryOperator - fullName: Ubiquity.NET.Llvm.Instructions.BinaryOperator -- uid: Ubiquity.NET.Llvm.Instructions.Alloca - commentId: T:Ubiquity.NET.Llvm.Instructions.Alloca - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - name: Alloca - nameWithType: Alloca - fullName: Ubiquity.NET.Llvm.Instructions.Alloca -- uid: Ubiquity.NET.Llvm.Instructions.Load - commentId: T:Ubiquity.NET.Llvm.Instructions.Load - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Load.html - name: Load - nameWithType: Load - fullName: Ubiquity.NET.Llvm.Instructions.Load -- uid: Ubiquity.NET.Llvm.Instructions.Store - commentId: T:Ubiquity.NET.Llvm.Instructions.Store - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Store.html - name: Store - nameWithType: Store - fullName: Ubiquity.NET.Llvm.Instructions.Store -- uid: Ubiquity.NET.Llvm.Instructions.Fence - commentId: T:Ubiquity.NET.Llvm.Instructions.Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - name: Fence - nameWithType: Fence - fullName: Ubiquity.NET.Llvm.Instructions.Fence -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - name: AtomicCmpXchg - nameWithType: AtomicCmpXchg - fullName: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMW - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - name: AtomicRMW - nameWithType: AtomicRMW - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMW -- uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - commentId: T:Ubiquity.NET.Llvm.Instructions.GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - name: GetElementPtr - nameWithType: GetElementPtr - fullName: Ubiquity.NET.Llvm.Instructions.GetElementPtr -- uid: Ubiquity.NET.Llvm.Instructions.Trunc - commentId: T:Ubiquity.NET.Llvm.Instructions.Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - name: Trunc - nameWithType: Trunc - fullName: Ubiquity.NET.Llvm.Instructions.Trunc -- uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - commentId: T:Ubiquity.NET.Llvm.Instructions.ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - name: ZeroExtend - nameWithType: ZeroExtend - fullName: Ubiquity.NET.Llvm.Instructions.ZeroExtend -- uid: Ubiquity.NET.Llvm.Instructions.SignExtend - commentId: T:Ubiquity.NET.Llvm.Instructions.SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - name: SignExtend - nameWithType: SignExtend - fullName: Ubiquity.NET.Llvm.Instructions.SignExtend -- uid: Ubiquity.NET.Llvm.Instructions.FPToUI - commentId: T:Ubiquity.NET.Llvm.Instructions.FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - name: FPToUI - nameWithType: FPToUI - fullName: Ubiquity.NET.Llvm.Instructions.FPToUI -- uid: Ubiquity.NET.Llvm.Instructions.FPToSI - commentId: T:Ubiquity.NET.Llvm.Instructions.FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - name: FPToSI - nameWithType: FPToSI - fullName: Ubiquity.NET.Llvm.Instructions.FPToSI -- uid: Ubiquity.NET.Llvm.Instructions.UIToFP - commentId: T:Ubiquity.NET.Llvm.Instructions.UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - name: UIToFP - nameWithType: UIToFP - fullName: Ubiquity.NET.Llvm.Instructions.UIToFP -- uid: Ubiquity.NET.Llvm.Instructions.SIToFP - commentId: T:Ubiquity.NET.Llvm.Instructions.SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - name: SIToFP - nameWithType: SIToFP - fullName: Ubiquity.NET.Llvm.Instructions.SIToFP -- uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - commentId: T:Ubiquity.NET.Llvm.Instructions.FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - name: FPTrunc - nameWithType: FPTrunc - fullName: Ubiquity.NET.Llvm.Instructions.FPTrunc -- uid: Ubiquity.NET.Llvm.Instructions.FPExt - commentId: T:Ubiquity.NET.Llvm.Instructions.FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - name: FPExt - nameWithType: FPExt - fullName: Ubiquity.NET.Llvm.Instructions.FPExt -- uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - commentId: T:Ubiquity.NET.Llvm.Instructions.PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - name: PointerToInt - nameWithType: PointerToInt - fullName: Ubiquity.NET.Llvm.Instructions.PointerToInt -- uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - commentId: T:Ubiquity.NET.Llvm.Instructions.IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - name: IntToPointer - nameWithType: IntToPointer - fullName: Ubiquity.NET.Llvm.Instructions.IntToPointer -- uid: Ubiquity.NET.Llvm.Instructions.BitCast - commentId: T:Ubiquity.NET.Llvm.Instructions.BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - name: BitCast - nameWithType: BitCast - fullName: Ubiquity.NET.Llvm.Instructions.BitCast -- uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - commentId: T:Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - name: AddressSpaceCast - nameWithType: AddressSpaceCast - fullName: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast -- uid: Ubiquity.NET.Llvm.Instructions.IntCmp - commentId: T:Ubiquity.NET.Llvm.Instructions.IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - name: IntCmp - nameWithType: IntCmp - fullName: Ubiquity.NET.Llvm.Instructions.IntCmp -- uid: Ubiquity.NET.Llvm.Instructions.FCmp - commentId: T:Ubiquity.NET.Llvm.Instructions.FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - name: FCmp - nameWithType: FCmp - fullName: Ubiquity.NET.Llvm.Instructions.FCmp -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode - commentId: T:Ubiquity.NET.Llvm.Instructions.PhiNode - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - name: PhiNode - nameWithType: PhiNode - fullName: Ubiquity.NET.Llvm.Instructions.PhiNode -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - name: SelectInstruction - nameWithType: SelectInstruction - fullName: Ubiquity.NET.Llvm.Instructions.SelectInstruction -- uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - commentId: T:Ubiquity.NET.Llvm.Instructions.UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - name: UserOp1 - nameWithType: UserOp1 - fullName: Ubiquity.NET.Llvm.Instructions.UserOp1 -- uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - commentId: T:Ubiquity.NET.Llvm.Instructions.UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - name: UserOp2 - nameWithType: UserOp2 - fullName: Ubiquity.NET.Llvm.Instructions.UserOp2 -- uid: Ubiquity.NET.Llvm.Instructions.VaArg - commentId: T:Ubiquity.NET.Llvm.Instructions.VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - name: VaArg - nameWithType: VaArg - fullName: Ubiquity.NET.Llvm.Instructions.VaArg -- uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - commentId: T:Ubiquity.NET.Llvm.Instructions.ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - name: ExtractElement - nameWithType: ExtractElement - fullName: Ubiquity.NET.Llvm.Instructions.ExtractElement -- uid: Ubiquity.NET.Llvm.Instructions.InsertElement - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - name: InsertElement - nameWithType: InsertElement - fullName: Ubiquity.NET.Llvm.Instructions.InsertElement -- uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - commentId: T:Ubiquity.NET.Llvm.Instructions.ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - name: ShuffleVector - nameWithType: ShuffleVector - fullName: Ubiquity.NET.Llvm.Instructions.ShuffleVector -- uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - commentId: T:Ubiquity.NET.Llvm.Instructions.ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - name: ExtractValue - nameWithType: ExtractValue - fullName: Ubiquity.NET.Llvm.Instructions.ExtractValue -- uid: Ubiquity.NET.Llvm.Instructions.InsertValue - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - name: InsertValue - nameWithType: InsertValue - fullName: Ubiquity.NET.Llvm.Instructions.InsertValue -- uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ResumeInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - name: ResumeInstruction - nameWithType: ResumeInstruction - fullName: Ubiquity.NET.Llvm.Instructions.ResumeInstruction -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad - commentId: T:Ubiquity.NET.Llvm.Instructions.LandingPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - name: LandingPad - nameWithType: LandingPad - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - name: CleanupReturn - nameWithType: CleanupReturn - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - name: CatchReturn - nameWithType: CatchReturn - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - name: CatchPad - nameWithType: CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchPad -- uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - name: CleanupPad - nameWithType: CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.CleanupPad -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - name: CatchSwitch - nameWithType: CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.PhiNode.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.PhiNode.yml deleted file mode 100644 index 71178fd59d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.PhiNode.yml +++ /dev/null @@ -1,1166 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode - commentId: T:Ubiquity.NET.Llvm.Instructions.PhiNode - id: PhiNode - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock},System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}[]) - - Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - langs: - - csharp - - vb - name: PhiNode - nameWithType: PhiNode - fullName: Ubiquity.NET.Llvm.Instructions.PhiNode - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/PhiNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PhiNode - path: ../src/Ubiquity.NET.Llvm/Instructions/PhiNode.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: PHI node instruction - example: [] - syntax: - content: 'public sealed class PhiNode : Instruction, IEquatable' - content.vb: Public NotInheritable Class PhiNode Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.PhiNode.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.PhiNode.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.PhiNode.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - id: AddIncoming(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Instructions.PhiNode - langs: - - csharp - - vb - name: AddIncoming(Value, BasicBlock) - nameWithType: PhiNode.AddIncoming(Value, BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/PhiNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddIncoming - path: ../src/Ubiquity.NET.Llvm/Instructions/PhiNode.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Adds an incoming value and block to this - example: [] - syntax: - content: public void AddIncoming(Value value, BasicBlock srcBlock) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: Value from srcBlock - - id: srcBlock - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Incoming block - content.vb: Public Sub AddIncoming(value As Value, srcBlock As BasicBlock) - overload: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming* -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock},System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}[]) - commentId: M:Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming(System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock},System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}[]) - id: AddIncoming(System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock},System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}[]) - parent: Ubiquity.NET.Llvm.Instructions.PhiNode - langs: - - csharp - - vb - name: AddIncoming((Value Value, BasicBlock Block), params (Value Value, BasicBlock Block)[]) - nameWithType: PhiNode.AddIncoming((Value Value, BasicBlock Block), params (Value Value, BasicBlock Block)[]) - fullName: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming((Ubiquity.NET.Llvm.Values.Value Value, Ubiquity.NET.Llvm.Values.BasicBlock Block), params (Ubiquity.NET.Llvm.Values.Value Value, Ubiquity.NET.Llvm.Values.BasicBlock Block)[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/PhiNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddIncoming - path: ../src/Ubiquity.NET.Llvm/Instructions/PhiNode.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Adds incoming blocks and values to this - example: [] - syntax: - content: public void AddIncoming((Value Value, BasicBlock Block) firstIncoming, params (Value Value, BasicBlock Block)[] additionalIncoming) - parameters: - - id: firstIncoming - type: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock} - description: first incoming value and block - - id: additionalIncoming - type: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}[] - description: additional values and blocks - content.vb: Public Sub AddIncoming(firstIncoming As (Value As Value, Block As BasicBlock), ParamArray additionalIncoming As (Value As Value, Block As BasicBlock)()) - overload: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming* - nameWithType.vb: PhiNode.AddIncoming((Value As Value, Block As BasicBlock), ParamArray (Value As Value, Block As BasicBlock)()) - fullName.vb: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming((Value As Ubiquity.NET.Llvm.Values.Value, Block As Ubiquity.NET.Llvm.Values.BasicBlock), ParamArray (Value As Ubiquity.NET.Llvm.Values.Value, Block As Ubiquity.NET.Llvm.Values.BasicBlock)()) - name.vb: AddIncoming((Value As Value, Block As BasicBlock), ParamArray (Value As Value, Block As BasicBlock)()) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(PhiNode, uint) - nameWithType: InstructionExtensions.SetAlignment(PhiNode, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.PhiNode, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of PhiNode)(PhiNode, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.PhiNode)(Ubiquity.NET.Llvm.Instructions.PhiNode, UInteger) - name.vb: SetAlignment(Of PhiNode)(PhiNode, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.PhiNode,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.PhiNode,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(PhiNode, bool) - nameWithType: InstructionExtensions.SetIsVolatile(PhiNode, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.PhiNode, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of PhiNode)(PhiNode, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.PhiNode)(Ubiquity.NET.Llvm.Instructions.PhiNode, Boolean) - name.vb: SetIsVolatile(Of PhiNode)(PhiNode, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.PhiNode,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.PhiNode,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(PhiNode, string) - nameWithType: ValueExtensions.RegisterName(PhiNode, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.PhiNode, string) - nameWithType.vb: ValueExtensions.RegisterName(Of PhiNode)(PhiNode, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.PhiNode)(Ubiquity.NET.Llvm.Instructions.PhiNode, String) - name.vb: RegisterName(Of PhiNode)(PhiNode, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.PhiNode,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.PhiNode,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode - commentId: T:Ubiquity.NET.Llvm.Instructions.PhiNode - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - name: PhiNode - nameWithType: PhiNode - fullName: Ubiquity.NET.Llvm.Instructions.PhiNode -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html#Ubiquity_NET_Llvm_Instructions_PhiNode_AddIncoming_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: AddIncoming - nameWithType: PhiNode.AddIncoming - fullName: Ubiquity.NET.Llvm.Instructions.PhiNode.AddIncoming -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock} - commentId: T:System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock} - parent: System - definition: System.ValueTuple`2 - href: Ubiquity.NET.Llvm.Values.Value.html - name: (Value Value, BasicBlock Block) - nameWithType: (Value Value, BasicBlock Block) - fullName: (Ubiquity.NET.Llvm.Values.Value Value, Ubiquity.NET.Llvm.Values.BasicBlock Block) - nameWithType.vb: (Value As Value, Block As BasicBlock) - fullName.vb: (Value As Ubiquity.NET.Llvm.Values.Value, Block As Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: (Value As Value, Block As BasicBlock) - spec.csharp: - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: " " - - uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}.Value - name: Value - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-ubiquity.net.llvm.values.value,ubiquity.net.llvm.values.basicblock-.value - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: " " - - uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}.Block - name: Block - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-ubiquity.net.llvm.values.value,ubiquity.net.llvm.values.basicblock-.block - - name: ) - spec.vb: - - name: ( - - uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}.Value - name: Value - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-ubiquity.net.llvm.values.value,ubiquity.net.llvm.values.basicblock-.value - - name: " " - - name: As - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ',' - - name: " " - - uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}.Block - name: Block - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-ubiquity.net.llvm.values.value,ubiquity.net.llvm.values.basicblock-.block - - name: " " - - name: As - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}[] - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html - name: (Value Value, BasicBlock Block)[] - nameWithType: (Value Value, BasicBlock Block)[] - fullName: (Ubiquity.NET.Llvm.Values.Value Value, Ubiquity.NET.Llvm.Values.BasicBlock Block)[] - nameWithType.vb: (Value As Value, Block As BasicBlock)() - fullName.vb: (Value As Ubiquity.NET.Llvm.Values.Value, Block As Ubiquity.NET.Llvm.Values.BasicBlock)() - name.vb: (Value As Value, Block As BasicBlock)() - spec.csharp: - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: " " - - uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}.Value - name: Value - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-ubiquity.net.llvm.values.value,ubiquity.net.llvm.values.basicblock-.value - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: " " - - uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}.Block - name: Block - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-ubiquity.net.llvm.values.value,ubiquity.net.llvm.values.basicblock-.block - - name: ) - - name: '[' - - name: ']' - spec.vb: - - name: ( - - uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}.Value - name: Value - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-ubiquity.net.llvm.values.value,ubiquity.net.llvm.values.basicblock-.value - - name: " " - - name: As - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ',' - - name: " " - - uid: System.ValueTuple{Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock}.Block - name: Block - href: https://learn.microsoft.com/dotnet/api/system.valuetuple-ubiquity.net.llvm.values.value,ubiquity.net.llvm.values.basicblock-.block - - name: " " - - name: As - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) - - name: ( - - name: ) -- uid: System.ValueTuple`2 - commentId: T:System.ValueTuple`2 - name: (T1, T2) - nameWithType: (T1, T2) - fullName: (T1, T2) - spec.csharp: - - name: ( - - name: T1 - - name: ',' - - name: " " - - name: T2 - - name: ) - spec.vb: - - name: ( - - name: T1 - - name: ',' - - name: " " - - name: T2 - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.PointerToInt.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.PointerToInt.yml deleted file mode 100644 index ea9667e853..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.PointerToInt.yml +++ /dev/null @@ -1,976 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - commentId: T:Ubiquity.NET.Llvm.Instructions.PointerToInt - id: PointerToInt - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: PointerToInt - nameWithType: PointerToInt - fullName: Ubiquity.NET.Llvm.Instructions.PointerToInt - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/PointerToInt.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerToInt - path: ../src/Ubiquity.NET.Llvm/Instructions/PointerToInt.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to cast a pointer to an integer value - example: [] - syntax: - content: 'public sealed class PointerToInt : Cast, IEquatable' - content.vb: Public NotInheritable Class PointerToInt Inherits Cast Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.PointerToInt.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.PointerToInt.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.PointerToInt.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.PointerToInt.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(PointerToInt, uint) - nameWithType: InstructionExtensions.SetAlignment(PointerToInt, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.PointerToInt, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of PointerToInt)(PointerToInt, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.PointerToInt)(Ubiquity.NET.Llvm.Instructions.PointerToInt, UInteger) - name.vb: SetAlignment(Of PointerToInt)(PointerToInt, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.PointerToInt,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.PointerToInt,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.PointerToInt.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(PointerToInt, bool) - nameWithType: InstructionExtensions.SetIsVolatile(PointerToInt, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.PointerToInt, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of PointerToInt)(PointerToInt, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.PointerToInt)(Ubiquity.NET.Llvm.Instructions.PointerToInt, Boolean) - name.vb: SetIsVolatile(Of PointerToInt)(PointerToInt, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.PointerToInt,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.PointerToInt,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.PointerToInt.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(PointerToInt, string) - nameWithType: ValueExtensions.RegisterName(PointerToInt, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.PointerToInt, string) - nameWithType.vb: ValueExtensions.RegisterName(Of PointerToInt)(PointerToInt, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.PointerToInt)(Ubiquity.NET.Llvm.Instructions.PointerToInt, String) - name.vb: RegisterName(Of PointerToInt)(PointerToInt, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.PointerToInt,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.PointerToInt,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Predicate.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Predicate.yml deleted file mode 100644 index 14bafc7ad4..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Predicate.yml +++ /dev/null @@ -1,1008 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Predicate - commentId: T:Ubiquity.NET.Llvm.Instructions.Predicate - id: Predicate - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Predicate.BadFcmpPredicate - - Ubiquity.NET.Llvm.Instructions.Predicate.BadIcmpPredicate - - Ubiquity.NET.Llvm.Instructions.Predicate.Equal - - Ubiquity.NET.Llvm.Instructions.Predicate.False - - Ubiquity.NET.Llvm.Instructions.Predicate.FirstFcmpPredicate - - Ubiquity.NET.Llvm.Instructions.Predicate.FirstIcmpPredicate - - Ubiquity.NET.Llvm.Instructions.Predicate.LastFcmpPredicate - - Ubiquity.NET.Llvm.Instructions.Predicate.LastIcmpPredicate - - Ubiquity.NET.Llvm.Instructions.Predicate.NotEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.Ordered - - Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThan - - Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThanOrEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThan - - Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThanOrEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndNotEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThan - - Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThanOrEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThan - - Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThanOrEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.True - - Ubiquity.NET.Llvm.Instructions.Predicate.Unordered - - Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedAndEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThan - - Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThanOrEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThan - - Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThanOrEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrNotEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThan - - Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThanOrEqual - - Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThan - - Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThanOrEqual - langs: - - csharp - - vb - name: Predicate - nameWithType: Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Predicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unified predicate enumeration - remarks: >- - For floating point predicates "Ordered" means that neither operand is a QNAN - - while unordered means that either operand may be a QNAN. - example: [] - syntax: - content: public enum Predicate - content.vb: Public Enum Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.False - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.False - id: "False" - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: "False" - nameWithType: Predicate.False - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.False - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: "False" - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: No comparison, always returns floating point false - example: [] - syntax: - content: False = 0 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndEqual - id: OrderedAndEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: OrderedAndEqual - nameWithType: Predicate.OrderedAndEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and equal floating point comparison - example: [] - syntax: - content: OrderedAndEqual = 1 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThan - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThan - id: OrderedAndGreaterThan - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: OrderedAndGreaterThan - nameWithType: Predicate.OrderedAndGreaterThan - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndGreaterThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and greater than floating point comparison - example: [] - syntax: - content: OrderedAndGreaterThan = 2 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThanOrEqual - id: OrderedAndGreaterThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: OrderedAndGreaterThanOrEqual - nameWithType: Predicate.OrderedAndGreaterThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndGreaterThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndGreaterThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and greater than or equal floating point comparison - example: [] - syntax: - content: OrderedAndGreaterThanOrEqual = 3 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThan - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThan - id: OrderedAndLessThan - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: OrderedAndLessThan - nameWithType: Predicate.OrderedAndLessThan - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndLessThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and less than floating point comparison - example: [] - syntax: - content: OrderedAndLessThan = 4 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThanOrEqual - id: OrderedAndLessThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: OrderedAndLessThanOrEqual - nameWithType: Predicate.OrderedAndLessThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndLessThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndLessThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and less than or equal floating point comparison - example: [] - syntax: - content: OrderedAndLessThanOrEqual = 5 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndNotEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndNotEqual - id: OrderedAndNotEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: OrderedAndNotEqual - nameWithType: Predicate.OrderedAndNotEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.OrderedAndNotEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndNotEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and not equal floating point comparison - example: [] - syntax: - content: OrderedAndNotEqual = 6 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.Ordered - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.Ordered - id: Ordered - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: Ordered - nameWithType: Predicate.Ordered - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.Ordered - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ordered - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered floating point comparison - example: [] - syntax: - content: Ordered = 7 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.Unordered - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.Unordered - id: Unordered - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: Unordered - nameWithType: Predicate.Unordered - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.Unordered - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unordered - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered floating point comparison - example: [] - syntax: - content: Unordered = 8 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedAndEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedAndEqual - id: UnorderedAndEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnorderedAndEqual - nameWithType: Predicate.UnorderedAndEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedAndEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedAndEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered and equal floating point comparison - example: [] - syntax: - content: UnorderedAndEqual = 9 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThan - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThan - id: UnorderedOrGreaterThan - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnorderedOrGreaterThan - nameWithType: Predicate.UnorderedOrGreaterThan - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrGreaterThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or greater than floating point comparison - example: [] - syntax: - content: UnorderedOrGreaterThan = 10 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThanOrEqual - id: UnorderedOrGreaterThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnorderedOrGreaterThanOrEqual - nameWithType: Predicate.UnorderedOrGreaterThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrGreaterThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrGreaterThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 50 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or greater than or Equal floating point comparison - example: [] - syntax: - content: UnorderedOrGreaterThanOrEqual = 11 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThan - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThan - id: UnorderedOrLessThan - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnorderedOrLessThan - nameWithType: Predicate.UnorderedOrLessThan - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrLessThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 53 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or Less than floating point comparison - example: [] - syntax: - content: UnorderedOrLessThan = 12 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThanOrEqual - id: UnorderedOrLessThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnorderedOrLessThanOrEqual - nameWithType: Predicate.UnorderedOrLessThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrLessThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrLessThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or Less than or Equal floating point comparison - example: [] - syntax: - content: UnorderedOrLessThanOrEqual = 13 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrNotEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrNotEqual - id: UnorderedOrNotEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnorderedOrNotEqual - nameWithType: Predicate.UnorderedOrNotEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnorderedOrNotEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrNotEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 59 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or not equal floating point comparison - example: [] - syntax: - content: UnorderedOrNotEqual = 14 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.True - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.True - id: "True" - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: "True" - nameWithType: Predicate.True - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.True - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: "True" - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: No comparison, always returns true - example: [] - syntax: - content: True = 15 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.FirstFcmpPredicate - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.FirstFcmpPredicate - id: FirstFcmpPredicate - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: FirstFcmpPredicate - nameWithType: Predicate.FirstFcmpPredicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.FirstFcmpPredicate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstFcmpPredicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 65 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Tag for the first floating point compare predicate, all floating point predicates are greater than or equal to this value - example: [] - syntax: - content: FirstFcmpPredicate = 0 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.LastFcmpPredicate - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.LastFcmpPredicate - id: LastFcmpPredicate - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: LastFcmpPredicate - nameWithType: Predicate.LastFcmpPredicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.LastFcmpPredicate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LastFcmpPredicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 68 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Tag for the last floating point compare predicate, all floating point predicates are less than or equal to this value - example: [] - syntax: - content: LastFcmpPredicate = 15 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.BadFcmpPredicate - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.BadFcmpPredicate - id: BadFcmpPredicate - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: BadFcmpPredicate - nameWithType: Predicate.BadFcmpPredicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.BadFcmpPredicate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BadFcmpPredicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 71 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Any value greater than or equal to this is not valid for Fcmp operations - example: [] - syntax: - content: BadFcmpPredicate = 16 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.Equal - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.Equal - id: Equal - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: Equal - nameWithType: Predicate.Equal - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.Equal - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equal - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 74 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer equality comparison - example: [] - syntax: - content: Equal = 32 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.NotEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.NotEqual - id: NotEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: NotEqual - nameWithType: Predicate.NotEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.NotEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NotEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 77 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer not equal comparison - example: [] - syntax: - content: NotEqual = 33 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThan - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThan - id: UnsignedGreaterThan - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnsignedGreaterThan - nameWithType: Predicate.UnsignedGreaterThan - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedGreaterThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 80 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer unsigned greater than comparison - example: [] - syntax: - content: UnsignedGreaterThan = 34 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThanOrEqual - id: UnsignedGreaterThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnsignedGreaterThanOrEqual - nameWithType: Predicate.UnsignedGreaterThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedGreaterThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedGreaterThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 83 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer unsigned greater than or equal comparison - example: [] - syntax: - content: UnsignedGreaterThanOrEqual = 35 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThan - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThan - id: UnsignedLessThan - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnsignedLessThan - nameWithType: Predicate.UnsignedLessThan - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedLessThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 86 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer unsigned less than comparison - example: [] - syntax: - content: UnsignedLessThan = 36 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThanOrEqual - id: UnsignedLessThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: UnsignedLessThanOrEqual - nameWithType: Predicate.UnsignedLessThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.UnsignedLessThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnsignedLessThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 89 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer unsigned less than or equal comparison - example: [] - syntax: - content: UnsignedLessThanOrEqual = 37 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThan - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThan - id: SignedGreaterThan - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: SignedGreaterThan - nameWithType: Predicate.SignedGreaterThan - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedGreaterThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 92 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer signed greater than comparison - example: [] - syntax: - content: SignedGreaterThan = 38 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThanOrEqual - id: SignedGreaterThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: SignedGreaterThanOrEqual - nameWithType: Predicate.SignedGreaterThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.SignedGreaterThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedGreaterThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 95 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer signed greater than or equal comparison - example: [] - syntax: - content: SignedGreaterThanOrEqual = 39 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThan - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThan - id: SignedLessThan - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: SignedLessThan - nameWithType: Predicate.SignedLessThan - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedLessThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 98 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer signed less than comparison - example: [] - syntax: - content: SignedLessThan = 40 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThanOrEqual - id: SignedLessThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: SignedLessThanOrEqual - nameWithType: Predicate.SignedLessThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.SignedLessThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignedLessThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 101 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer signed less than or equal comparison - example: [] - syntax: - content: SignedLessThanOrEqual = 41 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.FirstIcmpPredicate - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.FirstIcmpPredicate - id: FirstIcmpPredicate - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: FirstIcmpPredicate - nameWithType: Predicate.FirstIcmpPredicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.FirstIcmpPredicate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstIcmpPredicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Tag for the first integer compare predicate, all integer predicates are greater than or equal to this value - example: [] - syntax: - content: FirstIcmpPredicate = 32 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.LastIcmpPredicate - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.LastIcmpPredicate - id: LastIcmpPredicate - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: LastIcmpPredicate - nameWithType: Predicate.LastIcmpPredicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.LastIcmpPredicate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LastIcmpPredicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 107 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Tag for the last integer compare predicate, all integer predicates are less than or equal to this value - example: [] - syntax: - content: LastIcmpPredicate = 41 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.Predicate.BadIcmpPredicate - commentId: F:Ubiquity.NET.Llvm.Instructions.Predicate.BadIcmpPredicate - id: BadIcmpPredicate - parent: Ubiquity.NET.Llvm.Instructions.Predicate - langs: - - csharp - - vb - name: BadIcmpPredicate - nameWithType: Predicate.BadIcmpPredicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate.BadIcmpPredicate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BadIcmpPredicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 110 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Any value Greater than or equal to this is not valid for cmp operations - example: [] - syntax: - content: BadIcmpPredicate = 42 - return: - type: Ubiquity.NET.Llvm.Instructions.Predicate -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: Ubiquity.NET.Llvm.Instructions.Predicate - commentId: T:Ubiquity.NET.Llvm.Instructions.Predicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Predicate.html - name: Predicate - nameWithType: Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.RealPredicate.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.RealPredicate.yml deleted file mode 100644 index c2826653a7..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.RealPredicate.yml +++ /dev/null @@ -1,544 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate - commentId: T:Ubiquity.NET.Llvm.Instructions.RealPredicate - id: RealPredicate - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.RealPredicate.False - - Ubiquity.NET.Llvm.Instructions.RealPredicate.Ordered - - Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndEqual - - Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThan - - Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThanOrEqual - - Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThan - - Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThanOrEqual - - Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndNotEqual - - Ubiquity.NET.Llvm.Instructions.RealPredicate.True - - Ubiquity.NET.Llvm.Instructions.RealPredicate.Unordered - - Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedAndEqual - - Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThan - - Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThanOrEqual - - Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThan - - Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThanOrEqual - - Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrNotEqual - langs: - - csharp - - vb - name: RealPredicate - nameWithType: RealPredicate - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RealPredicate - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 213 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Predicate enumeration for floating point comparison - remarks: >- - Floating point predicates "Ordered" means that neither operand is a QNAN - - while unordered means that either operand may be a QNAN. - example: [] - syntax: - content: public enum RealPredicate - content.vb: Public Enum RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.False - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.False - id: "False" - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: "False" - nameWithType: RealPredicate.False - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.False - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: "False" - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 216 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: No comparison, always returns floating point false - example: [] - syntax: - content: False = 0 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndEqual - id: OrderedAndEqual - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: OrderedAndEqual - nameWithType: RealPredicate.OrderedAndEqual - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 219 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and equal floating point comparison - example: [] - syntax: - content: OrderedAndEqual = 1 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThan - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThan - id: OrderedAndGreaterThan - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: OrderedAndGreaterThan - nameWithType: RealPredicate.OrderedAndGreaterThan - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndGreaterThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 222 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and greater than floating point comparison - example: [] - syntax: - content: OrderedAndGreaterThan = 2 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThanOrEqual - id: OrderedAndGreaterThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: OrderedAndGreaterThanOrEqual - nameWithType: RealPredicate.OrderedAndGreaterThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndGreaterThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndGreaterThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 225 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and greater than or equal floating point comparison - example: [] - syntax: - content: OrderedAndGreaterThanOrEqual = 3 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThan - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThan - id: OrderedAndLessThan - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: OrderedAndLessThan - nameWithType: RealPredicate.OrderedAndLessThan - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndLessThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 228 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and less than floating point comparison - example: [] - syntax: - content: OrderedAndLessThan = 4 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThanOrEqual - id: OrderedAndLessThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: OrderedAndLessThanOrEqual - nameWithType: RealPredicate.OrderedAndLessThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndLessThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndLessThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 231 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and less than or equal floating point comparison - example: [] - syntax: - content: OrderedAndLessThanOrEqual = 5 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndNotEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndNotEqual - id: OrderedAndNotEqual - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: OrderedAndNotEqual - nameWithType: RealPredicate.OrderedAndNotEqual - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.OrderedAndNotEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OrderedAndNotEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 234 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered and not equal floating point comparison - example: [] - syntax: - content: OrderedAndNotEqual = 6 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.Ordered - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.Ordered - id: Ordered - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: Ordered - nameWithType: RealPredicate.Ordered - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.Ordered - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Ordered - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 237 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Ordered floating point comparison - example: [] - syntax: - content: Ordered = 7 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.Unordered - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.Unordered - id: Unordered - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: Unordered - nameWithType: RealPredicate.Unordered - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.Unordered - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unordered - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 240 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered floating point comparison - example: [] - syntax: - content: Unordered = 8 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedAndEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedAndEqual - id: UnorderedAndEqual - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: UnorderedAndEqual - nameWithType: RealPredicate.UnorderedAndEqual - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedAndEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedAndEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 243 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered and equal floating point comparison - example: [] - syntax: - content: UnorderedAndEqual = 9 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThan - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThan - id: UnorderedOrGreaterThan - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: UnorderedOrGreaterThan - nameWithType: RealPredicate.UnorderedOrGreaterThan - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrGreaterThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 246 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or greater than floating point comparison - example: [] - syntax: - content: UnorderedOrGreaterThan = 10 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThanOrEqual - id: UnorderedOrGreaterThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: UnorderedOrGreaterThanOrEqual - nameWithType: RealPredicate.UnorderedOrGreaterThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrGreaterThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrGreaterThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 249 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or greater than or Equal floating point comparison - example: [] - syntax: - content: UnorderedOrGreaterThanOrEqual = 11 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThan - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThan - id: UnorderedOrLessThan - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: UnorderedOrLessThan - nameWithType: RealPredicate.UnorderedOrLessThan - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrLessThan - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 252 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or Less than floating point comparison - example: [] - syntax: - content: UnorderedOrLessThan = 12 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThanOrEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThanOrEqual - id: UnorderedOrLessThanOrEqual - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: UnorderedOrLessThanOrEqual - nameWithType: RealPredicate.UnorderedOrLessThanOrEqual - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrLessThanOrEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrLessThanOrEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 255 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or Less than or Equal floating point comparison - example: [] - syntax: - content: UnorderedOrLessThanOrEqual = 13 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrNotEqual - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrNotEqual - id: UnorderedOrNotEqual - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: UnorderedOrNotEqual - nameWithType: RealPredicate.UnorderedOrNotEqual - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.UnorderedOrNotEqual - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnorderedOrNotEqual - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 258 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Unordered or not equal floating point comparison - example: [] - syntax: - content: UnorderedOrNotEqual = 14 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate.True - commentId: F:Ubiquity.NET.Llvm.Instructions.RealPredicate.True - id: "True" - parent: Ubiquity.NET.Llvm.Instructions.RealPredicate - langs: - - csharp - - vb - name: "True" - nameWithType: RealPredicate.True - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate.True - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: "True" - path: ../src/Ubiquity.NET.Llvm/Instructions/Predicates.cs - startLine: 261 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: No comparison, always returns true - example: [] - syntax: - content: True = 15 - return: - type: Ubiquity.NET.Llvm.Instructions.RealPredicate -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate - commentId: T:Ubiquity.NET.Llvm.Instructions.RealPredicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.RealPredicate.html - name: RealPredicate - nameWithType: RealPredicate - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ResumeInstruction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ResumeInstruction.yml deleted file mode 100644 index e9a9fdfc2b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ResumeInstruction.yml +++ /dev/null @@ -1,952 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ResumeInstruction - id: ResumeInstruction - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: ResumeInstruction - nameWithType: ResumeInstruction - fullName: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/ResumeInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ResumeInstruction - path: ../src/Ubiquity.NET.Llvm/Instructions/ResumeInstruction.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Resume instruction - example: [] - syntax: - content: 'public sealed class ResumeInstruction : Terminator, IEquatable' - content.vb: Public NotInheritable Class ResumeInstruction Inherits Terminator Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.ResumeInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.ResumeInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.ResumeInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(ResumeInstruction, uint) - nameWithType: InstructionExtensions.SetAlignment(ResumeInstruction, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.ResumeInstruction, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of ResumeInstruction)(ResumeInstruction, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.ResumeInstruction)(Ubiquity.NET.Llvm.Instructions.ResumeInstruction, UInteger) - name.vb: SetAlignment(Of ResumeInstruction)(ResumeInstruction, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ResumeInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ResumeInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(ResumeInstruction, bool) - nameWithType: InstructionExtensions.SetIsVolatile(ResumeInstruction, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.ResumeInstruction, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of ResumeInstruction)(ResumeInstruction, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.ResumeInstruction)(Ubiquity.NET.Llvm.Instructions.ResumeInstruction, Boolean) - name.vb: SetIsVolatile(Of ResumeInstruction)(ResumeInstruction, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ResumeInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ResumeInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ResumeInstruction, string) - nameWithType: ValueExtensions.RegisterName(ResumeInstruction, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.ResumeInstruction, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ResumeInstruction)(ResumeInstruction, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.ResumeInstruction)(Ubiquity.NET.Llvm.Instructions.ResumeInstruction, String) - name.vb: RegisterName(Of ResumeInstruction)(ResumeInstruction, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ResumeInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ResumeInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ReturnInstruction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ReturnInstruction.yml deleted file mode 100644 index 66126f92fc..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ReturnInstruction.yml +++ /dev/null @@ -1,952 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ReturnInstruction - id: ReturnInstruction - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: ReturnInstruction - nameWithType: ReturnInstruction - fullName: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/ReturnInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReturnInstruction - path: ../src/Ubiquity.NET.Llvm/Instructions/ReturnInstruction.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Return instruction - example: [] - syntax: - content: 'public sealed class ReturnInstruction : Terminator, IEquatable' - content.vb: Public NotInheritable Class ReturnInstruction Inherits Terminator Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.ReturnInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.ReturnInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.ReturnInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(ReturnInstruction, uint) - nameWithType: InstructionExtensions.SetAlignment(ReturnInstruction, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.ReturnInstruction, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of ReturnInstruction)(ReturnInstruction, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.ReturnInstruction)(Ubiquity.NET.Llvm.Instructions.ReturnInstruction, UInteger) - name.vb: SetAlignment(Of ReturnInstruction)(ReturnInstruction, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ReturnInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ReturnInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(ReturnInstruction, bool) - nameWithType: InstructionExtensions.SetIsVolatile(ReturnInstruction, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.ReturnInstruction, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of ReturnInstruction)(ReturnInstruction, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.ReturnInstruction)(Ubiquity.NET.Llvm.Instructions.ReturnInstruction, Boolean) - name.vb: SetIsVolatile(Of ReturnInstruction)(ReturnInstruction, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ReturnInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ReturnInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ReturnInstruction, string) - nameWithType: ValueExtensions.RegisterName(ReturnInstruction, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.ReturnInstruction, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ReturnInstruction)(ReturnInstruction, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.ReturnInstruction)(Ubiquity.NET.Llvm.Instructions.ReturnInstruction, String) - name.vb: RegisterName(Of ReturnInstruction)(ReturnInstruction, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ReturnInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ReturnInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SIToFP.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SIToFP.yml deleted file mode 100644 index 0427394eb9..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SIToFP.yml +++ /dev/null @@ -1,976 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.SIToFP - commentId: T:Ubiquity.NET.Llvm.Instructions.SIToFP - id: SIToFP - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: SIToFP - nameWithType: SIToFP - fullName: Ubiquity.NET.Llvm.Instructions.SIToFP - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/SIToFP.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SIToFP - path: ../src/Ubiquity.NET.Llvm/Instructions/SIToFP.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction for converting a signed integer value into a floating point value - example: [] - syntax: - content: 'public sealed class SIToFP : Cast, IEquatable' - content.vb: Public NotInheritable Class SIToFP Inherits Cast Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.SIToFP.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.SIToFP.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.SIToFP.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SIToFP.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(SIToFP, uint) - nameWithType: InstructionExtensions.SetAlignment(SIToFP, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.SIToFP, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of SIToFP)(SIToFP, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.SIToFP)(Ubiquity.NET.Llvm.Instructions.SIToFP, UInteger) - name.vb: SetAlignment(Of SIToFP)(SIToFP, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.SIToFP,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.SIToFP,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SIToFP.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(SIToFP, bool) - nameWithType: InstructionExtensions.SetIsVolatile(SIToFP, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.SIToFP, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of SIToFP)(SIToFP, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.SIToFP)(Ubiquity.NET.Llvm.Instructions.SIToFP, Boolean) - name.vb: SetIsVolatile(Of SIToFP)(SIToFP, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.SIToFP,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.SIToFP,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SIToFP.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(SIToFP, string) - nameWithType: ValueExtensions.RegisterName(SIToFP, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.SIToFP, string) - nameWithType.vb: ValueExtensions.RegisterName(Of SIToFP)(SIToFP, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.SIToFP)(Ubiquity.NET.Llvm.Instructions.SIToFP, String) - name.vb: RegisterName(Of SIToFP)(SIToFP, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.SIToFP,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.SIToFP,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SelectInstruction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SelectInstruction.yml deleted file mode 100644 index 5d263a6321..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SelectInstruction.yml +++ /dev/null @@ -1,944 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.SelectInstruction - id: SelectInstruction - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: SelectInstruction - nameWithType: SelectInstruction - fullName: Ubiquity.NET.Llvm.Instructions.SelectInstruction - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/SelectInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SelectInstruction - path: ../src/Ubiquity.NET.Llvm/Instructions/SelectInstruction.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Select instruction - example: [] - syntax: - content: 'public sealed class SelectInstruction : Instruction, IEquatable' - content.vb: Public NotInheritable Class SelectInstruction Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.SelectInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.SelectInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.SelectInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(SelectInstruction, uint) - nameWithType: InstructionExtensions.SetAlignment(SelectInstruction, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.SelectInstruction, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of SelectInstruction)(SelectInstruction, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.SelectInstruction)(Ubiquity.NET.Llvm.Instructions.SelectInstruction, UInteger) - name.vb: SetAlignment(Of SelectInstruction)(SelectInstruction, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.SelectInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.SelectInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(SelectInstruction, bool) - nameWithType: InstructionExtensions.SetIsVolatile(SelectInstruction, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.SelectInstruction, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of SelectInstruction)(SelectInstruction, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.SelectInstruction)(Ubiquity.NET.Llvm.Instructions.SelectInstruction, Boolean) - name.vb: SetIsVolatile(Of SelectInstruction)(SelectInstruction, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.SelectInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.SelectInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(SelectInstruction, string) - nameWithType: ValueExtensions.RegisterName(SelectInstruction, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.SelectInstruction, string) - nameWithType.vb: ValueExtensions.RegisterName(Of SelectInstruction)(SelectInstruction, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.SelectInstruction)(Ubiquity.NET.Llvm.Instructions.SelectInstruction, String) - name.vb: RegisterName(Of SelectInstruction)(SelectInstruction, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.SelectInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.SelectInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ShuffleVector.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ShuffleVector.yml deleted file mode 100644 index f0aeaf3147..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ShuffleVector.yml +++ /dev/null @@ -1,944 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - commentId: T:Ubiquity.NET.Llvm.Instructions.ShuffleVector - id: ShuffleVector - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: ShuffleVector - nameWithType: ShuffleVector - fullName: Ubiquity.NET.Llvm.Instructions.ShuffleVector - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/ShuffleVector.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ShuffleVector - path: ../src/Ubiquity.NET.Llvm/Instructions/ShuffleVector.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to shuffle the elements of a vector - example: [] - syntax: - content: 'public sealed class ShuffleVector : Instruction, IEquatable' - content.vb: Public NotInheritable Class ShuffleVector Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.ShuffleVector.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.ShuffleVector.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.ShuffleVector.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(ShuffleVector, uint) - nameWithType: InstructionExtensions.SetAlignment(ShuffleVector, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.ShuffleVector, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of ShuffleVector)(ShuffleVector, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.ShuffleVector)(Ubiquity.NET.Llvm.Instructions.ShuffleVector, UInteger) - name.vb: SetAlignment(Of ShuffleVector)(ShuffleVector, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ShuffleVector,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ShuffleVector,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(ShuffleVector, bool) - nameWithType: InstructionExtensions.SetIsVolatile(ShuffleVector, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.ShuffleVector, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of ShuffleVector)(ShuffleVector, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.ShuffleVector)(Ubiquity.NET.Llvm.Instructions.ShuffleVector, Boolean) - name.vb: SetIsVolatile(Of ShuffleVector)(ShuffleVector, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ShuffleVector,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ShuffleVector,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ShuffleVector, string) - nameWithType: ValueExtensions.RegisterName(ShuffleVector, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.ShuffleVector, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ShuffleVector)(ShuffleVector, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.ShuffleVector)(Ubiquity.NET.Llvm.Instructions.ShuffleVector, String) - name.vb: RegisterName(Of ShuffleVector)(ShuffleVector, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ShuffleVector,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ShuffleVector,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SignExtend.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SignExtend.yml deleted file mode 100644 index 3b0d4f8203..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SignExtend.yml +++ /dev/null @@ -1,976 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.SignExtend - commentId: T:Ubiquity.NET.Llvm.Instructions.SignExtend - id: SignExtend - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: SignExtend - nameWithType: SignExtend - fullName: Ubiquity.NET.Llvm.Instructions.SignExtend - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/SignExtend.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignExtend - path: ../src/Ubiquity.NET.Llvm/Instructions/SignExtend.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Sign extension instruction - example: [] - syntax: - content: 'public sealed class SignExtend : Cast, IEquatable' - content.vb: Public NotInheritable Class SignExtend Inherits Cast Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.SignExtend.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.SignExtend.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.SignExtend.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SignExtend.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(SignExtend, uint) - nameWithType: InstructionExtensions.SetAlignment(SignExtend, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.SignExtend, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of SignExtend)(SignExtend, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.SignExtend)(Ubiquity.NET.Llvm.Instructions.SignExtend, UInteger) - name.vb: SetAlignment(Of SignExtend)(SignExtend, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.SignExtend,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.SignExtend,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SignExtend.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(SignExtend, bool) - nameWithType: InstructionExtensions.SetIsVolatile(SignExtend, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.SignExtend, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of SignExtend)(SignExtend, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.SignExtend)(Ubiquity.NET.Llvm.Instructions.SignExtend, Boolean) - name.vb: SetIsVolatile(Of SignExtend)(SignExtend, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.SignExtend,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.SignExtend,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SignExtend.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(SignExtend, string) - nameWithType: ValueExtensions.RegisterName(SignExtend, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.SignExtend, string) - nameWithType.vb: ValueExtensions.RegisterName(Of SignExtend)(SignExtend, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.SignExtend)(Ubiquity.NET.Llvm.Instructions.SignExtend, String) - name.vb: RegisterName(Of SignExtend)(SignExtend, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.SignExtend,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.SignExtend,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Store.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Store.yml deleted file mode 100644 index 98b1f6af68..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Store.yml +++ /dev/null @@ -1,993 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Store - commentId: T:Ubiquity.NET.Llvm.Instructions.Store - id: Store - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Store.IsVolatile - langs: - - csharp - - vb - name: Store - nameWithType: Store - fullName: Ubiquity.NET.Llvm.Instructions.Store - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Store.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Store - path: ../src/Ubiquity.NET.Llvm/Instructions/Store.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to store a value to memory - example: [] - syntax: - content: 'public sealed class Store : Instruction, IEquatable' - content.vb: Public NotInheritable Class Store Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Store.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Store.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Store.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Store.IsVolatile - commentId: P:Ubiquity.NET.Llvm.Instructions.Store.IsVolatile - id: IsVolatile - parent: Ubiquity.NET.Llvm.Instructions.Store - langs: - - csharp - - vb - name: IsVolatile - nameWithType: Store.IsVolatile - fullName: Ubiquity.NET.Llvm.Instructions.Store.IsVolatile - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Store.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsVolatile - path: ../src/Ubiquity.NET.Llvm/Instructions/Store.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets a value indicating whether the store is volatile - example: [] - syntax: - content: public bool IsVolatile { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property IsVolatile As Boolean - overload: Ubiquity.NET.Llvm.Instructions.Store.IsVolatile* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Store.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Store, uint) - nameWithType: InstructionExtensions.SetAlignment(Store, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Store, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Store)(Store, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Store)(Ubiquity.NET.Llvm.Instructions.Store, UInteger) - name.vb: SetAlignment(Of Store)(Store, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Store,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Store,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Store.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Store, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Store, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Store, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Store)(Store, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Store)(Ubiquity.NET.Llvm.Instructions.Store, Boolean) - name.vb: SetIsVolatile(Of Store)(Store, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Store,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Store,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Store.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Store, string) - nameWithType: ValueExtensions.RegisterName(Store, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Store, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Store)(Store, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Store)(Ubiquity.NET.Llvm.Instructions.Store, String) - name.vb: RegisterName(Of Store)(Store, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Store,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Store,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - href: Ubiquity.NET.Llvm.Instructions.Store.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Instructions.Store.IsVolatile* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Store.IsVolatile - href: Ubiquity.NET.Llvm.Instructions.Store.html#Ubiquity_NET_Llvm_Instructions_Store_IsVolatile - name: IsVolatile - nameWithType: Store.IsVolatile - fullName: Ubiquity.NET.Llvm.Instructions.Store.IsVolatile -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.yml deleted file mode 100644 index b3172b2821..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.yml +++ /dev/null @@ -1,1058 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - commentId: T:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - id: SuccessorBlockCollection - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count - - Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator - - Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Item(System.Int32) - langs: - - csharp - - vb - name: SuccessorBlockCollection - nameWithType: SuccessorBlockCollection - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SuccessorBlockCollection - path: ../src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Support class to provide read/update semantics for the successor blocks of an instruction - remarks: >- - This class is used to implement Operand lists of elements including sub lists based on an offset. - - The latter case is useful for types that expose some fixed set of operands as properties and some - - arbitrary number of additional items as operands. - example: [] - syntax: - content: 'public sealed class SuccessorBlockCollection : IOperandCollection, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public NotInheritable Class SuccessorBlockCollection Implements IOperandCollection(Of BasicBlock), IReadOnlyCollection(Of BasicBlock), IEnumerable(Of BasicBlock), IEnumerable - inheritance: - - System.Object - implements: - - Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock} - - System.Collections.IEnumerable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Item(System.Int32) - id: Item(System.Int32) - parent: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - langs: - - csharp - - vb - name: this[int] - nameWithType: SuccessorBlockCollection.this[int] - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.this[int] - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: this[] - path: ../src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets or sets the specified element in the collection - example: [] - syntax: - content: public BasicBlock this[int index] { get; set; } - parameters: - - id: index - type: System.Int32 - description: index of the element in the collection - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: The element in the collection - content.vb: Public Default Property this[](index As Integer) As BasicBlock - overload: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Item* - implements: - - Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Item(System.Int32) - nameWithType.vb: SuccessorBlockCollection.this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.this[](Integer) - name.vb: this[](Integer) -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count - commentId: P:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count - id: Count - parent: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - langs: - - csharp - - vb - name: Count - nameWithType: SuccessorBlockCollection.Count - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Count - path: ../src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the count of elements in this collection - example: [] - syntax: - content: public int Count { get; } - parameters: [] - return: - type: System.Int32 - content.vb: Public ReadOnly Property Count As Integer - overload: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count* - implements: - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Count -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator - id: GetEnumerator - parent: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - langs: - - csharp - - vb - name: GetEnumerator() - nameWithType: SuccessorBlockCollection.GetEnumerator() - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetEnumerator - path: ../src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets an enumerator for the s in this collection - example: [] - syntax: - content: public IEnumerator GetEnumerator() - return: - type: System.Collections.Generic.IEnumerator{Ubiquity.NET.Llvm.Values.BasicBlock} - description: Enumerator for the collection - content.vb: Public Function GetEnumerator() As IEnumerator(Of BasicBlock) - overload: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator* - implements: - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock}.GetEnumerator -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - id: Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - langs: - - csharp - - vb - name: Contains(BasicBlock) - nameWithType: SuccessorBlockCollection.Contains(BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Contains - path: ../src/Ubiquity.NET.Llvm/Instructions/SuccessorBlockCollection.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets a value indicating whether the collection contains the specified item or not - example: [] - syntax: - content: public bool Contains(BasicBlock item) - parameters: - - id: item - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Item to look for - return: - type: System.Boolean - description: true if the item is found - content.vb: Public Function Contains(item As BasicBlock) As Boolean - overload: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains* - implements: - - Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - commentId: T:Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - parent: Ubiquity.NET.Llvm - definition: Ubiquity.NET.Llvm.IOperandCollection`1 - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of BasicBlock) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: IOperandCollection(Of BasicBlock) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of BasicBlock) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: IReadOnlyCollection(Of BasicBlock) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of BasicBlock) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: IEnumerable(Of BasicBlock) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.IOperandCollection`1 - commentId: T:Ubiquity.NET.Llvm.IOperandCollection`1 - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Item* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Item - href: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.html#Ubiquity_NET_Llvm_Instructions_SuccessorBlockCollection_Item_System_Int32_ - name: this - nameWithType: SuccessorBlockCollection.this - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.this - nameWithType.vb: SuccessorBlockCollection.this[] - fullName.vb: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.this[] - name.vb: this[] -- uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - definition: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: IOperandCollection.this[int] - fullName: Ubiquity.NET.Llvm.IOperandCollection.this[int] - nameWithType.vb: IOperandCollection(Of BasicBlock).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of Ubiquity.NET.Llvm.Values.BasicBlock).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: IOperandCollection.this[int] - fullName: Ubiquity.NET.Llvm.IOperandCollection.this[int] - nameWithType.vb: IOperandCollection(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count - href: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.html#Ubiquity_NET_Llvm_Instructions_SuccessorBlockCollection_Count - name: Count - nameWithType: SuccessorBlockCollection.Count - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Count -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Count - parent: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - definition: System.Collections.Generic.IReadOnlyCollection`1.Count - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of BasicBlock).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.Values.BasicBlock).Count -- uid: System.Collections.Generic.IReadOnlyCollection`1.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection`1.Count - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator - href: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.html#Ubiquity_NET_Llvm_Instructions_SuccessorBlockCollection_GetEnumerator - name: GetEnumerator - nameWithType: SuccessorBlockCollection.GetEnumerator - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.GetEnumerator -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock}.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock}.GetEnumerator - parent: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock} - definition: System.Collections.Generic.IEnumerable`1.GetEnumerator - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of BasicBlock).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.BasicBlock).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.BasicBlock}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerator{Ubiquity.NET.Llvm.Values.BasicBlock} - commentId: T:System.Collections.Generic.IEnumerator{Ubiquity.NET.Llvm.Values.BasicBlock} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerator`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - name: IEnumerator - nameWithType: IEnumerator - fullName: System.Collections.Generic.IEnumerator - nameWithType.vb: IEnumerator(Of BasicBlock) - fullName.vb: System.Collections.Generic.IEnumerator(Of Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: IEnumerator(Of BasicBlock) - spec.csharp: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable`1.GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerator`1 - commentId: T:System.Collections.Generic.IEnumerator`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - name: IEnumerator - nameWithType: IEnumerator - fullName: System.Collections.Generic.IEnumerator - nameWithType.vb: IEnumerator(Of T) - fullName.vb: System.Collections.Generic.IEnumerator(Of T) - name.vb: IEnumerator(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains - href: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.html#Ubiquity_NET_Llvm_Instructions_SuccessorBlockCollection_Contains_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: Contains - nameWithType: SuccessorBlockCollection.Contains - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.Contains -- uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock} - definition: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - name: Contains(BasicBlock) - nameWithType: IOperandCollection.Contains(BasicBlock) - fullName: Ubiquity.NET.Llvm.IOperandCollection.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - nameWithType.vb: IOperandCollection(Of BasicBlock).Contains(BasicBlock) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of Ubiquity.NET.Llvm.Values.BasicBlock).Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Values.BasicBlock}.Contains(Ubiquity.NET.Llvm.Values.BasicBlock) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - commentId: M:Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - name: Contains(T) - nameWithType: IOperandCollection.Contains(T) - fullName: Ubiquity.NET.Llvm.IOperandCollection.Contains(T) - nameWithType.vb: IOperandCollection(Of T).Contains(T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).Contains(T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - name: T - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Switch.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Switch.yml deleted file mode 100644 index ee6e28b198..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Switch.yml +++ /dev/null @@ -1,1046 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Switch - commentId: T:Ubiquity.NET.Llvm.Instructions.Switch - id: Switch - parent: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Instructions.Switch.Default - langs: - - csharp - - vb - name: Switch - nameWithType: Switch - fullName: Ubiquity.NET.Llvm.Instructions.Switch - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Switch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Switch - path: ../src/Ubiquity.NET.Llvm/Instructions/Switch.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Switch instruction - example: [] - syntax: - content: 'public sealed class Switch : Terminator, IEquatable' - content.vb: Public NotInheritable Class Switch Inherits Terminator Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Switch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Switch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Switch.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Instructions.Switch.Default - commentId: P:Ubiquity.NET.Llvm.Instructions.Switch.Default - id: Default - parent: Ubiquity.NET.Llvm.Instructions.Switch - langs: - - csharp - - vb - name: Default - nameWithType: Switch.Default - fullName: Ubiquity.NET.Llvm.Instructions.Switch.Default - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Switch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Default - path: ../src/Ubiquity.NET.Llvm/Instructions/Switch.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Gets the default for the switch - example: [] - syntax: - content: public BasicBlock Default { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - content.vb: Public ReadOnly Property [Default] As BasicBlock - overload: Ubiquity.NET.Llvm.Instructions.Switch.Default* -- uid: Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - id: AddCase(Ubiquity.NET.Llvm.Values.Value,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Instructions.Switch - langs: - - csharp - - vb - name: AddCase(Value, BasicBlock) - nameWithType: Switch.AddCase(Value, BasicBlock) - fullName: Ubiquity.NET.Llvm.Instructions.Switch.AddCase(Ubiquity.NET.Llvm.Values.Value, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Switch.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddCase - path: ../src/Ubiquity.NET.Llvm/Instructions/Switch.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Adds a new case to the instruction - example: [] - syntax: - content: public void AddCase(Value onVal, BasicBlock destination) - parameters: - - id: onVal - type: Ubiquity.NET.Llvm.Values.Value - description: Value for the case to match - - id: destination - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Destination if the case matches - content.vb: Public Sub AddCase(onVal As Value, destination As BasicBlock) - overload: Ubiquity.NET.Llvm.Instructions.Switch.AddCase* -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Switch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Switch, uint) - nameWithType: InstructionExtensions.SetAlignment(Switch, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Switch, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Switch)(Switch, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Switch)(Ubiquity.NET.Llvm.Instructions.Switch, UInteger) - name.vb: SetAlignment(Of Switch)(Switch, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Switch,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Switch,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Switch.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Switch, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Switch, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Switch, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Switch)(Switch, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Switch)(Ubiquity.NET.Llvm.Instructions.Switch, Boolean) - name.vb: SetIsVolatile(Of Switch)(Switch, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Switch,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Switch,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Switch.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Switch, string) - nameWithType: ValueExtensions.RegisterName(Switch, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Switch, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Switch)(Switch, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Switch)(Ubiquity.NET.Llvm.Instructions.Switch, String) - name.vb: RegisterName(Of Switch)(Switch, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Switch,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Switch,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - href: Ubiquity.NET.Llvm.Instructions.Switch.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Instructions.Switch.Default* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Switch.Default - href: Ubiquity.NET.Llvm.Instructions.Switch.html#Ubiquity_NET_Llvm_Instructions_Switch_Default - name: Default - nameWithType: Switch.Default - fullName: Ubiquity.NET.Llvm.Instructions.Switch.Default -- uid: Ubiquity.NET.Llvm.Instructions.Switch - commentId: T:Ubiquity.NET.Llvm.Instructions.Switch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Switch.html - name: Switch - nameWithType: Switch - fullName: Ubiquity.NET.Llvm.Instructions.Switch -- uid: Ubiquity.NET.Llvm.Instructions.Switch.AddCase* - commentId: Overload:Ubiquity.NET.Llvm.Instructions.Switch.AddCase - href: Ubiquity.NET.Llvm.Instructions.Switch.html#Ubiquity_NET_Llvm_Instructions_Switch_AddCase_Ubiquity_NET_Llvm_Values_Value_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: AddCase - nameWithType: Switch.AddCase - fullName: Ubiquity.NET.Llvm.Instructions.Switch.AddCase diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Terminator.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Terminator.yml deleted file mode 100644 index f646392c79..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Terminator.yml +++ /dev/null @@ -1,979 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - id: Terminator - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Terminator.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Terminator - path: ../src/Ubiquity.NET.Llvm/Instructions/Terminator.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Base class for all terminator instructions - example: [] - syntax: - content: 'public class Terminator : Instruction, IEquatable' - content.vb: Public Class Terminator Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.Branch - - Ubiquity.NET.Llvm.Instructions.CatchReturn - - Ubiquity.NET.Llvm.Instructions.CleanupReturn - - Ubiquity.NET.Llvm.Instructions.IndirectBranch - - Ubiquity.NET.Llvm.Instructions.Invoke - - Ubiquity.NET.Llvm.Instructions.ResumeInstruction - - Ubiquity.NET.Llvm.Instructions.ReturnInstruction - - Ubiquity.NET.Llvm.Instructions.Switch - - Ubiquity.NET.Llvm.Instructions.Unreachable - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Terminator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Terminator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Terminator.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Terminator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Terminator, uint) - nameWithType: InstructionExtensions.SetAlignment(Terminator, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Terminator, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Terminator)(Terminator, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Terminator)(Ubiquity.NET.Llvm.Instructions.Terminator, UInteger) - name.vb: SetAlignment(Of Terminator)(Terminator, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Terminator,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Terminator,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Terminator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Terminator, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Terminator, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Terminator, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Terminator)(Terminator, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Terminator)(Ubiquity.NET.Llvm.Instructions.Terminator, Boolean) - name.vb: SetIsVolatile(Of Terminator)(Terminator, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Terminator,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Terminator,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Terminator.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Terminator, string) - nameWithType: ValueExtensions.RegisterName(Terminator, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Terminator, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Terminator)(Terminator, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Terminator)(Ubiquity.NET.Llvm.Instructions.Terminator, String) - name.vb: RegisterName(Of Terminator)(Terminator, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Terminator,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Terminator,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Trunc.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Trunc.yml deleted file mode 100644 index bc60b94e54..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Trunc.yml +++ /dev/null @@ -1,976 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Trunc - commentId: T:Ubiquity.NET.Llvm.Instructions.Trunc - id: Trunc - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: Trunc - nameWithType: Trunc - fullName: Ubiquity.NET.Llvm.Instructions.Trunc - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Trunc.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Trunc - path: ../src/Ubiquity.NET.Llvm/Instructions/Trunc.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Integer truncate instruction - example: [] - syntax: - content: 'public sealed class Trunc : Cast, IEquatable' - content.vb: Public NotInheritable Class Trunc Inherits Cast Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Trunc.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Trunc.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Trunc.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Trunc.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Trunc, uint) - nameWithType: InstructionExtensions.SetAlignment(Trunc, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Trunc, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Trunc)(Trunc, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Trunc)(Ubiquity.NET.Llvm.Instructions.Trunc, UInteger) - name.vb: SetAlignment(Of Trunc)(Trunc, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Trunc,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Trunc,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Trunc.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Trunc, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Trunc, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Trunc, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Trunc)(Trunc, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Trunc)(Ubiquity.NET.Llvm.Instructions.Trunc, Boolean) - name.vb: SetIsVolatile(Of Trunc)(Trunc, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Trunc,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Trunc,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Trunc.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Trunc, string) - nameWithType: ValueExtensions.RegisterName(Trunc, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Trunc, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Trunc)(Trunc, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Trunc)(Ubiquity.NET.Llvm.Instructions.Trunc, String) - name.vb: RegisterName(Of Trunc)(Trunc, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Trunc,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Trunc,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UIToFP.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UIToFP.yml deleted file mode 100644 index e34af26ea4..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UIToFP.yml +++ /dev/null @@ -1,976 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.UIToFP - commentId: T:Ubiquity.NET.Llvm.Instructions.UIToFP - id: UIToFP - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: UIToFP - nameWithType: UIToFP - fullName: Ubiquity.NET.Llvm.Instructions.UIToFP - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/UIToFP.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UIToFP - path: ../src/Ubiquity.NET.Llvm/Instructions/UIToFP.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to cast an unsigned integer to a float - example: [] - syntax: - content: 'public sealed class UIToFP : Cast, IEquatable' - content.vb: Public NotInheritable Class UIToFP Inherits Cast Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.UIToFP.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.UIToFP.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.UIToFP.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UIToFP.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(UIToFP, uint) - nameWithType: InstructionExtensions.SetAlignment(UIToFP, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.UIToFP, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of UIToFP)(UIToFP, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.UIToFP)(Ubiquity.NET.Llvm.Instructions.UIToFP, UInteger) - name.vb: SetAlignment(Of UIToFP)(UIToFP, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UIToFP,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UIToFP,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UIToFP.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(UIToFP, bool) - nameWithType: InstructionExtensions.SetIsVolatile(UIToFP, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.UIToFP, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of UIToFP)(UIToFP, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.UIToFP)(Ubiquity.NET.Llvm.Instructions.UIToFP, Boolean) - name.vb: SetIsVolatile(Of UIToFP)(UIToFP, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UIToFP,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UIToFP,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UIToFP.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(UIToFP, string) - nameWithType: ValueExtensions.RegisterName(UIToFP, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.UIToFP, string) - nameWithType.vb: ValueExtensions.RegisterName(Of UIToFP)(UIToFP, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.UIToFP)(Ubiquity.NET.Llvm.Instructions.UIToFP, String) - name.vb: RegisterName(Of UIToFP)(UIToFP, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UIToFP,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UIToFP,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UnaryInstruction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UnaryInstruction.yml deleted file mode 100644 index ad517d97c1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UnaryInstruction.yml +++ /dev/null @@ -1,976 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - id: UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/UnaryInstruction.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnaryInstruction - path: ../src/Ubiquity.NET.Llvm/Instructions/UnaryInstruction.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Base class for unary operator instructions - example: [] - syntax: - content: 'public class UnaryInstruction : Instruction, IEquatable' - content.vb: Public Class UnaryInstruction Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.Alloca - - Ubiquity.NET.Llvm.Instructions.Cast - - Ubiquity.NET.Llvm.Instructions.ExtractValue - - Ubiquity.NET.Llvm.Instructions.Freeze - - Ubiquity.NET.Llvm.Instructions.Load - - Ubiquity.NET.Llvm.Instructions.VaArg - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(UnaryInstruction, uint) - nameWithType: InstructionExtensions.SetAlignment(UnaryInstruction, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.UnaryInstruction, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of UnaryInstruction)(UnaryInstruction, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.UnaryInstruction)(Ubiquity.NET.Llvm.Instructions.UnaryInstruction, UInteger) - name.vb: SetAlignment(Of UnaryInstruction)(UnaryInstruction, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UnaryInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UnaryInstruction,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(UnaryInstruction, bool) - nameWithType: InstructionExtensions.SetIsVolatile(UnaryInstruction, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.UnaryInstruction, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of UnaryInstruction)(UnaryInstruction, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.UnaryInstruction)(Ubiquity.NET.Llvm.Instructions.UnaryInstruction, Boolean) - name.vb: SetIsVolatile(Of UnaryInstruction)(UnaryInstruction, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UnaryInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UnaryInstruction,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(UnaryInstruction, string) - nameWithType: ValueExtensions.RegisterName(UnaryInstruction, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.UnaryInstruction, string) - nameWithType.vb: ValueExtensions.RegisterName(Of UnaryInstruction)(UnaryInstruction, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.UnaryInstruction)(Ubiquity.NET.Llvm.Instructions.UnaryInstruction, String) - name.vb: RegisterName(Of UnaryInstruction)(UnaryInstruction, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UnaryInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UnaryInstruction,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UnaryOperator.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UnaryOperator.yml deleted file mode 100644 index 9b4da5982e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UnaryOperator.yml +++ /dev/null @@ -1,944 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryOperator - id: UnaryOperator - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: UnaryOperator - nameWithType: UnaryOperator - fullName: Ubiquity.NET.Llvm.Instructions.UnaryOperator - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/UnaryOperator.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnaryOperator - path: ../src/Ubiquity.NET.Llvm/Instructions/UnaryOperator.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Base class for a unary operator - example: [] - syntax: - content: 'public sealed class UnaryOperator : Instruction, IEquatable' - content.vb: Public NotInheritable Class UnaryOperator Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.UnaryOperator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.UnaryOperator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.UnaryOperator.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(UnaryOperator, uint) - nameWithType: InstructionExtensions.SetAlignment(UnaryOperator, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.UnaryOperator, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of UnaryOperator)(UnaryOperator, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.UnaryOperator)(Ubiquity.NET.Llvm.Instructions.UnaryOperator, UInteger) - name.vb: SetAlignment(Of UnaryOperator)(UnaryOperator, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UnaryOperator,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UnaryOperator,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(UnaryOperator, bool) - nameWithType: InstructionExtensions.SetIsVolatile(UnaryOperator, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.UnaryOperator, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of UnaryOperator)(UnaryOperator, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.UnaryOperator)(Ubiquity.NET.Llvm.Instructions.UnaryOperator, Boolean) - name.vb: SetIsVolatile(Of UnaryOperator)(UnaryOperator, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UnaryOperator,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UnaryOperator,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(UnaryOperator, string) - nameWithType: ValueExtensions.RegisterName(UnaryOperator, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.UnaryOperator, string) - nameWithType.vb: ValueExtensions.RegisterName(Of UnaryOperator)(UnaryOperator, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.UnaryOperator)(Ubiquity.NET.Llvm.Instructions.UnaryOperator, String) - name.vb: RegisterName(Of UnaryOperator)(UnaryOperator, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UnaryOperator,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UnaryOperator,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Unreachable.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Unreachable.yml deleted file mode 100644 index a63b01dc33..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.Unreachable.yml +++ /dev/null @@ -1,952 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.Unreachable - commentId: T:Ubiquity.NET.Llvm.Instructions.Unreachable - id: Unreachable - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: Unreachable - nameWithType: Unreachable - fullName: Ubiquity.NET.Llvm.Instructions.Unreachable - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/Unreachable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unreachable - path: ../src/Ubiquity.NET.Llvm/Instructions/Unreachable.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to indicate an unreachable location - example: [] - syntax: - content: 'public sealed class Unreachable : Terminator, IEquatable' - content.vb: Public NotInheritable Class Unreachable Inherits Terminator Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.Terminator - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.Unreachable.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.Unreachable.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.Unreachable.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Unreachable.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(Unreachable, uint) - nameWithType: InstructionExtensions.SetAlignment(Unreachable, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.Unreachable, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of Unreachable)(Unreachable, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.Unreachable)(Ubiquity.NET.Llvm.Instructions.Unreachable, UInteger) - name.vb: SetAlignment(Of Unreachable)(Unreachable, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Unreachable,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.Unreachable,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Unreachable.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(Unreachable, bool) - nameWithType: InstructionExtensions.SetIsVolatile(Unreachable, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.Unreachable, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of Unreachable)(Unreachable, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.Unreachable)(Ubiquity.NET.Llvm.Instructions.Unreachable, Boolean) - name.vb: SetIsVolatile(Of Unreachable)(Unreachable, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Unreachable,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.Unreachable,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Unreachable.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Unreachable, string) - nameWithType: ValueExtensions.RegisterName(Unreachable, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.Unreachable, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Unreachable)(Unreachable, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.Unreachable)(Ubiquity.NET.Llvm.Instructions.Unreachable, String) - name.vb: RegisterName(Of Unreachable)(Unreachable, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Unreachable,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.Unreachable,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UserOp1.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UserOp1.yml deleted file mode 100644 index 97da027e26..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UserOp1.yml +++ /dev/null @@ -1,944 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - commentId: T:Ubiquity.NET.Llvm.Instructions.UserOp1 - id: UserOp1 - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: UserOp1 - nameWithType: UserOp1 - fullName: Ubiquity.NET.Llvm.Instructions.UserOp1 - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/UserOp1.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UserOp1 - path: ../src/Ubiquity.NET.Llvm/Instructions/UserOp1.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Custom operator that can be used in LLVM transform passes but should be removed before target instruction selection - example: [] - syntax: - content: 'public sealed class UserOp1 : Instruction, IEquatable' - content.vb: Public NotInheritable Class UserOp1 Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.UserOp1.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.UserOp1.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.UserOp1.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UserOp1.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(UserOp1, uint) - nameWithType: InstructionExtensions.SetAlignment(UserOp1, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.UserOp1, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of UserOp1)(UserOp1, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.UserOp1)(Ubiquity.NET.Llvm.Instructions.UserOp1, UInteger) - name.vb: SetAlignment(Of UserOp1)(UserOp1, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UserOp1,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UserOp1,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UserOp1.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(UserOp1, bool) - nameWithType: InstructionExtensions.SetIsVolatile(UserOp1, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.UserOp1, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of UserOp1)(UserOp1, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.UserOp1)(Ubiquity.NET.Llvm.Instructions.UserOp1, Boolean) - name.vb: SetIsVolatile(Of UserOp1)(UserOp1, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UserOp1,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UserOp1,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UserOp1.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(UserOp1, string) - nameWithType: ValueExtensions.RegisterName(UserOp1, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.UserOp1, string) - nameWithType.vb: ValueExtensions.RegisterName(Of UserOp1)(UserOp1, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.UserOp1)(Ubiquity.NET.Llvm.Instructions.UserOp1, String) - name.vb: RegisterName(Of UserOp1)(UserOp1, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UserOp1,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UserOp1,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UserOp2.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UserOp2.yml deleted file mode 100644 index 51017a4c6b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.UserOp2.yml +++ /dev/null @@ -1,944 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - commentId: T:Ubiquity.NET.Llvm.Instructions.UserOp2 - id: UserOp2 - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: UserOp2 - nameWithType: UserOp2 - fullName: Ubiquity.NET.Llvm.Instructions.UserOp2 - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/UserOp2.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UserOp2 - path: ../src/Ubiquity.NET.Llvm/Instructions/UserOp2.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Custom operator that can be used in LLVM transform passes but should be removed before target instruction selection - example: [] - syntax: - content: 'public sealed class UserOp2 : Instruction, IEquatable' - content.vb: Public NotInheritable Class UserOp2 Inherits Instruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.UserOp2.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.UserOp2.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.UserOp2.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UserOp2.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(UserOp2, uint) - nameWithType: InstructionExtensions.SetAlignment(UserOp2, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.UserOp2, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of UserOp2)(UserOp2, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.UserOp2)(Ubiquity.NET.Llvm.Instructions.UserOp2, UInteger) - name.vb: SetAlignment(Of UserOp2)(UserOp2, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UserOp2,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.UserOp2,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UserOp2.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(UserOp2, bool) - nameWithType: InstructionExtensions.SetIsVolatile(UserOp2, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.UserOp2, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of UserOp2)(UserOp2, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.UserOp2)(Ubiquity.NET.Llvm.Instructions.UserOp2, Boolean) - name.vb: SetIsVolatile(Of UserOp2)(UserOp2, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UserOp2,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.UserOp2,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.UserOp2.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(UserOp2, string) - nameWithType: ValueExtensions.RegisterName(UserOp2, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.UserOp2, string) - nameWithType.vb: ValueExtensions.RegisterName(Of UserOp2)(UserOp2, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.UserOp2)(Ubiquity.NET.Llvm.Instructions.UserOp2, String) - name.vb: RegisterName(Of UserOp2)(UserOp2, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UserOp2,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.UserOp2,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.VaArg.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.VaArg.yml deleted file mode 100644 index cc28f4a825..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.VaArg.yml +++ /dev/null @@ -1,952 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.VaArg - commentId: T:Ubiquity.NET.Llvm.Instructions.VaArg - id: VaArg - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: VaArg - nameWithType: VaArg - fullName: Ubiquity.NET.Llvm.Instructions.VaArg - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/VAArg.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VaArg - path: ../src/Ubiquity.NET.Llvm/Instructions/VAArg.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to load an argument of a specified type from a variadic argument list - example: [] - syntax: - content: 'public sealed class VaArg : UnaryInstruction, IEquatable' - content.vb: Public NotInheritable Class VaArg Inherits UnaryInstruction Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.VaArg.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.VaArg.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.VaArg.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.VaArg.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(VaArg, uint) - nameWithType: InstructionExtensions.SetAlignment(VaArg, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.VaArg, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of VaArg)(VaArg, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.VaArg)(Ubiquity.NET.Llvm.Instructions.VaArg, UInteger) - name.vb: SetAlignment(Of VaArg)(VaArg, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.VaArg,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.VaArg,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.VaArg.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(VaArg, bool) - nameWithType: InstructionExtensions.SetIsVolatile(VaArg, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.VaArg, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of VaArg)(VaArg, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.VaArg)(Ubiquity.NET.Llvm.Instructions.VaArg, Boolean) - name.vb: SetIsVolatile(Of VaArg)(VaArg, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.VaArg,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.VaArg,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.VaArg.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(VaArg, string) - nameWithType: ValueExtensions.RegisterName(VaArg, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.VaArg, string) - nameWithType.vb: ValueExtensions.RegisterName(Of VaArg)(VaArg, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.VaArg)(Ubiquity.NET.Llvm.Instructions.VaArg, String) - name.vb: RegisterName(Of VaArg)(VaArg, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.VaArg,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.VaArg,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ZeroExtend.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ZeroExtend.yml deleted file mode 100644 index a750039d9a..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.ZeroExtend.yml +++ /dev/null @@ -1,976 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - commentId: T:Ubiquity.NET.Llvm.Instructions.ZeroExtend - id: ZeroExtend - parent: Ubiquity.NET.Llvm.Instructions - children: [] - langs: - - csharp - - vb - name: ZeroExtend - nameWithType: ZeroExtend - fullName: Ubiquity.NET.Llvm.Instructions.ZeroExtend - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Instructions/ZeroExtend.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ZeroExtend - path: ../src/Ubiquity.NET.Llvm/Instructions/ZeroExtend.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Instructions - summary: Instruction to zero extend a value - example: [] - syntax: - content: 'public sealed class ZeroExtend : Cast, IEquatable' - content.vb: Public NotInheritable Class ZeroExtend Inherits Cast Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Instructions.Cast.FromType - - Ubiquity.NET.Llvm.Instructions.Cast.ToType - - Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - - Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - - Ubiquity.NET.Llvm.Instructions.Instruction.Location - - Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - - Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - - Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - - Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - - Ubiquity.NET.Llvm.Instructions.Instruction.Successors - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Instructions.ZeroExtend.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - - Ubiquity.NET.Llvm.Instructions.ZeroExtend.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - - Ubiquity.NET.Llvm.Instructions.ZeroExtend.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Cast.FromType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.FromType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_FromType - name: FromType - nameWithType: Cast.FromType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.FromType -- uid: Ubiquity.NET.Llvm.Instructions.Cast.ToType - commentId: P:Ubiquity.NET.Llvm.Instructions.Cast.ToType - parent: Ubiquity.NET.Llvm.Instructions.Cast - href: Ubiquity.NET.Llvm.Instructions.Cast.html#Ubiquity_NET_Llvm_Instructions_Cast_ToType - name: ToType - nameWithType: Cast.ToType - fullName: Ubiquity.NET.Llvm.Instructions.Cast.ToType -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_ContainingBlock - name: ContainingBlock - nameWithType: Instruction.ContainingBlock - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.ContainingBlock -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Opcode - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Opcode - name: Opcode - nameWithType: Instruction.Opcode - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Opcode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Location - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Location - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Location - name: Location - nameWithType: Instruction.Location - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Location -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_IsMemoryAccess - name: IsMemoryAccess - nameWithType: Instruction.IsMemoryAccess - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.IsMemoryAccess -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_HasMetadata - name: HasMetadata - nameWithType: Instruction.HasMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.HasMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: this[MetadataKind] - nameWithType: Instruction.this[MetadataKind] - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.this[Ubiquity.NET.Llvm.Metadata.MetadataKind] - nameWithType.vb: Instruction.this[](MetadataKind) - fullName.vb: Ubiquity.NET.Llvm.Instructions.Instruction.this[](Ubiquity.NET.Llvm.Metadata.MetadataKind) - name.vb: this[](MetadataKind) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.Instruction.Item(Ubiquity.NET.Llvm.Metadata.MetadataKind) - name: this[] - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Item_Ubiquity_NET_Llvm_Metadata_MetadataKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_NonDebugLocMetadata - name: NonDebugLocMetadata - nameWithType: Instruction.NonDebugLocMetadata - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.NonDebugLocMetadata -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Alignment - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Alignment - name: Alignment - nameWithType: Instruction.Alignment - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Alignment -- uid: Ubiquity.NET.Llvm.Instructions.Instruction.Successors - commentId: P:Ubiquity.NET.Llvm.Instructions.Instruction.Successors - parent: Ubiquity.NET.Llvm.Instructions.Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html#Ubiquity_NET_Llvm_Instructions_Instruction_Successors - name: Successors - nameWithType: Instruction.Successors - fullName: Ubiquity.NET.Llvm.Instructions.Instruction.Successors -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(ZeroExtend, uint) - nameWithType: InstructionExtensions.SetAlignment(ZeroExtend, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Ubiquity.NET.Llvm.Instructions.ZeroExtend, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of ZeroExtend)(ZeroExtend, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of Ubiquity.NET.Llvm.Instructions.ZeroExtend)(Ubiquity.NET.Llvm.Instructions.ZeroExtend, UInteger) - name.vb: SetAlignment(Of ZeroExtend)(ZeroExtend, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ZeroExtend,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(Ubiquity.NET.Llvm.Instructions.ZeroExtend,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend.Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - parent: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - definition: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(ZeroExtend, bool) - nameWithType: InstructionExtensions.SetIsVolatile(ZeroExtend, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Ubiquity.NET.Llvm.Instructions.ZeroExtend, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of ZeroExtend)(ZeroExtend, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of Ubiquity.NET.Llvm.Instructions.ZeroExtend)(Ubiquity.NET.Llvm.Instructions.ZeroExtend, Boolean) - name.vb: SetIsVolatile(Of ZeroExtend)(ZeroExtend, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ZeroExtend,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(Ubiquity.NET.Llvm.Instructions.ZeroExtend,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ZeroExtend, string) - nameWithType: ValueExtensions.RegisterName(ZeroExtend, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Instructions.ZeroExtend, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ZeroExtend)(ZeroExtend, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Instructions.ZeroExtend)(Ubiquity.NET.Llvm.Instructions.ZeroExtend, String) - name.vb: RegisterName(Of ZeroExtend)(ZeroExtend, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ZeroExtend,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Instructions.ZeroExtend,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - name: SetAlignment(T, uint) - nameWithType: InstructionExtensions.SetAlignment(T, uint) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(T, uint) - nameWithType.vb: InstructionExtensions.SetAlignment(Of T)(T, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment(Of T)(T, UInteger) - name.vb: SetAlignment(Of T)(T, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetAlignment``1(``0,System.UInt32) - name: SetAlignment - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetAlignment__1___0_System_UInt32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - isExternal: true - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - name: SetIsVolatile(T, bool) - nameWithType: InstructionExtensions.SetIsVolatile(T, bool) - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(T, bool) - nameWithType.vb: InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile(Of T)(T, Boolean) - name.vb: SetIsVolatile(Of T)(T, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.SetIsVolatile``1(``0,System.Boolean) - name: SetIsVolatile - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html#Ubiquity_NET_Llvm_Instructions_InstructionExtensions_SetIsVolatile__1___0_System_Boolean_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.yml deleted file mode 100644 index 421e899570..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Instructions.yml +++ /dev/null @@ -1,592 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - id: Ubiquity.NET.Llvm.Instructions - children: - - Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - - Ubiquity.NET.Llvm.Instructions.Alloca - - Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - - Ubiquity.NET.Llvm.Instructions.AtomicRMW - - Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - - Ubiquity.NET.Llvm.Instructions.BinaryOperator - - Ubiquity.NET.Llvm.Instructions.BitCast - - Ubiquity.NET.Llvm.Instructions.Branch - - Ubiquity.NET.Llvm.Instructions.CallBr - - Ubiquity.NET.Llvm.Instructions.CallInstruction - - Ubiquity.NET.Llvm.Instructions.Cast - - Ubiquity.NET.Llvm.Instructions.CatchPad - - Ubiquity.NET.Llvm.Instructions.CatchReturn - - Ubiquity.NET.Llvm.Instructions.CatchSwitch - - Ubiquity.NET.Llvm.Instructions.CleanupPad - - Ubiquity.NET.Llvm.Instructions.CleanupReturn - - Ubiquity.NET.Llvm.Instructions.Cmp - - Ubiquity.NET.Llvm.Instructions.DebugDeclare - - Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - - Ubiquity.NET.Llvm.Instructions.DebugLabel - - Ubiquity.NET.Llvm.Instructions.ExtractElement - - Ubiquity.NET.Llvm.Instructions.ExtractValue - - Ubiquity.NET.Llvm.Instructions.FCmp - - Ubiquity.NET.Llvm.Instructions.FPExt - - Ubiquity.NET.Llvm.Instructions.FPToSI - - Ubiquity.NET.Llvm.Instructions.FPToUI - - Ubiquity.NET.Llvm.Instructions.FPTrunc - - Ubiquity.NET.Llvm.Instructions.Fence - - Ubiquity.NET.Llvm.Instructions.Freeze - - Ubiquity.NET.Llvm.Instructions.FuncletPad - - Ubiquity.NET.Llvm.Instructions.GetElementPtr - - Ubiquity.NET.Llvm.Instructions.IndirectBranch - - Ubiquity.NET.Llvm.Instructions.InsertElement - - Ubiquity.NET.Llvm.Instructions.InsertValue - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Instructions.InstructionBuilder - - Ubiquity.NET.Llvm.Instructions.InstructionExtensions - - Ubiquity.NET.Llvm.Instructions.IntCmp - - Ubiquity.NET.Llvm.Instructions.IntPredicate - - Ubiquity.NET.Llvm.Instructions.IntToPointer - - Ubiquity.NET.Llvm.Instructions.Intrinsic - - Ubiquity.NET.Llvm.Instructions.Invoke - - Ubiquity.NET.Llvm.Instructions.LandingPad - - Ubiquity.NET.Llvm.Instructions.Load - - Ubiquity.NET.Llvm.Instructions.MemCpy - - Ubiquity.NET.Llvm.Instructions.MemIntrinsic - - Ubiquity.NET.Llvm.Instructions.MemMove - - Ubiquity.NET.Llvm.Instructions.MemSet - - Ubiquity.NET.Llvm.Instructions.OpCode - - Ubiquity.NET.Llvm.Instructions.PhiNode - - Ubiquity.NET.Llvm.Instructions.PointerToInt - - Ubiquity.NET.Llvm.Instructions.Predicate - - Ubiquity.NET.Llvm.Instructions.RealPredicate - - Ubiquity.NET.Llvm.Instructions.ResumeInstruction - - Ubiquity.NET.Llvm.Instructions.ReturnInstruction - - Ubiquity.NET.Llvm.Instructions.SIToFP - - Ubiquity.NET.Llvm.Instructions.SelectInstruction - - Ubiquity.NET.Llvm.Instructions.ShuffleVector - - Ubiquity.NET.Llvm.Instructions.SignExtend - - Ubiquity.NET.Llvm.Instructions.Store - - Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - - Ubiquity.NET.Llvm.Instructions.Switch - - Ubiquity.NET.Llvm.Instructions.Terminator - - Ubiquity.NET.Llvm.Instructions.Trunc - - Ubiquity.NET.Llvm.Instructions.UIToFP - - Ubiquity.NET.Llvm.Instructions.UnaryInstruction - - Ubiquity.NET.Llvm.Instructions.UnaryOperator - - Ubiquity.NET.Llvm.Instructions.Unreachable - - Ubiquity.NET.Llvm.Instructions.UserOp1 - - Ubiquity.NET.Llvm.Instructions.UserOp2 - - Ubiquity.NET.Llvm.Instructions.VaArg - - Ubiquity.NET.Llvm.Instructions.ZeroExtend - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - commentId: T:Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - href: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast.html - name: AddressSpaceCast - nameWithType: AddressSpaceCast - fullName: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast -- uid: Ubiquity.NET.Llvm.Instructions.Alloca - commentId: T:Ubiquity.NET.Llvm.Instructions.Alloca - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Alloca.html - name: Alloca - nameWithType: Alloca - fullName: Ubiquity.NET.Llvm.Instructions.Alloca -- uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg.html - name: AtomicCmpXchg - nameWithType: AtomicCmpXchg - fullName: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp.html - name: AtomicRMWBinOp - nameWithType: AtomicRMWBinOp - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp -- uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - commentId: T:Ubiquity.NET.Llvm.Instructions.AtomicRMW - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.AtomicRMW.html - name: AtomicRMW - nameWithType: AtomicRMW - fullName: Ubiquity.NET.Llvm.Instructions.AtomicRMW -- uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.BinaryOperator - href: Ubiquity.NET.Llvm.Instructions.BinaryOperator.html - name: BinaryOperator - nameWithType: BinaryOperator - fullName: Ubiquity.NET.Llvm.Instructions.BinaryOperator -- uid: Ubiquity.NET.Llvm.Instructions.BitCast - commentId: T:Ubiquity.NET.Llvm.Instructions.BitCast - href: Ubiquity.NET.Llvm.Instructions.BitCast.html - name: BitCast - nameWithType: BitCast - fullName: Ubiquity.NET.Llvm.Instructions.BitCast -- uid: Ubiquity.NET.Llvm.Instructions.Branch - commentId: T:Ubiquity.NET.Llvm.Instructions.Branch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Branch.html - name: Branch - nameWithType: Branch - fullName: Ubiquity.NET.Llvm.Instructions.Branch -- uid: Ubiquity.NET.Llvm.Instructions.CallBr - commentId: T:Ubiquity.NET.Llvm.Instructions.CallBr - href: Ubiquity.NET.Llvm.Instructions.CallBr.html - name: CallBr - nameWithType: CallBr - fullName: Ubiquity.NET.Llvm.Instructions.CallBr -- uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.CallInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CallInstruction.html - name: CallInstruction - nameWithType: CallInstruction - fullName: Ubiquity.NET.Llvm.Instructions.CallInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Cast - commentId: T:Ubiquity.NET.Llvm.Instructions.Cast - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cast.html - name: Cast - nameWithType: Cast - fullName: Ubiquity.NET.Llvm.Instructions.Cast -- uid: Ubiquity.NET.Llvm.Instructions.CatchPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchPad.html - name: CatchPad - nameWithType: CatchPad - fullName: Ubiquity.NET.Llvm.Instructions.CatchPad -- uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchReturn - href: Ubiquity.NET.Llvm.Instructions.CatchReturn.html - name: CatchReturn - nameWithType: CatchReturn - fullName: Ubiquity.NET.Llvm.Instructions.CatchReturn -- uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - commentId: T:Ubiquity.NET.Llvm.Instructions.CatchSwitch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CatchSwitch.html - name: CatchSwitch - nameWithType: CatchSwitch - fullName: Ubiquity.NET.Llvm.Instructions.CatchSwitch -- uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.CleanupPad.html - name: CleanupPad - nameWithType: CleanupPad - fullName: Ubiquity.NET.Llvm.Instructions.CleanupPad -- uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - commentId: T:Ubiquity.NET.Llvm.Instructions.CleanupReturn - href: Ubiquity.NET.Llvm.Instructions.CleanupReturn.html - name: CleanupReturn - nameWithType: CleanupReturn - fullName: Ubiquity.NET.Llvm.Instructions.CleanupReturn -- uid: Ubiquity.NET.Llvm.Instructions.Cmp - commentId: T:Ubiquity.NET.Llvm.Instructions.Cmp - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Cmp.html - name: Cmp - nameWithType: Cmp - fullName: Ubiquity.NET.Llvm.Instructions.Cmp -- uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - commentId: T:Ubiquity.NET.Llvm.Instructions.DebugDeclare - href: Ubiquity.NET.Llvm.Instructions.DebugDeclare.html - name: DebugDeclare - nameWithType: DebugDeclare - fullName: Ubiquity.NET.Llvm.Instructions.DebugDeclare -- uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic.html - name: DebugInfoIntrinsic - nameWithType: DebugInfoIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic -- uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - commentId: T:Ubiquity.NET.Llvm.Instructions.DebugLabel - href: Ubiquity.NET.Llvm.Instructions.DebugLabel.html - name: DebugLabel - nameWithType: DebugLabel - fullName: Ubiquity.NET.Llvm.Instructions.DebugLabel -- uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - commentId: T:Ubiquity.NET.Llvm.Instructions.ExtractElement - href: Ubiquity.NET.Llvm.Instructions.ExtractElement.html - name: ExtractElement - nameWithType: ExtractElement - fullName: Ubiquity.NET.Llvm.Instructions.ExtractElement -- uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - commentId: T:Ubiquity.NET.Llvm.Instructions.ExtractValue - href: Ubiquity.NET.Llvm.Instructions.ExtractValue.html - name: ExtractValue - nameWithType: ExtractValue - fullName: Ubiquity.NET.Llvm.Instructions.ExtractValue -- uid: Ubiquity.NET.Llvm.Instructions.FCmp - commentId: T:Ubiquity.NET.Llvm.Instructions.FCmp - href: Ubiquity.NET.Llvm.Instructions.FCmp.html - name: FCmp - nameWithType: FCmp - fullName: Ubiquity.NET.Llvm.Instructions.FCmp -- uid: Ubiquity.NET.Llvm.Instructions.Fence - commentId: T:Ubiquity.NET.Llvm.Instructions.Fence - href: Ubiquity.NET.Llvm.Instructions.Fence.html - name: Fence - nameWithType: Fence - fullName: Ubiquity.NET.Llvm.Instructions.Fence -- uid: Ubiquity.NET.Llvm.Instructions.FPExt - commentId: T:Ubiquity.NET.Llvm.Instructions.FPExt - href: Ubiquity.NET.Llvm.Instructions.FPExt.html - name: FPExt - nameWithType: FPExt - fullName: Ubiquity.NET.Llvm.Instructions.FPExt -- uid: Ubiquity.NET.Llvm.Instructions.FPToSI - commentId: T:Ubiquity.NET.Llvm.Instructions.FPToSI - href: Ubiquity.NET.Llvm.Instructions.FPToSI.html - name: FPToSI - nameWithType: FPToSI - fullName: Ubiquity.NET.Llvm.Instructions.FPToSI -- uid: Ubiquity.NET.Llvm.Instructions.FPToUI - commentId: T:Ubiquity.NET.Llvm.Instructions.FPToUI - href: Ubiquity.NET.Llvm.Instructions.FPToUI.html - name: FPToUI - nameWithType: FPToUI - fullName: Ubiquity.NET.Llvm.Instructions.FPToUI -- uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - commentId: T:Ubiquity.NET.Llvm.Instructions.FPTrunc - href: Ubiquity.NET.Llvm.Instructions.FPTrunc.html - name: FPTrunc - nameWithType: FPTrunc - fullName: Ubiquity.NET.Llvm.Instructions.FPTrunc -- uid: Ubiquity.NET.Llvm.Instructions.Freeze - commentId: T:Ubiquity.NET.Llvm.Instructions.Freeze - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Freeze.html - name: Freeze - nameWithType: Freeze - fullName: Ubiquity.NET.Llvm.Instructions.Freeze -- uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - commentId: T:Ubiquity.NET.Llvm.Instructions.FuncletPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.FuncletPad.html - name: FuncletPad - nameWithType: FuncletPad - fullName: Ubiquity.NET.Llvm.Instructions.FuncletPad -- uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - commentId: T:Ubiquity.NET.Llvm.Instructions.GetElementPtr - href: Ubiquity.NET.Llvm.Instructions.GetElementPtr.html - name: GetElementPtr - nameWithType: GetElementPtr - fullName: Ubiquity.NET.Llvm.Instructions.GetElementPtr -- uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - commentId: T:Ubiquity.NET.Llvm.Instructions.IndirectBranch - href: Ubiquity.NET.Llvm.Instructions.IndirectBranch.html - name: IndirectBranch - nameWithType: IndirectBranch - fullName: Ubiquity.NET.Llvm.Instructions.IndirectBranch -- uid: Ubiquity.NET.Llvm.Instructions.InsertElement - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertElement - href: Ubiquity.NET.Llvm.Instructions.InsertElement.html - name: InsertElement - nameWithType: InsertElement - fullName: Ubiquity.NET.Llvm.Instructions.InsertElement -- uid: Ubiquity.NET.Llvm.Instructions.InsertValue - commentId: T:Ubiquity.NET.Llvm.Instructions.InsertValue - href: Ubiquity.NET.Llvm.Instructions.InsertValue.html - name: InsertValue - nameWithType: InsertValue - fullName: Ubiquity.NET.Llvm.Instructions.InsertValue -- uid: Ubiquity.NET.Llvm.Instructions.OpCode - commentId: T:Ubiquity.NET.Llvm.Instructions.OpCode - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.OpCode.html - name: OpCode - nameWithType: OpCode - fullName: Ubiquity.NET.Llvm.Instructions.OpCode -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionBuilder - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html - name: InstructionBuilder - nameWithType: InstructionBuilder - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder -- uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionExtensions - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionExtensions.html - name: InstructionExtensions - nameWithType: InstructionExtensions - fullName: Ubiquity.NET.Llvm.Instructions.InstructionExtensions -- uid: Ubiquity.NET.Llvm.Instructions.IntCmp - commentId: T:Ubiquity.NET.Llvm.Instructions.IntCmp - href: Ubiquity.NET.Llvm.Instructions.IntCmp.html - name: IntCmp - nameWithType: IntCmp - fullName: Ubiquity.NET.Llvm.Instructions.IntCmp -- uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.Intrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Intrinsic.html - name: Intrinsic - nameWithType: Intrinsic - fullName: Ubiquity.NET.Llvm.Instructions.Intrinsic -- uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - commentId: T:Ubiquity.NET.Llvm.Instructions.IntToPointer - href: Ubiquity.NET.Llvm.Instructions.IntToPointer.html - name: IntToPointer - nameWithType: IntToPointer - fullName: Ubiquity.NET.Llvm.Instructions.IntToPointer -- uid: Ubiquity.NET.Llvm.Instructions.Invoke - commentId: T:Ubiquity.NET.Llvm.Instructions.Invoke - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Invoke.html - name: Invoke - nameWithType: Invoke - fullName: Ubiquity.NET.Llvm.Instructions.Invoke -- uid: Ubiquity.NET.Llvm.Instructions.LandingPad - commentId: T:Ubiquity.NET.Llvm.Instructions.LandingPad - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.LandingPad.html - name: LandingPad - nameWithType: LandingPad - fullName: Ubiquity.NET.Llvm.Instructions.LandingPad -- uid: Ubiquity.NET.Llvm.Instructions.Load - commentId: T:Ubiquity.NET.Llvm.Instructions.Load - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Load.html - name: Load - nameWithType: Load - fullName: Ubiquity.NET.Llvm.Instructions.Load -- uid: Ubiquity.NET.Llvm.Instructions.MemCpy - commentId: T:Ubiquity.NET.Llvm.Instructions.MemCpy - href: Ubiquity.NET.Llvm.Instructions.MemCpy.html - name: MemCpy - nameWithType: MemCpy - fullName: Ubiquity.NET.Llvm.Instructions.MemCpy -- uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - commentId: T:Ubiquity.NET.Llvm.Instructions.MemIntrinsic - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.MemIntrinsic.html - name: MemIntrinsic - nameWithType: MemIntrinsic - fullName: Ubiquity.NET.Llvm.Instructions.MemIntrinsic -- uid: Ubiquity.NET.Llvm.Instructions.MemMove - commentId: T:Ubiquity.NET.Llvm.Instructions.MemMove - href: Ubiquity.NET.Llvm.Instructions.MemMove.html - name: MemMove - nameWithType: MemMove - fullName: Ubiquity.NET.Llvm.Instructions.MemMove -- uid: Ubiquity.NET.Llvm.Instructions.MemSet - commentId: T:Ubiquity.NET.Llvm.Instructions.MemSet - href: Ubiquity.NET.Llvm.Instructions.MemSet.html - name: MemSet - nameWithType: MemSet - fullName: Ubiquity.NET.Llvm.Instructions.MemSet -- uid: Ubiquity.NET.Llvm.Instructions.PhiNode - commentId: T:Ubiquity.NET.Llvm.Instructions.PhiNode - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.PhiNode.html - name: PhiNode - nameWithType: PhiNode - fullName: Ubiquity.NET.Llvm.Instructions.PhiNode -- uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - commentId: T:Ubiquity.NET.Llvm.Instructions.PointerToInt - href: Ubiquity.NET.Llvm.Instructions.PointerToInt.html - name: PointerToInt - nameWithType: PointerToInt - fullName: Ubiquity.NET.Llvm.Instructions.PointerToInt -- uid: Ubiquity.NET.Llvm.Instructions.Predicate - commentId: T:Ubiquity.NET.Llvm.Instructions.Predicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Predicate.html - name: Predicate - nameWithType: Predicate - fullName: Ubiquity.NET.Llvm.Instructions.Predicate -- uid: Ubiquity.NET.Llvm.Instructions.IntPredicate - commentId: T:Ubiquity.NET.Llvm.Instructions.IntPredicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.IntPredicate.html - name: IntPredicate - nameWithType: IntPredicate - fullName: Ubiquity.NET.Llvm.Instructions.IntPredicate -- uid: Ubiquity.NET.Llvm.Instructions.RealPredicate - commentId: T:Ubiquity.NET.Llvm.Instructions.RealPredicate - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.RealPredicate.html - name: RealPredicate - nameWithType: RealPredicate - fullName: Ubiquity.NET.Llvm.Instructions.RealPredicate -- uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ResumeInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.ResumeInstruction.html - name: ResumeInstruction - nameWithType: ResumeInstruction - fullName: Ubiquity.NET.Llvm.Instructions.ResumeInstruction -- uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.ReturnInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.ReturnInstruction.html - name: ReturnInstruction - nameWithType: ReturnInstruction - fullName: Ubiquity.NET.Llvm.Instructions.ReturnInstruction -- uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.SelectInstruction - href: Ubiquity.NET.Llvm.Instructions.SelectInstruction.html - name: SelectInstruction - nameWithType: SelectInstruction - fullName: Ubiquity.NET.Llvm.Instructions.SelectInstruction -- uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - commentId: T:Ubiquity.NET.Llvm.Instructions.ShuffleVector - href: Ubiquity.NET.Llvm.Instructions.ShuffleVector.html - name: ShuffleVector - nameWithType: ShuffleVector - fullName: Ubiquity.NET.Llvm.Instructions.ShuffleVector -- uid: Ubiquity.NET.Llvm.Instructions.SignExtend - commentId: T:Ubiquity.NET.Llvm.Instructions.SignExtend - href: Ubiquity.NET.Llvm.Instructions.SignExtend.html - name: SignExtend - nameWithType: SignExtend - fullName: Ubiquity.NET.Llvm.Instructions.SignExtend -- uid: Ubiquity.NET.Llvm.Instructions.SIToFP - commentId: T:Ubiquity.NET.Llvm.Instructions.SIToFP - href: Ubiquity.NET.Llvm.Instructions.SIToFP.html - name: SIToFP - nameWithType: SIToFP - fullName: Ubiquity.NET.Llvm.Instructions.SIToFP -- uid: Ubiquity.NET.Llvm.Instructions.Store - commentId: T:Ubiquity.NET.Llvm.Instructions.Store - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Store.html - name: Store - nameWithType: Store - fullName: Ubiquity.NET.Llvm.Instructions.Store -- uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - commentId: T:Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - href: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection.html - name: SuccessorBlockCollection - nameWithType: SuccessorBlockCollection - fullName: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection -- uid: Ubiquity.NET.Llvm.Instructions.Switch - commentId: T:Ubiquity.NET.Llvm.Instructions.Switch - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Switch.html - name: Switch - nameWithType: Switch - fullName: Ubiquity.NET.Llvm.Instructions.Switch -- uid: Ubiquity.NET.Llvm.Instructions.Terminator - commentId: T:Ubiquity.NET.Llvm.Instructions.Terminator - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Terminator.html - name: Terminator - nameWithType: Terminator - fullName: Ubiquity.NET.Llvm.Instructions.Terminator -- uid: Ubiquity.NET.Llvm.Instructions.Trunc - commentId: T:Ubiquity.NET.Llvm.Instructions.Trunc - href: Ubiquity.NET.Llvm.Instructions.Trunc.html - name: Trunc - nameWithType: Trunc - fullName: Ubiquity.NET.Llvm.Instructions.Trunc -- uid: Ubiquity.NET.Llvm.Instructions.UIToFP - commentId: T:Ubiquity.NET.Llvm.Instructions.UIToFP - href: Ubiquity.NET.Llvm.Instructions.UIToFP.html - name: UIToFP - nameWithType: UIToFP - fullName: Ubiquity.NET.Llvm.Instructions.UIToFP -- uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryInstruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.UnaryInstruction.html - name: UnaryInstruction - nameWithType: UnaryInstruction - fullName: Ubiquity.NET.Llvm.Instructions.UnaryInstruction -- uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - commentId: T:Ubiquity.NET.Llvm.Instructions.UnaryOperator - href: Ubiquity.NET.Llvm.Instructions.UnaryOperator.html - name: UnaryOperator - nameWithType: UnaryOperator - fullName: Ubiquity.NET.Llvm.Instructions.UnaryOperator -- uid: Ubiquity.NET.Llvm.Instructions.Unreachable - commentId: T:Ubiquity.NET.Llvm.Instructions.Unreachable - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Unreachable.html - name: Unreachable - nameWithType: Unreachable - fullName: Ubiquity.NET.Llvm.Instructions.Unreachable -- uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - commentId: T:Ubiquity.NET.Llvm.Instructions.UserOp1 - href: Ubiquity.NET.Llvm.Instructions.UserOp1.html - name: UserOp1 - nameWithType: UserOp1 - fullName: Ubiquity.NET.Llvm.Instructions.UserOp1 -- uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - commentId: T:Ubiquity.NET.Llvm.Instructions.UserOp2 - href: Ubiquity.NET.Llvm.Instructions.UserOp2.html - name: UserOp2 - nameWithType: UserOp2 - fullName: Ubiquity.NET.Llvm.Instructions.UserOp2 -- uid: Ubiquity.NET.Llvm.Instructions.VaArg - commentId: T:Ubiquity.NET.Llvm.Instructions.VaArg - href: Ubiquity.NET.Llvm.Instructions.VaArg.html - name: VaArg - nameWithType: VaArg - fullName: Ubiquity.NET.Llvm.Instructions.VaArg -- uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - commentId: T:Ubiquity.NET.Llvm.Instructions.ZeroExtend - href: Ubiquity.NET.Llvm.Instructions.ZeroExtend.html - name: ZeroExtend - nameWithType: ZeroExtend - fullName: Ubiquity.NET.Llvm.Instructions.ZeroExtend -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.InternalCodeGeneratorException.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.InternalCodeGeneratorException.yml deleted file mode 100644 index cc6d1feef0..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.InternalCodeGeneratorException.yml +++ /dev/null @@ -1,607 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException - commentId: T:Ubiquity.NET.Llvm.InternalCodeGeneratorException - id: InternalCodeGeneratorException - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor - - Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor(System.String) - - Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor(System.String,System.Exception) - langs: - - csharp - - vb - name: InternalCodeGeneratorException - nameWithType: InternalCodeGeneratorException - fullName: Ubiquity.NET.Llvm.InternalCodeGeneratorException - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/InternalCodeGeneratorException.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InternalCodeGeneratorException - path: ../src/Ubiquity.NET.Llvm/InternalCodeGeneratorException.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Exception generated when the internal state of the code generation cannot proceed due to an internal error - example: [] - syntax: - content: >- - [Serializable] - - public class InternalCodeGeneratorException : Exception, ISerializable - content.vb: >- - - - Public Class InternalCodeGeneratorException Inherits Exception Implements ISerializable - inheritance: - - System.Object - - System.Exception - implements: - - System.Runtime.Serialization.ISerializable - inheritedMembers: - - System.Exception.GetBaseException - - System.Exception.GetType - - System.Exception.ToString - - System.Exception.Data - - System.Exception.HelpLink - - System.Exception.HResult - - System.Exception.InnerException - - System.Exception.Message - - System.Exception.Source - - System.Exception.StackTrace - - System.Exception.TargetSite - - System.Exception.SerializeObjectState - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - attributes: - - type: System.SerializableAttribute - ctor: System.SerializableAttribute.#ctor - arguments: [] -- uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor - commentId: M:Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor - id: '#ctor' - parent: Ubiquity.NET.Llvm.InternalCodeGeneratorException - langs: - - csharp - - vb - name: InternalCodeGeneratorException() - nameWithType: InternalCodeGeneratorException.InternalCodeGeneratorException() - fullName: Ubiquity.NET.Llvm.InternalCodeGeneratorException.InternalCodeGeneratorException() - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/InternalCodeGeneratorException.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/InternalCodeGeneratorException.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public InternalCodeGeneratorException() - content.vb: Public Sub New() - overload: Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor* - nameWithType.vb: InternalCodeGeneratorException.New() - fullName.vb: Ubiquity.NET.Llvm.InternalCodeGeneratorException.New() - name.vb: New() -- uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor(System.String) - commentId: M:Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor(System.String) - id: '#ctor(System.String)' - parent: Ubiquity.NET.Llvm.InternalCodeGeneratorException - langs: - - csharp - - vb - name: InternalCodeGeneratorException(string) - nameWithType: InternalCodeGeneratorException.InternalCodeGeneratorException(string) - fullName: Ubiquity.NET.Llvm.InternalCodeGeneratorException.InternalCodeGeneratorException(string) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/InternalCodeGeneratorException.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/InternalCodeGeneratorException.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public InternalCodeGeneratorException(string message) - parameters: - - id: message - type: System.String - description: Message for the exception - content.vb: Public Sub New(message As String) - overload: Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor* - nameWithType.vb: InternalCodeGeneratorException.New(String) - fullName.vb: Ubiquity.NET.Llvm.InternalCodeGeneratorException.New(String) - name.vb: New(String) -- uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor(System.String,System.Exception) - commentId: M:Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor(System.String,System.Exception) - id: '#ctor(System.String,System.Exception)' - parent: Ubiquity.NET.Llvm.InternalCodeGeneratorException - langs: - - csharp - - vb - name: InternalCodeGeneratorException(string, Exception) - nameWithType: InternalCodeGeneratorException.InternalCodeGeneratorException(string, Exception) - fullName: Ubiquity.NET.Llvm.InternalCodeGeneratorException.InternalCodeGeneratorException(string, System.Exception) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/InternalCodeGeneratorException.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/InternalCodeGeneratorException.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public InternalCodeGeneratorException(string message, Exception inner) - parameters: - - id: message - type: System.String - description: Message for the exception - - id: inner - type: System.Exception - description: Inner exception - content.vb: Public Sub New(message As String, inner As Exception) - overload: Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor* - nameWithType.vb: InternalCodeGeneratorException.New(String, Exception) - fullName.vb: Ubiquity.NET.Llvm.InternalCodeGeneratorException.New(String, System.Exception) - name.vb: New(String, Exception) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Exception - commentId: T:System.Exception - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception - name: Exception - nameWithType: Exception - fullName: System.Exception -- uid: System.Runtime.Serialization.ISerializable - commentId: T:System.Runtime.Serialization.ISerializable - parent: System.Runtime.Serialization - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable - name: ISerializable - nameWithType: ISerializable - fullName: System.Runtime.Serialization.ISerializable -- uid: System.Exception.GetBaseException - commentId: M:System.Exception.GetBaseException - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - name: GetBaseException() - nameWithType: Exception.GetBaseException() - fullName: System.Exception.GetBaseException() - spec.csharp: - - uid: System.Exception.GetBaseException - name: GetBaseException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - - name: ( - - name: ) - spec.vb: - - uid: System.Exception.GetBaseException - name: GetBaseException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.getbaseexception - - name: ( - - name: ) -- uid: System.Exception.GetType - commentId: M:System.Exception.GetType - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.gettype - name: GetType() - nameWithType: Exception.GetType() - fullName: System.Exception.GetType() - spec.csharp: - - uid: System.Exception.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Exception.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.gettype - - name: ( - - name: ) -- uid: System.Exception.ToString - commentId: M:System.Exception.ToString - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.tostring - name: ToString() - nameWithType: Exception.ToString() - fullName: System.Exception.ToString() - spec.csharp: - - uid: System.Exception.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Exception.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.tostring - - name: ( - - name: ) -- uid: System.Exception.Data - commentId: P:System.Exception.Data - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.data - name: Data - nameWithType: Exception.Data - fullName: System.Exception.Data -- uid: System.Exception.HelpLink - commentId: P:System.Exception.HelpLink - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.helplink - name: HelpLink - nameWithType: Exception.HelpLink - fullName: System.Exception.HelpLink -- uid: System.Exception.HResult - commentId: P:System.Exception.HResult - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.hresult - name: HResult - nameWithType: Exception.HResult - fullName: System.Exception.HResult -- uid: System.Exception.InnerException - commentId: P:System.Exception.InnerException - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.innerexception - name: InnerException - nameWithType: Exception.InnerException - fullName: System.Exception.InnerException -- uid: System.Exception.Message - commentId: P:System.Exception.Message - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.message - name: Message - nameWithType: Exception.Message - fullName: System.Exception.Message -- uid: System.Exception.Source - commentId: P:System.Exception.Source - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.source - name: Source - nameWithType: Exception.Source - fullName: System.Exception.Source -- uid: System.Exception.StackTrace - commentId: P:System.Exception.StackTrace - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.stacktrace - name: StackTrace - nameWithType: Exception.StackTrace - fullName: System.Exception.StackTrace -- uid: System.Exception.TargetSite - commentId: P:System.Exception.TargetSite - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.targetsite - name: TargetSite - nameWithType: Exception.TargetSite - fullName: System.Exception.TargetSite -- uid: System.Exception.SerializeObjectState - commentId: E:System.Exception.SerializeObjectState - parent: System.Exception - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.exception.serializeobjectstate - name: SerializeObjectState - nameWithType: Exception.SerializeObjectState - fullName: System.Exception.SerializeObjectState -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.Runtime.Serialization - commentId: N:System.Runtime.Serialization - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Runtime.Serialization - nameWithType: System.Runtime.Serialization - fullName: System.Runtime.Serialization - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Runtime - name: Runtime - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime - - name: . - - uid: System.Runtime.Serialization - name: Serialization - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Runtime - name: Runtime - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime - - name: . - - uid: System.Runtime.Serialization - name: Serialization - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.runtime.serialization -- uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException - commentId: T:Ubiquity.NET.Llvm.InternalCodeGeneratorException - href: Ubiquity.NET.Llvm.InternalCodeGeneratorException.html - name: InternalCodeGeneratorException - nameWithType: InternalCodeGeneratorException - fullName: Ubiquity.NET.Llvm.InternalCodeGeneratorException -- uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.InternalCodeGeneratorException.#ctor - href: Ubiquity.NET.Llvm.InternalCodeGeneratorException.html#Ubiquity_NET_Llvm_InternalCodeGeneratorException__ctor - name: InternalCodeGeneratorException - nameWithType: InternalCodeGeneratorException.InternalCodeGeneratorException - fullName: Ubiquity.NET.Llvm.InternalCodeGeneratorException.InternalCodeGeneratorException - nameWithType.vb: InternalCodeGeneratorException.New - fullName.vb: Ubiquity.NET.Llvm.InternalCodeGeneratorException.New - name.vb: New -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Library.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Library.yml deleted file mode 100644 index 06a8c65461..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Library.yml +++ /dev/null @@ -1,572 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Library - commentId: T:Ubiquity.NET.Llvm.Library - id: Library - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.Library.Dispose - - Ubiquity.NET.Llvm.Library.InitializeLLVM(Ubiquity.NET.Llvm.CodeGenTarget) - - Ubiquity.NET.Llvm.Library.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - langs: - - csharp - - vb - name: Library - nameWithType: Library - fullName: Ubiquity.NET.Llvm.Library - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Library.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Library - path: ../src/Ubiquity.NET.Llvm/Library.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Provides support for various LLVM static state initialization and manipulation - example: [] - syntax: - content: 'public sealed class Library : ILibLlvm, IDisposable' - content.vb: Public NotInheritable Class Library Implements ILibLlvm, IDisposable - inheritance: - - System.Object - implements: - - Ubiquity.NET.Llvm.ILibLlvm - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Library.Dispose - commentId: M:Ubiquity.NET.Llvm.Library.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.Library - langs: - - csharp - - vb - name: Dispose() - nameWithType: Library.Dispose() - fullName: Ubiquity.NET.Llvm.Library.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Library.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/Library.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.Library.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.Library.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - commentId: M:Ubiquity.NET.Llvm.Library.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - id: RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - parent: Ubiquity.NET.Llvm.Library - langs: - - csharp - - vb - name: RegisterTarget(CodeGenTarget, TargetRegistration) - nameWithType: Library.RegisterTarget(CodeGenTarget, TargetRegistration) - fullName: Ubiquity.NET.Llvm.Library.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget, Ubiquity.NET.Llvm.TargetRegistration) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Library.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RegisterTarget - path: ../src/Ubiquity.NET.Llvm/Library.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Registers components for ARM AArch64 target(s) - example: [] - syntax: - content: public void RegisterTarget(CodeGenTarget target, TargetRegistration registrations = TargetRegistration.All) - parameters: - - id: target - type: Ubiquity.NET.Llvm.CodeGenTarget - description: Target architecture to register/initialize - - id: registrations - type: Ubiquity.NET.Llvm.TargetRegistration - description: Flags indicating which components to register/enable - content.vb: Public Sub RegisterTarget(target As CodeGenTarget, registrations As TargetRegistration = TargetRegistration.All) - overload: Ubiquity.NET.Llvm.Library.RegisterTarget* - implements: - - Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) -- uid: Ubiquity.NET.Llvm.Library.InitializeLLVM(Ubiquity.NET.Llvm.CodeGenTarget) - commentId: M:Ubiquity.NET.Llvm.Library.InitializeLLVM(Ubiquity.NET.Llvm.CodeGenTarget) - id: InitializeLLVM(Ubiquity.NET.Llvm.CodeGenTarget) - parent: Ubiquity.NET.Llvm.Library - langs: - - csharp - - vb - name: InitializeLLVM(CodeGenTarget) - nameWithType: Library.InitializeLLVM(CodeGenTarget) - fullName: Ubiquity.NET.Llvm.Library.InitializeLLVM(Ubiquity.NET.Llvm.CodeGenTarget) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Library.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InitializeLLVM - path: ../src/Ubiquity.NET.Llvm/Library.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes the native LLVM library support - remarks: >- -

This can be called multiple times per application BUT all such calls MUST use the same value for - - target in order to load the underlying native LLVM library.

- -

will release any resources allocated by the library but NOT the library itself. - - That is loaded once the first time this is called. The .NET runtime does *NOT* support re-load of a P/Invoke - - library within the same process. Thus, this is best used at the top level of the application and released at - - or near process exit. An access violation crash is likely to occur if any attempts to use the library's functions - - occurs after it is unloaded as there is no way to invalidate the results of resolving the method + library into - - an address.

- -

While any variant of the native library will support they can support up - - to one other target. Thus if the consumer is ever going to support cross-platform scenarios, then it MUST specify - - the target the first time this is called. This restriction is a tradeoff from the cost of building the native interop - - library. Building all possible processor targets into a single library for every possible runtime is just not feasible - - in the automated builds for most projects let alone a no budget OSS project like this one.

- example: [] - syntax: - content: public static ILibLlvm InitializeLLVM(CodeGenTarget target = CodeGenTarget.Native) - parameters: - - id: target - type: Ubiquity.NET.Llvm.CodeGenTarget - description: 'Target to use in resolving the proper library that implements the LLVM native code. [Default: CodeGenTarget.Native]' - return: - type: Ubiquity.NET.Llvm.ILibLlvm - description: implementation for the library - content.vb: Public Shared Function InitializeLLVM(target As CodeGenTarget = CodeGenTarget.Native) As ILibLlvm - overload: Ubiquity.NET.Llvm.Library.InitializeLLVM* - exceptions: - - type: System.InvalidOperationException - commentId: T:System.InvalidOperationException - description: Native Interop library already loaded for a different target - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: The target provided is undefined or -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.ILibLlvm - commentId: T:Ubiquity.NET.Llvm.ILibLlvm - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ILibLlvm.html - name: ILibLlvm - nameWithType: ILibLlvm - fullName: Ubiquity.NET.Llvm.ILibLlvm -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Library.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.Library.Dispose - href: Ubiquity.NET.Llvm.Library.html#Ubiquity_NET_Llvm_Library_Dispose - name: Dispose - nameWithType: Library.Dispose - fullName: Ubiquity.NET.Llvm.Library.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Library.RegisterTarget* - commentId: Overload:Ubiquity.NET.Llvm.Library.RegisterTarget - href: Ubiquity.NET.Llvm.Library.html#Ubiquity_NET_Llvm_Library_RegisterTarget_Ubiquity_NET_Llvm_CodeGenTarget_Ubiquity_NET_Llvm_TargetRegistration_ - name: RegisterTarget - nameWithType: Library.RegisterTarget - fullName: Ubiquity.NET.Llvm.Library.RegisterTarget -- uid: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - commentId: M:Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - parent: Ubiquity.NET.Llvm.ILibLlvm - href: Ubiquity.NET.Llvm.ILibLlvm.html#Ubiquity_NET_Llvm_ILibLlvm_RegisterTarget_Ubiquity_NET_Llvm_CodeGenTarget_Ubiquity_NET_Llvm_TargetRegistration_ - name: RegisterTarget(CodeGenTarget, TargetRegistration) - nameWithType: ILibLlvm.RegisterTarget(CodeGenTarget, TargetRegistration) - fullName: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget, Ubiquity.NET.Llvm.TargetRegistration) - spec.csharp: - - uid: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - name: RegisterTarget - href: Ubiquity.NET.Llvm.ILibLlvm.html#Ubiquity_NET_Llvm_ILibLlvm_RegisterTarget_Ubiquity_NET_Llvm_CodeGenTarget_Ubiquity_NET_Llvm_TargetRegistration_ - - name: ( - - uid: Ubiquity.NET.Llvm.CodeGenTarget - name: CodeGenTarget - href: Ubiquity.NET.Llvm.CodeGenTarget.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.TargetRegistration - name: TargetRegistration - href: Ubiquity.NET.Llvm.TargetRegistration.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.ILibLlvm.RegisterTarget(Ubiquity.NET.Llvm.CodeGenTarget,Ubiquity.NET.Llvm.TargetRegistration) - name: RegisterTarget - href: Ubiquity.NET.Llvm.ILibLlvm.html#Ubiquity_NET_Llvm_ILibLlvm_RegisterTarget_Ubiquity_NET_Llvm_CodeGenTarget_Ubiquity_NET_Llvm_TargetRegistration_ - - name: ( - - uid: Ubiquity.NET.Llvm.CodeGenTarget - name: CodeGenTarget - href: Ubiquity.NET.Llvm.CodeGenTarget.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.TargetRegistration - name: TargetRegistration - href: Ubiquity.NET.Llvm.TargetRegistration.html - - name: ) -- uid: Ubiquity.NET.Llvm.CodeGenTarget - commentId: T:Ubiquity.NET.Llvm.CodeGenTarget - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenTarget.html - name: CodeGenTarget - nameWithType: CodeGenTarget - fullName: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.TargetRegistration - commentId: T:Ubiquity.NET.Llvm.TargetRegistration - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetRegistration.html - name: TargetRegistration - nameWithType: TargetRegistration - fullName: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.Library.Dispose - commentId: M:Ubiquity.NET.Llvm.Library.Dispose - href: Ubiquity.NET.Llvm.Library.html#Ubiquity_NET_Llvm_Library_Dispose - name: Dispose() - nameWithType: Library.Dispose() - fullName: Ubiquity.NET.Llvm.Library.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Library.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.Library.html#Ubiquity_NET_Llvm_Library_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Library.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.Library.html#Ubiquity_NET_Llvm_Library_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.CodeGenTarget.Native - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.Native - href: Ubiquity.NET.Llvm.CodeGenTarget.html#Ubiquity_NET_Llvm_CodeGenTarget_Native - name: Native - nameWithType: CodeGenTarget.Native - fullName: Ubiquity.NET.Llvm.CodeGenTarget.Native -- uid: Ubiquity.NET.Llvm.CodeGenTarget.All - commentId: F:Ubiquity.NET.Llvm.CodeGenTarget.All - href: Ubiquity.NET.Llvm.CodeGenTarget.html#Ubiquity_NET_Llvm_CodeGenTarget_All - name: All - nameWithType: CodeGenTarget.All - fullName: Ubiquity.NET.Llvm.CodeGenTarget.All -- uid: System.InvalidOperationException - commentId: T:System.InvalidOperationException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception - name: InvalidOperationException - nameWithType: InvalidOperationException - fullName: System.InvalidOperationException -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: Ubiquity.NET.Llvm.Library.InitializeLLVM* - commentId: Overload:Ubiquity.NET.Llvm.Library.InitializeLLVM - href: Ubiquity.NET.Llvm.Library.html#Ubiquity_NET_Llvm_Library_InitializeLLVM_Ubiquity_NET_Llvm_CodeGenTarget_ - name: InitializeLLVM - nameWithType: Library.InitializeLLVM - fullName: Ubiquity.NET.Llvm.Library.InitializeLLVM diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.MemoryBuffer.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.MemoryBuffer.yml deleted file mode 100644 index 02c6dc7c17..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.MemoryBuffer.yml +++ /dev/null @@ -1,923 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.MemoryBuffer - commentId: T:Ubiquity.NET.Llvm.MemoryBuffer - id: MemoryBuffer - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.Byte*,Ubiquity.NET.InteropHelpers.size_t,Ubiquity.NET.InteropHelpers.LazyEncodedString,System.Boolean) - - Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.Byte[],System.String) - - Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.String) - - Ubiquity.NET.Llvm.MemoryBuffer.Dispose - - Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed - - Ubiquity.NET.Llvm.MemoryBuffer.Size - - Ubiquity.NET.Llvm.MemoryBuffer.Slice(System.Int32,System.Int32) - - Ubiquity.NET.Llvm.MemoryBuffer.ToArray - - Ubiquity.NET.Llvm.MemoryBuffer.op_Implicit(Ubiquity.NET.Llvm.MemoryBuffer)~System.ReadOnlySpan{System.Byte} - langs: - - csharp - - vb - name: MemoryBuffer - nameWithType: MemoryBuffer - fullName: Ubiquity.NET.Llvm.MemoryBuffer - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MemoryBuffer - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: LLVM MemoryBuffer - example: [] - syntax: - content: 'public sealed class MemoryBuffer : IDisposable' - content.vb: Public NotInheritable Class MemoryBuffer Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed - commentId: P:Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: IsDisposed - nameWithType: MemoryBuffer.IsDisposed - fullName: Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this instance is disposed - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed* -- uid: Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.String) - commentId: M:Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.String) - id: '#ctor(System.String)' - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: MemoryBuffer(string) - nameWithType: MemoryBuffer.MemoryBuffer(string) - fullName: Ubiquity.NET.Llvm.MemoryBuffer.MemoryBuffer(string) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class from a file - example: [] - syntax: - content: public MemoryBuffer(string path) - parameters: - - id: path - type: System.String - description: Path of the file to load - content.vb: Public Sub New(path As String) - overload: Ubiquity.NET.Llvm.MemoryBuffer.#ctor* - nameWithType.vb: MemoryBuffer.New(String) - fullName.vb: Ubiquity.NET.Llvm.MemoryBuffer.New(String) - name.vb: New(String) -- uid: Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.Byte[],System.String) - commentId: M:Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.Byte[],System.String) - id: '#ctor(System.Byte[],System.String)' - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: MemoryBuffer(byte[], string?) - nameWithType: MemoryBuffer.MemoryBuffer(byte[], string?) - fullName: Ubiquity.NET.Llvm.MemoryBuffer.MemoryBuffer(byte[], string?) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class from a byte array - remarks: >- - This constructor makes a copy of the data array as a the memory in the buffer - - is unmanaged memory usable by the LLVM native code. It is released in the Dispose method - example: [] - syntax: - content: public MemoryBuffer(byte[] data, string? name = null) - parameters: - - id: data - type: System.Byte[] - description: Array of bytes to copy into the memory buffer - - id: name - type: System.String - description: Name of the buffer (for diagnostics) - content.vb: Public Sub New(data As Byte(), name As String = Nothing) - overload: Ubiquity.NET.Llvm.MemoryBuffer.#ctor* - nameWithType.vb: MemoryBuffer.New(Byte(), String) - fullName.vb: Ubiquity.NET.Llvm.MemoryBuffer.New(Byte(), String) - name.vb: New(Byte(), String) -- uid: Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.Byte*,Ubiquity.NET.InteropHelpers.size_t,Ubiquity.NET.InteropHelpers.LazyEncodedString,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.MemoryBuffer.#ctor(System.Byte*,Ubiquity.NET.InteropHelpers.size_t,Ubiquity.NET.InteropHelpers.LazyEncodedString,System.Boolean) - id: '#ctor(System.Byte*,Ubiquity.NET.InteropHelpers.size_t,Ubiquity.NET.InteropHelpers.LazyEncodedString,System.Boolean)' - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: MemoryBuffer(byte*, size_t, LazyEncodedString, bool) - nameWithType: MemoryBuffer.MemoryBuffer(byte*, size_t, LazyEncodedString, bool) - fullName: Ubiquity.NET.Llvm.MemoryBuffer.MemoryBuffer(byte*, Ubiquity.NET.InteropHelpers.size_t, Ubiquity.NET.InteropHelpers.LazyEncodedString, bool) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class to wrap an existing memory region - example: [] - syntax: - content: public MemoryBuffer(byte* data, size_t len, LazyEncodedString name, bool requiresNullTerminator) - parameters: - - id: data - type: System.Byte* - description: Data for the region [Must remain valid for the entire lifetime of this instance!] - - id: len - type: Ubiquity.NET.InteropHelpers.size_t - description: Length of the region - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Name of the buffer - - id: requiresNullTerminator - type: System.Boolean - description: Indicates if the data requires a null terminator - content.vb: Public Sub New(data As Byte*, len As size_t, name As LazyEncodedString, requiresNullTerminator As Boolean) - overload: Ubiquity.NET.Llvm.MemoryBuffer.#ctor* - nameWithType.vb: MemoryBuffer.New(Byte*, size_t, LazyEncodedString, Boolean) - fullName.vb: Ubiquity.NET.Llvm.MemoryBuffer.New(Byte*, Ubiquity.NET.InteropHelpers.size_t, Ubiquity.NET.InteropHelpers.LazyEncodedString, Boolean) - name.vb: New(Byte*, size_t, LazyEncodedString, Boolean) -- uid: Ubiquity.NET.Llvm.MemoryBuffer.Dispose - commentId: M:Ubiquity.NET.Llvm.MemoryBuffer.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: Dispose() - nameWithType: MemoryBuffer.Dispose() - fullName: Ubiquity.NET.Llvm.MemoryBuffer.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.MemoryBuffer.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.MemoryBuffer.Size - commentId: P:Ubiquity.NET.Llvm.MemoryBuffer.Size - id: Size - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: Size - nameWithType: MemoryBuffer.Size - fullName: Ubiquity.NET.Llvm.MemoryBuffer.Size - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Size - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the size of the buffer - example: [] - syntax: - content: public int Size { get; } - parameters: [] - return: - type: System.Int32 - content.vb: Public ReadOnly Property Size As Integer - overload: Ubiquity.NET.Llvm.MemoryBuffer.Size* -- uid: Ubiquity.NET.Llvm.MemoryBuffer.ToArray - commentId: M:Ubiquity.NET.Llvm.MemoryBuffer.ToArray - id: ToArray - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: ToArray() - nameWithType: MemoryBuffer.ToArray() - fullName: Ubiquity.NET.Llvm.MemoryBuffer.ToArray() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToArray - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 71 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets an array of bytes from the buffer - example: [] - syntax: - content: public byte[] ToArray() - return: - type: System.Byte[] - description: Array of bytes copied from the buffer - content.vb: Public Function ToArray() As Byte() - overload: Ubiquity.NET.Llvm.MemoryBuffer.ToArray* -- uid: Ubiquity.NET.Llvm.MemoryBuffer.op_Implicit(Ubiquity.NET.Llvm.MemoryBuffer)~System.ReadOnlySpan{System.Byte} - commentId: M:Ubiquity.NET.Llvm.MemoryBuffer.op_Implicit(Ubiquity.NET.Llvm.MemoryBuffer)~System.ReadOnlySpan{System.Byte} - id: op_Implicit(Ubiquity.NET.Llvm.MemoryBuffer)~System.ReadOnlySpan{System.Byte} - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: implicit operator ReadOnlySpan(MemoryBuffer) - nameWithType: MemoryBuffer.implicit operator ReadOnlySpan(MemoryBuffer) - fullName: Ubiquity.NET.Llvm.MemoryBuffer.implicit operator System.ReadOnlySpan(Ubiquity.NET.Llvm.MemoryBuffer) - type: Operator - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: op_Implicit - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 84 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Implicit convert to a - remarks: This is a simple wrapper around calling with default parameters - example: [] - syntax: - content: public static implicit operator ReadOnlySpan(MemoryBuffer buffer) - parameters: - - id: buffer - type: Ubiquity.NET.Llvm.MemoryBuffer - description: Buffer to convert - return: - type: System.ReadOnlySpan{System.Byte} - content.vb: Public Shared Widening Operator CType(buffer As MemoryBuffer) As ReadOnlySpan(Of Byte) - overload: Ubiquity.NET.Llvm.MemoryBuffer.op_Implicit* - nameWithType.vb: MemoryBuffer.CType(MemoryBuffer) - fullName.vb: Ubiquity.NET.Llvm.MemoryBuffer.CType(Ubiquity.NET.Llvm.MemoryBuffer) - name.vb: CType(MemoryBuffer) -- uid: Ubiquity.NET.Llvm.MemoryBuffer.Slice(System.Int32,System.Int32) - commentId: M:Ubiquity.NET.Llvm.MemoryBuffer.Slice(System.Int32,System.Int32) - id: Slice(System.Int32,System.Int32) - parent: Ubiquity.NET.Llvm.MemoryBuffer - langs: - - csharp - - vb - name: Slice(int, int) - nameWithType: MemoryBuffer.Slice(int, int) - fullName: Ubiquity.NET.Llvm.MemoryBuffer.Slice(int, int) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/MemoryBuffer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Slice - path: ../src/Ubiquity.NET.Llvm/MemoryBuffer.cs - startLine: 92 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create a for a slice of the buffer - remarks: Creates an efficient means of accessing the raw data of a buffer - example: [] - syntax: - content: public ReadOnlySpan Slice(int start = 0, int length = -1) - parameters: - - id: start - type: System.Int32 - description: Starting index for the slice [default = 0] - - id: length - type: System.Int32 - description: Length of the slice or -1 to include up to the end of the buffer [default = -1] - return: - type: System.ReadOnlySpan{System.Byte} - description: New Span - content.vb: Public Function Slice(start As Integer = 0, length As Integer = -1) As ReadOnlySpan(Of Byte) - overload: Ubiquity.NET.Llvm.MemoryBuffer.Slice* - nameWithType.vb: MemoryBuffer.Slice(Integer, Integer) - fullName.vb: Ubiquity.NET.Llvm.MemoryBuffer.Slice(Integer, Integer) - name.vb: Slice(Integer, Integer) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer_IsDisposed - name: IsDisposed - nameWithType: MemoryBuffer.IsDisposed - fullName: Ubiquity.NET.Llvm.MemoryBuffer.IsDisposed -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.MemoryBuffer - commentId: T:Ubiquity.NET.Llvm.MemoryBuffer - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.MemoryBuffer.html - name: MemoryBuffer - nameWithType: MemoryBuffer - fullName: Ubiquity.NET.Llvm.MemoryBuffer -- uid: Ubiquity.NET.Llvm.MemoryBuffer.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.MemoryBuffer.#ctor - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer__ctor_System_String_ - name: MemoryBuffer - nameWithType: MemoryBuffer.MemoryBuffer - fullName: Ubiquity.NET.Llvm.MemoryBuffer.MemoryBuffer - nameWithType.vb: MemoryBuffer.New - fullName.vb: Ubiquity.NET.Llvm.MemoryBuffer.New - name.vb: New -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.Byte[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte[] - nameWithType: byte[] - fullName: byte[] - nameWithType.vb: Byte() - fullName.vb: Byte() - name.vb: Byte() - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '[' - - name: ']' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ( - - name: ) -- uid: System.Byte* - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte* - nameWithType: byte* - fullName: byte* - nameWithType.vb: Byte* - fullName.vb: Byte* - name.vb: Byte* - spec.csharp: - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' - spec.vb: - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '*' -- uid: Ubiquity.NET.InteropHelpers.size_t - commentId: T:Ubiquity.NET.InteropHelpers.size_t - parent: Ubiquity.NET.InteropHelpers - name: size_t - nameWithType: size_t - fullName: Ubiquity.NET.InteropHelpers.size_t -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.MemoryBuffer.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.MemoryBuffer.Dispose - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer_Dispose - name: Dispose - nameWithType: MemoryBuffer.Dispose - fullName: Ubiquity.NET.Llvm.MemoryBuffer.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.MemoryBuffer.Size* - commentId: Overload:Ubiquity.NET.Llvm.MemoryBuffer.Size - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer_Size - name: Size - nameWithType: MemoryBuffer.Size - fullName: Ubiquity.NET.Llvm.MemoryBuffer.Size -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.MemoryBuffer.ToArray* - commentId: Overload:Ubiquity.NET.Llvm.MemoryBuffer.ToArray - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer_ToArray - name: ToArray - nameWithType: MemoryBuffer.ToArray - fullName: Ubiquity.NET.Llvm.MemoryBuffer.ToArray -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.MemoryBuffer.Slice(System.Int32,System.Int32) - commentId: M:Ubiquity.NET.Llvm.MemoryBuffer.Slice(System.Int32,System.Int32) - isExternal: true - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer_Slice_System_Int32_System_Int32_ - name: Slice(int, int) - nameWithType: MemoryBuffer.Slice(int, int) - fullName: Ubiquity.NET.Llvm.MemoryBuffer.Slice(int, int) - nameWithType.vb: MemoryBuffer.Slice(Integer, Integer) - fullName.vb: Ubiquity.NET.Llvm.MemoryBuffer.Slice(Integer, Integer) - name.vb: Slice(Integer, Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.MemoryBuffer.Slice(System.Int32,System.Int32) - name: Slice - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer_Slice_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.MemoryBuffer.Slice(System.Int32,System.Int32) - name: Slice - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer_Slice_System_Int32_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ',' - - name: " " - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.MemoryBuffer.op_Implicit* - commentId: Overload:Ubiquity.NET.Llvm.MemoryBuffer.op_Implicit - name: implicit operator - nameWithType: MemoryBuffer.implicit operator - fullName: Ubiquity.NET.Llvm.MemoryBuffer.implicit operator - nameWithType.vb: MemoryBuffer.CType - fullName.vb: Ubiquity.NET.Llvm.MemoryBuffer.CType - name.vb: CType - spec.csharp: - - name: implicit - - name: " " - - name: operator -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: Ubiquity.NET.Llvm.MemoryBuffer.Slice* - commentId: Overload:Ubiquity.NET.Llvm.MemoryBuffer.Slice - href: Ubiquity.NET.Llvm.MemoryBuffer.html#Ubiquity_NET_Llvm_MemoryBuffer_Slice_System_Int32_System_Int32_ - name: Slice - nameWithType: MemoryBuffer.Slice - fullName: Ubiquity.NET.Llvm.MemoryBuffer.Slice diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.yml deleted file mode 100644 index ee1b408452..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.yml +++ /dev/null @@ -1,571 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - id: ConstantAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant - langs: - - csharp - - vb - name: ConstantAsMetadata - nameWithType: ConstantAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ConstantAsMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantAsMetadata - path: ../src/Ubiquity.NET.Llvm/Metadata/ConstantAsMetadata.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Constant as metadata - example: [] - syntax: - content: 'public class ConstantAsMetadata : ValueAsMetadata, IEquatable' - content.vb: Public Class ConstantAsMetadata Inherits ValueAsMetadata Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant - commentId: P:Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant - id: Constant - parent: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - langs: - - csharp - - vb - name: Constant - nameWithType: ConstantAsMetadata.Constant - fullName: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ConstantAsMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Constant - path: ../src/Ubiquity.NET.Llvm/Metadata/ConstantAsMetadata.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the this node wraps - example: [] - syntax: - content: public Constant Constant { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Constant - content.vb: Public ReadOnly Property Constant As Constant - overload: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant* -references: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html - name: ValueAsMetadata - nameWithType: ValueAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Value - name: Value - nameWithType: ValueAsMetadata.Value - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Type - name: Type - nameWithType: ValueAsMetadata.Type - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Context - name: Context - nameWithType: ValueAsMetadata.Context - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: IrMetadata.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant - commentId: P:Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant - href: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ConstantAsMetadata_Constant - name: Constant - nameWithType: ConstantAsMetadata.Constant - fullName: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant -- uid: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant - href: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ConstantAsMetadata_Constant - name: Constant - nameWithType: ConstantAsMetadata.Constant - fullName: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.Constant -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.IrMetadata.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.IrMetadata.yml deleted file mode 100644 index 132ce30505..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.IrMetadata.yml +++ /dev/null @@ -1,797 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - id: IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - langs: - - csharp - - vb - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IrMetadata - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Root of the LLVM IR Metadata hierarchy - example: [] - syntax: - content: 'public abstract class IrMetadata : IEquatable' - content.vb: Public MustInherit Class IrMetadata Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - derivedClasses: - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.Metadata.MDString - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - langs: - - csharp - - vb - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: IrMetadata.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReplaceAllUsesWith - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 109 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Replace all uses of this descriptor with another - example: [] - syntax: - content: public virtual void ReplaceAllUsesWith(IrMetadata other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: New descriptor to replace this one with - content.vb: Public Overridable Sub ReplaceAllUsesWith(other As IrMetadata) - overload: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith* -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - id: ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - langs: - - csharp - - vb - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 123 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Formats the metadata as a string - example: [] - syntax: - content: public override string ToString() - return: - type: System.String - description: IrMetadata as a string - content.vb: Public Overrides Function ToString() As String - overridden: System.Object.ToString - overload: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString* -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - langs: - - csharp - - vb - name: Equals(IrMetadata?) - nameWithType: IrMetadata.Equals(IrMetadata?) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(IrMetadata? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As IrMetadata) As Boolean - overload: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: IrMetadata.Equals(IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: Equals(IrMetadata) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - id: Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: IrMetadata.Equals(object?) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 132 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Determines whether the specified object is equal to the current object. - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: The object to compare with the current object. - return: - type: System.Boolean - description: true if the specified object is equal to the current object; otherwise, false. - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.Object.Equals(System.Object) - overload: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals* - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 135 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Serves as the default hash function. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A hash code for the current object. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.Object.GetHashCode - overload: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode* -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - id: Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - langs: - - csharp - - vb - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kind - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 138 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a value indicating this metadata's kind - example: [] - syntax: - content: public MetadataKind Kind { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind - content.vb: Public ReadOnly Property Kind As MetadataKind - overload: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind* -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - id: Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - langs: - - csharp - - vb - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Handle - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 141 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the internal native handle - example: [] - syntax: - content: protected LLVMMetadataRef Handle { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Interop.LLVMMetadataRef - content.vb: Protected ReadOnly Property Handle As LLVMMetadataRef - overload: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle* -references: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith - nameWithType: IrMetadata.ReplaceAllUsesWith - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString - nameWithType: IrMetadata.ToString - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals - nameWithType: IrMetadata.Equals - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(IrMetadata) - nameWithType: IEquatable.Equals(IrMetadata) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: IEquatable(Of IrMetadata).Equals(IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata).Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode - nameWithType: IrMetadata.GetHashCode - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataKind - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: MetadataKind - nameWithType: MetadataKind - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: Ubiquity.NET.Llvm.Interop.LLVMMetadataRef - commentId: T:Ubiquity.NET.Llvm.Interop.LLVMMetadataRef - parent: Ubiquity.NET.Llvm.Interop - name: LLVMMetadataRef - nameWithType: LLVMMetadataRef - fullName: Ubiquity.NET.Llvm.Interop.LLVMMetadataRef -- uid: Ubiquity.NET.Llvm.Interop - commentId: N:Ubiquity.NET.Llvm.Interop - name: Ubiquity.NET.Llvm.Interop - nameWithType: Ubiquity.NET.Llvm.Interop - fullName: Ubiquity.NET.Llvm.Interop - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - - name: . - - uid: Ubiquity.NET.Llvm.Interop - name: Interop - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - - name: . - - uid: Ubiquity.NET.Llvm.Interop - name: Interop diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.LocalAsMetadata.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.LocalAsMetadata.yml deleted file mode 100644 index e4aaa64ec2..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.LocalAsMetadata.yml +++ /dev/null @@ -1,475 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.LocalAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.LocalAsMetadata - id: LocalAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - children: [] - langs: - - csharp - - vb - name: LocalAsMetadata - nameWithType: LocalAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.LocalAsMetadata - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/LocalAsMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LocalAsMetadata - path: ../src/Ubiquity.NET.Llvm/Metadata/LocalAsMetadata.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Contains a local Value as IrMetadata - example: [] - syntax: - content: 'public class LocalAsMetadata : ValueAsMetadata, IEquatable' - content.vb: Public Class LocalAsMetadata Inherits ValueAsMetadata Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html - name: ValueAsMetadata - nameWithType: ValueAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Value - name: Value - nameWithType: ValueAsMetadata.Value - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Type - name: Type - nameWithType: ValueAsMetadata.Type - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Context - name: Context - nameWithType: ValueAsMetadata.Context - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: IrMetadata.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDNode.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDNode.yml deleted file mode 100644 index 10351466e1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDNode.yml +++ /dev/null @@ -1,1041 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - id: MDNode - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - langs: - - csharp - - vb - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MDNode - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: IrMetadata node for LLVM IR Bitcode modules - remarks: >- -

IrMetadata nodes may be uniqued, or distinct. Temporary nodes with - - support for may be used to - - defer uniqueing until the forward references are known.

- -

There is limited support for - - at construction. At construction, if any operand is a temporary or otherwise unresolved - - uniqued node, the node itself is unresolved. As soon as all operands become resolved - - the node will no longer support

- example: [] - syntax: - content: 'public class MDNode : IrMetadata, IEquatable' - content.vb: Public Class MDNode Inherits IrMetadata Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - derivedClasses: - - Ubiquity.NET.Llvm.DebugInfo.DIExpression - - Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - - Ubiquity.NET.Llvm.DebugInfo.DILocation - - Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - - Ubiquity.NET.Llvm.DebugInfo.DINode - - Ubiquity.NET.Llvm.Metadata.MDTuple - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - id: Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the this node belongs to - example: [] - syntax: - content: public IContext Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: Public ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.Metadata.MDNode.Context* -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - id: IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDeleted - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a value indicating whether this node was deleted - example: [] - syntax: - content: public bool IsDeleted { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDeleted As Boolean - overload: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted* -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - id: IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsTemporary - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a value indicating whether this node is a temporary - example: [] - syntax: - content: public bool IsTemporary { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsTemporary As Boolean - overload: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary* -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - id: IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsResolved - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a value indicating whether this node is resolved - remarks: >- -

If is true, then this always - - returns false; if is true, - - this always returns true.

- - -

If is true then this returns true - - if this node has already dropped RAUW support (because all operands are resolved).

- example: [] - syntax: - content: public bool IsResolved { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsResolved As Boolean - overload: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved* -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - id: IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsUniqued - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a value indicating whether this node is uniqued - example: [] - syntax: - content: public bool IsUniqued { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsUniqued As Boolean - overload: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued* -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - id: IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDistinct - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a value indicating whether this node is distinct - example: [] - syntax: - content: public bool IsDistinct { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDistinct As Boolean - overload: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct* -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - id: Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Operands - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the operands for this node, if any - example: [] - syntax: - content: public MetadataOperandCollection Operands { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - content.vb: Public ReadOnly Property Operands As MetadataOperandCollection - overload: Ubiquity.NET.Llvm.Metadata.MDNode.Operands* -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReplaceAllUsesWith - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 59 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Replace all uses of this node with a new node - example: [] - syntax: - content: public override void ReplaceAllUsesWith(IrMetadata other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: Node to replace this one with - content.vb: Public Overrides Sub ReplaceAllUsesWith(other As IrMetadata) - overridden: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - overload: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith* -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - id: GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetOperand - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets an operand by index as a specific type - example: [] - syntax: - content: 'public T? GetOperand(int index) where T : IrMetadata' - parameters: - - id: index - type: System.Int32 - description: Index of the operand - typeParameters: - - id: T - description: Type of the operand - return: - type: '{T}' - description: Operand - content.vb: Public Function GetOperand(Of T As IrMetadata)(index As Integer) As T - overload: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand* - exceptions: - - type: System.InvalidCastException - commentId: T:System.InvalidCastException - description: When the operand is not castable to T - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: When the index is out of range for the operands of this node - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - id: GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - langs: - - csharp - - vb - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetOperandString - path: ../src/Ubiquity.NET.Llvm/Metadata/MDNode.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a string operand by index - example: [] - syntax: - content: public string GetOperandString(int index) - parameters: - - id: index - type: System.Int32 - description: Index of the operand - return: - type: System.String - description: String value of the operand - content.vb: Public Function GetOperandString(index As Integer) As String - overload: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString* - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) -references: -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.Context - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.html - name: MetadataOperandCollection - nameWithType: MetadataOperandCollection - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: IrMetadata.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith - nameWithType: MDNode.ReplaceAllUsesWith - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith -- uid: System.InvalidCastException - commentId: T:System.InvalidCastException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidcastexception - name: InvalidCastException - nameWithType: InvalidCastException - fullName: System.InvalidCastException -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand - nameWithType: MDNode.GetOperand - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString - nameWithType: MDNode.GetOperandString - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDString.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDString.yml deleted file mode 100644 index ea91607af4..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDString.yml +++ /dev/null @@ -1,492 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.MDString - commentId: T:Ubiquity.NET.Llvm.Metadata.MDString - id: MDString - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.MDString.ToString - langs: - - csharp - - vb - name: MDString - nameWithType: MDString - fullName: Ubiquity.NET.Llvm.Metadata.MDString - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDString.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MDString - path: ../src/Ubiquity.NET.Llvm/Metadata/MDString.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Stores a string in IrMetadata - example: [] - syntax: - content: 'public class MDString : IrMetadata, IEquatable' - content.vb: Public Class MDString Inherits IrMetadata Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.Metadata.MDString.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.MDString.ToString - id: ToString - parent: Ubiquity.NET.Llvm.Metadata.MDString - langs: - - csharp - - vb - name: ToString() - nameWithType: MDString.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.MDString.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDString.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/Metadata/MDString.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the string from the metadata node - example: [] - syntax: - content: public override string ToString() - return: - type: System.String - description: String this node wraps - content.vb: Public Overrides Function ToString() As String - overridden: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - overload: Ubiquity.NET.Llvm.Metadata.MDString.ToString* -references: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: IrMetadata.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDString.ToString* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MDString.ToString - href: Ubiquity.NET.Llvm.Metadata.MDString.html#Ubiquity_NET_Llvm_Metadata_MDString_ToString - name: ToString - nameWithType: MDString.ToString - fullName: Ubiquity.NET.Llvm.Metadata.MDString.ToString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDTuple.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDTuple.yml deleted file mode 100644 index 04b460298d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MDTuple.yml +++ /dev/null @@ -1,580 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.MDTuple - commentId: T:Ubiquity.NET.Llvm.Metadata.MDTuple - id: MDTuple - parent: Ubiquity.NET.Llvm.Metadata - children: [] - langs: - - csharp - - vb - name: MDTuple - nameWithType: MDTuple - fullName: Ubiquity.NET.Llvm.Metadata.MDTuple - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MDTuple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MDTuple - path: ../src/Ubiquity.NET.Llvm/Metadata/MDTuple.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Tuple of IrMetadata nodes - remarks: This acts as a container of nodes in the metadata hierarchy - example: [] - syntax: - content: 'public class MDTuple : MDNode, IEquatable' - content.vb: Public Class MDTuple Inherits MDNode Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.MDNode.Context - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - - Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - - Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - - Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - - Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - - Ubiquity.NET.Llvm.Metadata.MDNode.Operands - - Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - - Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -references: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Context - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Context - name: Context - nameWithType: MDNode.Context - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Context -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDeleted - name: IsDeleted - nameWithType: MDNode.IsDeleted - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDeleted -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsTemporary - name: IsTemporary - nameWithType: MDNode.IsTemporary - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsTemporary -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsResolved - name: IsResolved - nameWithType: MDNode.IsResolved - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsResolved -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsUniqued - name: IsUniqued - nameWithType: MDNode.IsUniqued - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsUniqued -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_IsDistinct - name: IsDistinct - nameWithType: MDNode.IsDistinct - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.IsDistinct -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MDNode.Operands - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_Operands - name: Operands - nameWithType: MDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.Operands -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: MDNode.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - name: GetOperand(int) - nameWithType: MDNode.GetOperand(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(int) - nameWithType.vb: MDNode.GetOperand(Of T)(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand(Of T)(Integer) - name.vb: GetOperand(Of T)(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: < - - name: T - - name: '>' - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperand``1(System.Int32) - name: GetOperand - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperand__1_System_Int32_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - commentId: M:Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MDNode - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - name: GetOperandString(int) - nameWithType: MDNode.GetOperandString(int) - fullName: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(int) - nameWithType.vb: MDNode.GetOperandString(Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(Integer) - name.vb: GetOperandString(Integer) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.MDNode.GetOperandString(System.Int32) - name: GetOperandString - href: Ubiquity.NET.Llvm.Metadata.MDNode.html#Ubiquity_NET_Llvm_Metadata_MDNode_GetOperandString_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataAsValue.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataAsValue.yml deleted file mode 100644 index 152503a9c6..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataAsValue.yml +++ /dev/null @@ -1,737 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataAsValue - id: MetadataAsValue - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands - langs: - - csharp - - vb - name: MetadataAsValue - nameWithType: MetadataAsValue - fullName: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MetadataAsValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MetadataAsValue - path: ../src/Ubiquity.NET.Llvm/Metadata/MetadataAsValue.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Wraps metadata as a - example: [] - syntax: - content: 'public class MetadataAsValue : Value, IEquatable' - content.vb: Public Class MetadataAsValue Inherits Value Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands - id: Operands - parent: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - langs: - - csharp - - vb - name: Operands - nameWithType: MetadataAsValue.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MetadataAsValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Operands - path: ../src/Ubiquity.NET.Llvm/Metadata/MetadataAsValue.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a list of the operands for the IrMetadata - example: [] - syntax: - content: public ValueOperandListCollection Operands { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Value} - content.vb: Public ReadOnly Property Operands As ValueOperandListCollection(Of Value) - overload: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands* -references: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(MetadataAsValue, string) - nameWithType: ValueExtensions.RegisterName(MetadataAsValue, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Metadata.MetadataAsValue, string) - nameWithType.vb: ValueExtensions.RegisterName(Of MetadataAsValue)(MetadataAsValue, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Metadata.MetadataAsValue)(Ubiquity.NET.Llvm.Metadata.MetadataAsValue, String) - name.vb: RegisterName(Of MetadataAsValue)(MetadataAsValue, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Metadata.MetadataAsValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - name: MetadataAsValue - href: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - name: MetadataAsValue - href: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Metadata.MetadataAsValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - name: MetadataAsValue - href: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - name: MetadataAsValue - href: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands - href: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.html#Ubiquity_NET_Llvm_Metadata_MetadataAsValue_Operands - name: Operands - nameWithType: MetadataAsValue.Operands - fullName: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.Operands -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Value} - commentId: T:Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Value} - parent: Ubiquity.NET.Llvm.Values - definition: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - name: ValueOperandListCollection - nameWithType: ValueOperandListCollection - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection - nameWithType.vb: ValueOperandListCollection(Of Value) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: ValueOperandListCollection(Of Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - commentId: T:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - name: ValueOperandListCollection - nameWithType: ValueOperandListCollection - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection - nameWithType.vb: ValueOperandListCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T) - name.vb: ValueOperandListCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataKind.yml deleted file mode 100644 index 9fc3cc9661..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataKind.yml +++ /dev/null @@ -1,946 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataKind - id: MetadataKind - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.MetadataKind.ConstantAsMetadata - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIBasicType - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompileUnit - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompositeType - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIDerivedType - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIEnumerator - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIExpression - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIFile - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariable - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariableExpression - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIImportedEntity - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlock - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlockFile - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocalVariable - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocation - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacro - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacroFile - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIModule - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DINamespace - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DIObjCProperty - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubprogram - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubrange - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubroutineType - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateTypeParameter - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateValueParameter - - Ubiquity.NET.Llvm.Metadata.MetadataKind.DistinctMDOperandPlaceholder - - Ubiquity.NET.Llvm.Metadata.MetadataKind.GenericDINode - - Ubiquity.NET.Llvm.Metadata.MetadataKind.LocalAsMetadata - - Ubiquity.NET.Llvm.Metadata.MetadataKind.MDString - - Ubiquity.NET.Llvm.Metadata.MetadataKind.MDTuple - langs: - - csharp - - vb - name: MetadataKind - nameWithType: MetadataKind - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MetadataKind - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Enumeration to define metadata type kind - example: [] - syntax: - content: public enum MetadataKind - content.vb: Public Enum MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.MDString - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.MDString - id: MDString - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: MDString - nameWithType: MetadataKind.MDString - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.MDString - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MDString - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: IrMetadata string - example: [] - syntax: - content: MDString = 0 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.ConstantAsMetadata - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.ConstantAsMetadata - id: ConstantAsMetadata - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: ConstantAsMetadata - nameWithType: MetadataKind.ConstantAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.ConstantAsMetadata - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantAsMetadata - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Constant Value as metadata - example: [] - syntax: - content: ConstantAsMetadata = 1 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.LocalAsMetadata - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.LocalAsMetadata - id: LocalAsMetadata - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: LocalAsMetadata - nameWithType: MetadataKind.LocalAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.LocalAsMetadata - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LocalAsMetadata - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Local value as metadata - example: [] - syntax: - content: LocalAsMetadata = 2 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DistinctMDOperandPlaceholder - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DistinctMDOperandPlaceholder - id: DistinctMDOperandPlaceholder - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DistinctMDOperandPlaceholder - nameWithType: MetadataKind.DistinctMDOperandPlaceholder - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DistinctMDOperandPlaceholder - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DistinctMDOperandPlaceholder - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Distinct metadata place holder - example: [] - syntax: - content: DistinctMDOperandPlaceholder = 3 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.MDTuple - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.MDTuple - id: MDTuple - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: MDTuple - nameWithType: MetadataKind.MDTuple - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.MDTuple - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MDTuple - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: IrMetadata tuple - example: [] - syntax: - content: MDTuple = 5 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocation - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocation - id: DILocation - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DILocation - nameWithType: MetadataKind.DILocation - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocation - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILocation - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info location - example: [] - syntax: - content: DILocation = 6 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIExpression - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIExpression - id: DIExpression - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIExpression - nameWithType: MetadataKind.DIExpression - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIExpression - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIExpression - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info expression - example: [] - syntax: - content: DIExpression = 7 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariableExpression - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariableExpression - id: DIGlobalVariableExpression - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIGlobalVariableExpression - nameWithType: MetadataKind.DIGlobalVariableExpression - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariableExpression - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIGlobalVariableExpression - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info global variable expression - example: [] - syntax: - content: DIGlobalVariableExpression = 8 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.GenericDINode - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.GenericDINode - id: GenericDINode - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: GenericDINode - nameWithType: MetadataKind.GenericDINode - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.GenericDINode - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GenericDINode - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Generic Debug info node - example: [] - syntax: - content: GenericDINode = 9 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubrange - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubrange - id: DISubrange - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DISubrange - nameWithType: MetadataKind.DISubrange - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubrange - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DISubrange - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info sub range - example: [] - syntax: - content: DISubrange = 10 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIEnumerator - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIEnumerator - id: DIEnumerator - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIEnumerator - nameWithType: MetadataKind.DIEnumerator - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIEnumerator - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIEnumerator - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info enumerator - example: [] - syntax: - content: DIEnumerator = 11 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIBasicType - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIBasicType - id: DIBasicType - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIBasicType - nameWithType: MetadataKind.DIBasicType - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIBasicType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIBasicType - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info basic type - example: [] - syntax: - content: DIBasicType = 12 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIDerivedType - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIDerivedType - id: DIDerivedType - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIDerivedType - nameWithType: MetadataKind.DIDerivedType - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIDerivedType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIDerivedType - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info derived type - example: [] - syntax: - content: DIDerivedType = 13 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompositeType - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompositeType - id: DICompositeType - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DICompositeType - nameWithType: MetadataKind.DICompositeType - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompositeType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DICompositeType - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info composite type - example: [] - syntax: - content: DICompositeType = 14 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubroutineType - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubroutineType - id: DISubroutineType - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DISubroutineType - nameWithType: MetadataKind.DISubroutineType - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubroutineType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DISubroutineType - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info subroutine type - example: [] - syntax: - content: DISubroutineType = 15 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIFile - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIFile - id: DIFile - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIFile - nameWithType: MetadataKind.DIFile - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIFile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIFile - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info file reference - example: [] - syntax: - content: DIFile = 16 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompileUnit - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompileUnit - id: DICompileUnit - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DICompileUnit - nameWithType: MetadataKind.DICompileUnit - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DICompileUnit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DICompileUnit - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info Compilation Unit - example: [] - syntax: - content: DICompileUnit = 17 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubprogram - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubprogram - id: DISubprogram - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DISubprogram - nameWithType: MetadataKind.DISubprogram - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DISubprogram - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DISubprogram - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info sub program - example: [] - syntax: - content: DISubprogram = 18 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlock - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlock - id: DILexicalBlock - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DILexicalBlock - nameWithType: MetadataKind.DILexicalBlock - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlock - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILexicalBlock - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info lexical block - example: [] - syntax: - content: DILexicalBlock = 19 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlockFile - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlockFile - id: DILexicalBlockFile - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DILexicalBlockFile - nameWithType: MetadataKind.DILexicalBlockFile - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DILexicalBlockFile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILexicalBlockFile - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info lexical block file - example: [] - syntax: - content: DILexicalBlockFile = 20 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DINamespace - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DINamespace - id: DINamespace - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DINamespace - nameWithType: MetadataKind.DINamespace - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DINamespace - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DINamespace - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info namespace - example: [] - syntax: - content: DINamespace = 21 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIModule - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIModule - id: DIModule - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIModule - nameWithType: MetadataKind.DIModule - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIModule - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIModule - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info fro a module - example: [] - syntax: - content: DIModule = 22 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateTypeParameter - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateTypeParameter - id: DITemplateTypeParameter - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DITemplateTypeParameter - nameWithType: MetadataKind.DITemplateTypeParameter - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateTypeParameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DITemplateTypeParameter - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info for a template type parameter - example: [] - syntax: - content: DITemplateTypeParameter = 23 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateValueParameter - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateValueParameter - id: DITemplateValueParameter - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DITemplateValueParameter - nameWithType: MetadataKind.DITemplateValueParameter - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DITemplateValueParameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DITemplateValueParameter - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info for a template value parameter - example: [] - syntax: - content: DITemplateValueParameter = 24 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariable - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariable - id: DIGlobalVariable - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIGlobalVariable - nameWithType: MetadataKind.DIGlobalVariable - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIGlobalVariable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIGlobalVariable - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info for a global variable - example: [] - syntax: - content: DIGlobalVariable = 25 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocalVariable - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocalVariable - id: DILocalVariable - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DILocalVariable - nameWithType: MetadataKind.DILocalVariable - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DILocalVariable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DILocalVariable - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info for a local variable - example: [] - syntax: - content: DILocalVariable = 26 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIObjCProperty - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIObjCProperty - id: DIObjCProperty - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIObjCProperty - nameWithType: MetadataKind.DIObjCProperty - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIObjCProperty - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIObjCProperty - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info for an Objective C style property - example: [] - syntax: - content: DIObjCProperty = 28 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIImportedEntity - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIImportedEntity - id: DIImportedEntity - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIImportedEntity - nameWithType: MetadataKind.DIImportedEntity - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIImportedEntity - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIImportedEntity - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info for an imported entity - example: [] - syntax: - content: DIImportedEntity = 29 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacro - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacro - id: DIMacro - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIMacro - nameWithType: MetadataKind.DIMacro - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacro - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIMacro - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 97 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info for a macro - example: [] - syntax: - content: DIMacro = 31 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacroFile - commentId: F:Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacroFile - id: DIMacroFile - parent: Ubiquity.NET.Llvm.Metadata.MetadataKind - langs: - - csharp - - vb - name: DIMacroFile - nameWithType: MetadataKind.DIMacroFile - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind.DIMacroFile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DIMacroFile - path: ../src/Ubiquity.NET.Llvm/Metadata/IrMetadata.cs - startLine: 100 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Debug info for a macro file - example: [] - syntax: - content: DIMacroFile = 32 - return: - type: Ubiquity.NET.Llvm.Metadata.MetadataKind -references: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataKind - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: MetadataKind - nameWithType: MetadataKind - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml deleted file mode 100644 index e3caff57a7..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.yml +++ /dev/null @@ -1,1111 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - id: MetadataOperandCollection - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count - - Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator - - Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand``1(System.Index) - - Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Item(System.Int32) - langs: - - csharp - - vb - name: MetadataOperandCollection - nameWithType: MetadataOperandCollection - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MetadataOperandCollection - path: ../src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Support class to provide read/update semantics to the operands of a container element - remarks: >- - This class is used to implement Operand lists of elements including sub lists based on an offset. - - The latter case is useful for types that expose some fixed set of operands as properties and some - - arbitrary number of additional items as operands. - example: [] - syntax: - content: 'public sealed class MetadataOperandCollection : IOperandCollection, IReadOnlyCollection, IEnumerable, IEnumerable' - content.vb: Public NotInheritable Class MetadataOperandCollection Implements IOperandCollection(Of IrMetadata), IReadOnlyCollection(Of IrMetadata), IEnumerable(Of IrMetadata), IEnumerable - inheritance: - - System.Object - implements: - - Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - - System.Collections.IEnumerable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Item(System.Int32) - id: Item(System.Int32) - parent: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - langs: - - csharp - - vb - name: this[int] - nameWithType: MetadataOperandCollection.this[int] - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.this[int] - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: this[] - path: ../src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets or sets the specified element in the collection - example: [] - syntax: - content: public IrMetadata? this[int index] { get; set; } - parameters: - - id: index - type: System.Int32 - description: index of the element in the collection - return: - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: The element in the collection - content.vb: Public Default Property this[](index As Integer) As IrMetadata - overload: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Item* - implements: - - Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Item(System.Int32) - nameWithType.vb: MetadataOperandCollection.this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.this[](Integer) - name.vb: this[](Integer) -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count - commentId: P:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count - id: Count - parent: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - langs: - - csharp - - vb - name: Count - nameWithType: MetadataOperandCollection.Count - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Count - path: ../src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the count of operands in this collection - example: [] - syntax: - content: public int Count { get; } - parameters: [] - return: - type: System.Int32 - content.vb: Public ReadOnly Property Count As Integer - overload: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count* - implements: - - System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Count -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator - id: GetEnumerator - parent: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - langs: - - csharp - - vb - name: GetEnumerator() - nameWithType: MetadataOperandCollection.GetEnumerator() - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetEnumerator - path: ../src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets an enumerator for the operands in this collection - example: [] - syntax: - content: public IEnumerator GetEnumerator() - return: - type: System.Collections.Generic.IEnumerator{Ubiquity.NET.Llvm.Metadata.IrMetadata} - description: Enumerator of operands - content.vb: Public Function GetEnumerator() As IEnumerator(Of IrMetadata) - overload: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator* - implements: - - System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.GetEnumerator -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - langs: - - csharp - - vb - name: Contains(IrMetadata?) - nameWithType: MetadataOperandCollection.Contains(IrMetadata?) - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Contains - path: ../src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets a value indicating whether the collection contains the specified item or not - example: [] - syntax: - content: public bool Contains(IrMetadata? item) - parameters: - - id: item - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: Item to look for - return: - type: System.Boolean - description: true if the item is found - content.vb: Public Function Contains(item As IrMetadata) As Boolean - overload: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains* - implements: - - Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: MetadataOperandCollection.Contains(IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: Contains(IrMetadata) -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand``1(System.Index) - commentId: M:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand``1(System.Index) - id: GetOperand``1(System.Index) - parent: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - langs: - - csharp - - vb - name: GetOperand(Index) - nameWithType: MetadataOperandCollection.GetOperand(Index) - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand(System.Index) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetOperand - path: ../src/Ubiquity.NET.Llvm/Metadata/MetadataOperandCollection.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Specialized indexer to get the element as a specific derived type - remarks: This provides a common (and likely internally optimized) means of getting an element as a specific type - example: [] - syntax: - content: 'public TItem? GetOperand(Index i) where TItem : IrMetadata' - parameters: - - id: i - type: System.Index - description: index for the item - typeParameters: - - id: TItem - description: Type of the element (must be derived from - return: - type: '{TItem}' - description: Item at the specified index - content.vb: Public Function GetOperand(Of TItem As IrMetadata)(i As Index) As TItem - overload: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: index is out of range for the collection - - type: System.InvalidCastException - commentId: T:System.InvalidCastException - description: If the element at the index is not castable to TItem - nameWithType.vb: MetadataOperandCollection.GetOperand(Of TItem)(Index) - fullName.vb: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand(Of TItem)(System.Index) - name.vb: GetOperand(Of TItem)(Index) -references: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: Ubiquity.NET.Llvm - definition: Ubiquity.NET.Llvm.IOperandCollection`1 - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IOperandCollection(Of IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of IrMetadata) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IReadOnlyCollection(Of IrMetadata) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of IrMetadata) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEnumerable(Of IrMetadata) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.IOperandCollection`1 - commentId: T:Ubiquity.NET.Llvm.IOperandCollection`1 - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Item* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Item - href: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.html#Ubiquity_NET_Llvm_Metadata_MetadataOperandCollection_Item_System_Int32_ - name: this - nameWithType: MetadataOperandCollection.this - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.this - nameWithType.vb: MetadataOperandCollection.this[] - fullName.vb: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.this[] - name.vb: this[] -- uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - definition: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: IOperandCollection.this[int] - fullName: Ubiquity.NET.Llvm.IOperandCollection.this[int] - nameWithType.vb: IOperandCollection(Of IrMetadata).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of Ubiquity.NET.Llvm.Metadata.IrMetadata).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: IOperandCollection.this[int] - fullName: Ubiquity.NET.Llvm.IOperandCollection.this[int] - nameWithType.vb: IOperandCollection(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count - href: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.html#Ubiquity_NET_Llvm_Metadata_MetadataOperandCollection_Count - name: Count - nameWithType: MetadataOperandCollection.Count - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Count -- uid: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Count - parent: System.Collections.Generic.IReadOnlyCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - definition: System.Collections.Generic.IReadOnlyCollection`1.Count - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of IrMetadata).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of Ubiquity.NET.Llvm.Metadata.IrMetadata).Count -- uid: System.Collections.Generic.IReadOnlyCollection`1.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection`1.Count - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator - href: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.html#Ubiquity_NET_Llvm_Metadata_MetadataOperandCollection_GetEnumerator - name: GetEnumerator - nameWithType: MetadataOperandCollection.GetEnumerator - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetEnumerator -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.GetEnumerator - parent: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - definition: System.Collections.Generic.IEnumerable`1.GetEnumerator - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of IrMetadata).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.IrMetadata}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerator{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.Collections.Generic.IEnumerator{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerator`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - name: IEnumerator - nameWithType: IEnumerator - fullName: System.Collections.Generic.IEnumerator - nameWithType.vb: IEnumerator(Of IrMetadata) - fullName.vb: System.Collections.Generic.IEnumerator(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEnumerator(Of IrMetadata) - spec.csharp: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable`1.GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerator`1 - commentId: T:System.Collections.Generic.IEnumerator`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - name: IEnumerator - nameWithType: IEnumerator - fullName: System.Collections.Generic.IEnumerator - nameWithType.vb: IEnumerator(Of T) - fullName.vb: System.Collections.Generic.IEnumerator(Of T) - name.vb: IEnumerator(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains - href: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.html#Ubiquity_NET_Llvm_Metadata_MetadataOperandCollection_Contains_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Contains - nameWithType: MetadataOperandCollection.Contains - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.Contains -- uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata} - definition: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - name: Contains(IrMetadata) - nameWithType: IOperandCollection.Contains(IrMetadata) - fullName: Ubiquity.NET.Llvm.IOperandCollection.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: IOperandCollection(Of IrMetadata).Contains(IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of Ubiquity.NET.Llvm.Metadata.IrMetadata).Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection{Ubiquity.NET.Llvm.Metadata.IrMetadata}.Contains(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - commentId: M:Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - name: Contains(T) - nameWithType: IOperandCollection.Contains(T) - fullName: Ubiquity.NET.Llvm.IOperandCollection.Contains(T) - nameWithType.vb: IOperandCollection(Of T).Contains(T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).Contains(T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - name: T - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - name: T - - name: ) -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: System.InvalidCastException - commentId: T:System.InvalidCastException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidcastexception - name: InvalidCastException - nameWithType: InvalidCastException - fullName: System.InvalidCastException -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand - href: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.html#Ubiquity_NET_Llvm_Metadata_MetadataOperandCollection_GetOperand__1_System_Index_ - name: GetOperand - nameWithType: MetadataOperandCollection.GetOperand - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.GetOperand -- uid: System.Index - commentId: T:System.Index - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.index - name: Index - nameWithType: Index - fullName: System.Index -- uid: '{TItem}' - commentId: '!:TItem' - definition: TItem - name: TItem - nameWithType: TItem - fullName: TItem -- uid: TItem - name: TItem - nameWithType: TItem - fullName: TItem diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ModuleFlag.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ModuleFlag.yml deleted file mode 100644 index 1bc3a117f6..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ModuleFlag.yml +++ /dev/null @@ -1,542 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag - commentId: T:Ubiquity.NET.Llvm.Metadata.ModuleFlag - id: ModuleFlag - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.ModuleFlag.#ctor(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior - - Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata - - Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name - langs: - - csharp - - vb - name: ModuleFlag - nameWithType: ModuleFlag - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ModuleFlag - path: ../src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: ModuleHandle Flags Tuple for a module - example: [] - syntax: - content: public class ModuleFlag - content.vb: Public Class ModuleFlag - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag.#ctor(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.ModuleFlag.#ctor(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: '#ctor(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata)' - parent: Ubiquity.NET.Llvm.Metadata.ModuleFlag - langs: - - csharp - - vb - name: ModuleFlag(ModuleFlagBehavior, string, IrMetadata) - nameWithType: ModuleFlag.ModuleFlag(ModuleFlagBehavior, string, IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag.ModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, string, Ubiquity.NET.Llvm.Metadata.IrMetadata) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public ModuleFlag(ModuleFlagBehavior behavior, string name, IrMetadata metadata) - parameters: - - id: behavior - type: Ubiquity.NET.Llvm.ModuleFlagBehavior - description: Behavior for the flag - - id: name - type: System.String - description: Name of the flag - - id: metadata - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: IrMetadata for the flag - content.vb: Public Sub New(behavior As ModuleFlagBehavior, name As String, metadata As IrMetadata) - overload: Ubiquity.NET.Llvm.Metadata.ModuleFlag.#ctor* - nameWithType.vb: ModuleFlag.New(ModuleFlagBehavior, String, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.Metadata.ModuleFlag.New(Ubiquity.NET.Llvm.ModuleFlagBehavior, String, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: New(ModuleFlagBehavior, String, IrMetadata) -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior - commentId: P:Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior - id: Behavior - parent: Ubiquity.NET.Llvm.Metadata.ModuleFlag - langs: - - csharp - - vb - name: Behavior - nameWithType: ModuleFlag.Behavior - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Behavior - path: ../src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the options for this module flag - example: [] - syntax: - content: public ModuleFlagBehavior Behavior { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ModuleFlagBehavior - content.vb: Public ReadOnly Property Behavior As ModuleFlagBehavior - overload: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior* -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name - commentId: P:Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name - id: Name - parent: Ubiquity.NET.Llvm.Metadata.ModuleFlag - langs: - - csharp - - vb - name: Name - nameWithType: ModuleFlag.Name - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the name of flag - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name* -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata - commentId: P:Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata - id: Metadata - parent: Ubiquity.NET.Llvm.Metadata.ModuleFlag - langs: - - csharp - - vb - name: Metadata - nameWithType: ModuleFlag.Metadata - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Metadata - path: ../src/Ubiquity.NET.Llvm/Metadata/ModuleFlag.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the IrMetadata for this flag - example: [] - syntax: - content: public IrMetadata Metadata { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - content.vb: Public ReadOnly Property Metadata As IrMetadata - overload: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata* -references: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag - commentId: T:Ubiquity.NET.Llvm.Metadata.ModuleFlag - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html - name: ModuleFlag - nameWithType: ModuleFlag - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ModuleFlag.#ctor - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html#Ubiquity_NET_Llvm_Metadata_ModuleFlag__ctor_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ModuleFlag - nameWithType: ModuleFlag.ModuleFlag - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag.ModuleFlag - nameWithType.vb: ModuleFlag.New - fullName.vb: Ubiquity.NET.Llvm.Metadata.ModuleFlag.New - name.vb: New -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - commentId: T:Ubiquity.NET.Llvm.ModuleFlagBehavior - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - name: ModuleFlagBehavior - nameWithType: ModuleFlagBehavior - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html#Ubiquity_NET_Llvm_Metadata_ModuleFlag_Behavior - name: Behavior - nameWithType: ModuleFlag.Behavior - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Behavior -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html#Ubiquity_NET_Llvm_Metadata_ModuleFlag_Name - name: Name - nameWithType: ModuleFlag.Name - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Name -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html#Ubiquity_NET_Llvm_Metadata_ModuleFlag_Metadata - name: Metadata - nameWithType: ModuleFlag.Metadata - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag.Metadata diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.NamedMDNode.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.NamedMDNode.yml deleted file mode 100644 index 1a94c3f5d1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.NamedMDNode.yml +++ /dev/null @@ -1,628 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.NamedMDNode - id: NamedMDNode - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent - - Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name - - Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands - - Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule - langs: - - csharp - - vb - name: NamedMDNode - nameWithType: NamedMDNode - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NamedMDNode - path: ../src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Wraps an LLVM NamedMDNode - remarks: >- - Despite its name a NamedMDNode is not itself an MDNode. It is owned directly by a - a and contains a list of operands. - example: [] - syntax: - content: public class NamedMDNode - content.vb: Public Class NamedMDNode - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name - commentId: P:Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name - id: Name - parent: Ubiquity.NET.Llvm.Metadata.NamedMDNode - langs: - - csharp - - vb - name: Name - nameWithType: NamedMDNode.Name - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the name of the node - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name* -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands - commentId: P:Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands - id: Operands - parent: Ubiquity.NET.Llvm.Metadata.NamedMDNode - langs: - - csharp - - vb - name: Operands - nameWithType: NamedMDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Operands - path: ../src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the operands for the node - example: [] - syntax: - content: public IList Operands { get; } - parameters: [] - return: - type: System.Collections.Generic.IList{Ubiquity.NET.Llvm.Metadata.MDNode} - content.vb: Public ReadOnly Property Operands As IList(Of MDNode) - overload: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands* -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule - commentId: P:Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule - id: ParentModule - parent: Ubiquity.NET.Llvm.Metadata.NamedMDNode - langs: - - csharp - - vb - name: ParentModule - nameWithType: NamedMDNode.ParentModule - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ParentModule - path: ../src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the module that owns this node - example: [] - syntax: - content: public IModule ParentModule { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IModule - content.vb: Public ReadOnly Property ParentModule As IModule - overload: Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule* -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent - commentId: M:Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent - id: EraseFromParent - parent: Ubiquity.NET.Llvm.Metadata.NamedMDNode - langs: - - csharp - - vb - name: EraseFromParent() - nameWithType: NamedMDNode.EraseFromParent() - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EraseFromParent - path: ../src/Ubiquity.NET.Llvm/Metadata/NamedMDNode.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Erases this node from its parent - example: [] - syntax: - content: public void EraseFromParent() - content.vb: Public Sub EraseFromParent() - overload: Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent* -references: -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html#Ubiquity_NET_Llvm_Metadata_NamedMDNode_Name - name: Name - nameWithType: NamedMDNode.Name - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html#Ubiquity_NET_Llvm_Metadata_NamedMDNode_Operands - name: Operands - nameWithType: NamedMDNode.Operands - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode.Operands -- uid: System.Collections.Generic.IList{Ubiquity.NET.Llvm.Metadata.MDNode} - commentId: T:System.Collections.Generic.IList{Ubiquity.NET.Llvm.Metadata.MDNode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - name: IList - nameWithType: IList - fullName: System.Collections.Generic.IList - nameWithType.vb: IList(Of MDNode) - fullName.vb: System.Collections.Generic.IList(Of Ubiquity.NET.Llvm.Metadata.MDNode) - name.vb: IList(Of MDNode) - spec.csharp: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.MDNode - name: MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.MDNode - name: MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - - name: ) -- uid: System.Collections.Generic.IList`1 - commentId: T:System.Collections.Generic.IList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - name: IList - nameWithType: IList - fullName: System.Collections.Generic.IList - nameWithType.vb: IList(Of T) - fullName.vb: System.Collections.Generic.IList(Of T) - name.vb: IList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html#Ubiquity_NET_Llvm_Metadata_NamedMDNode_ParentModule - name: ParentModule - nameWithType: NamedMDNode.ParentModule - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode.ParentModule -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IModule.html - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html#Ubiquity_NET_Llvm_Metadata_NamedMDNode_EraseFromParent - name: EraseFromParent - nameWithType: NamedMDNode.EraseFromParent - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode.EraseFromParent diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.OperandBundleNames.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.OperandBundleNames.yml deleted file mode 100644 index 65efbbf3a1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.OperandBundleNames.yml +++ /dev/null @@ -1,417 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.OperandBundleNames - commentId: T:Ubiquity.NET.Llvm.Metadata.OperandBundleNames - id: OperandBundleNames - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.OperandBundleNames.DeOpt - - Ubiquity.NET.Llvm.Metadata.OperandBundleNames.Funclet - - Ubiquity.NET.Llvm.Metadata.OperandBundleNames.GcTransition - langs: - - csharp - - vb - name: OperandBundleNames - nameWithType: OperandBundleNames - fullName: Ubiquity.NET.Llvm.Metadata.OperandBundleNames - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/OperandBundleNames.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OperandBundleNames - path: ../src/Ubiquity.NET.Llvm/Metadata/OperandBundleNames.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Static class to hold constant strings for well known operand bundle tag names - example: [] - syntax: - content: public static class OperandBundleNames - content.vb: Public Module OperandBundleNames - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Metadata.OperandBundleNames.DeOpt - commentId: F:Ubiquity.NET.Llvm.Metadata.OperandBundleNames.DeOpt - id: DeOpt - parent: Ubiquity.NET.Llvm.Metadata.OperandBundleNames - langs: - - csharp - - vb - name: DeOpt - nameWithType: OperandBundleNames.DeOpt - fullName: Ubiquity.NET.Llvm.Metadata.OperandBundleNames.DeOpt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/OperandBundleNames.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DeOpt - path: ../src/Ubiquity.NET.Llvm/Metadata/OperandBundleNames.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Name of the well-known deopt operand bundle - example: [] - syntax: - content: public const string DeOpt = "deopt" - return: - type: System.String - content.vb: Public Const DeOpt As String = "deopt" -- uid: Ubiquity.NET.Llvm.Metadata.OperandBundleNames.Funclet - commentId: F:Ubiquity.NET.Llvm.Metadata.OperandBundleNames.Funclet - id: Funclet - parent: Ubiquity.NET.Llvm.Metadata.OperandBundleNames - langs: - - csharp - - vb - name: Funclet - nameWithType: OperandBundleNames.Funclet - fullName: Ubiquity.NET.Llvm.Metadata.OperandBundleNames.Funclet - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/OperandBundleNames.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Funclet - path: ../src/Ubiquity.NET.Llvm/Metadata/OperandBundleNames.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Name of the well-known funclet operand bundle - example: [] - syntax: - content: public const string Funclet = "funclet" - return: - type: System.String - content.vb: Public Const Funclet As String = "funclet" -- uid: Ubiquity.NET.Llvm.Metadata.OperandBundleNames.GcTransition - commentId: F:Ubiquity.NET.Llvm.Metadata.OperandBundleNames.GcTransition - id: GcTransition - parent: Ubiquity.NET.Llvm.Metadata.OperandBundleNames - langs: - - csharp - - vb - name: GcTransition - nameWithType: OperandBundleNames.GcTransition - fullName: Ubiquity.NET.Llvm.Metadata.OperandBundleNames.GcTransition - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/OperandBundleNames.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GcTransition - path: ../src/Ubiquity.NET.Llvm/Metadata/OperandBundleNames.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Name of the well-known gc-transition operand bundle - example: [] - syntax: - content: public const string GcTransition = "gc-transition" - return: - type: System.String - content.vb: Public Const GcTransition As String = "gc-transition" -references: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.yml deleted file mode 100644 index a66a78bf82..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.yml +++ /dev/null @@ -1,759 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - id: ValueAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.op_Implicit(Ubiquity.NET.Llvm.Metadata.ValueAsMetadata)~Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: ValueAsMetadata - nameWithType: ValueAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ValueAsMetadata - path: ../src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Used to wrap an in the IrMetadata hierarchy - example: [] - syntax: - content: 'public class ValueAsMetadata : IrMetadata, IEquatable' - content.vb: Public Class ValueAsMetadata Inherits IrMetadata Implements IEquatable(Of IrMetadata) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Metadata.IrMetadata - derivedClasses: - - Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - - Ubiquity.NET.Llvm.Metadata.LocalAsMetadata - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - inheritedMembers: - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - - Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - - Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - id: Value - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - langs: - - csharp - - vb - name: Value - nameWithType: ValueAsMetadata.Value - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Value - path: ../src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the this node wraps - example: [] - syntax: - content: public Value? Value { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Value - content.vb: Public ReadOnly Property Value As Value - overload: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value* -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - id: Type - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - langs: - - csharp - - vb - name: Type - nameWithType: ValueAsMetadata.Type - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Type - path: ../src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the type of this node wraps - example: [] - syntax: - content: public ITypeRef? Type { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property Type As ITypeRef - overload: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type* -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - id: Context - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - langs: - - csharp - - vb - name: Context - nameWithType: ValueAsMetadata.Context - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Gets the for the this node wraps - example: [] - syntax: - content: public IContext? Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: Public ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context* -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.op_Implicit(Ubiquity.NET.Llvm.Metadata.ValueAsMetadata)~Ubiquity.NET.Llvm.Values.Value - commentId: M:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.op_Implicit(Ubiquity.NET.Llvm.Metadata.ValueAsMetadata)~Ubiquity.NET.Llvm.Values.Value - id: op_Implicit(Ubiquity.NET.Llvm.Metadata.ValueAsMetadata)~Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - langs: - - csharp - - vb - name: implicit operator Value?(ValueAsMetadata) - nameWithType: ValueAsMetadata.implicit operator Value?(ValueAsMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.implicit operator Ubiquity.NET.Llvm.Values.Value?(Ubiquity.NET.Llvm.Metadata.ValueAsMetadata) - type: Operator - source: - remote: - path: src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: op_Implicit - path: ../src/Ubiquity.NET.Llvm/Metadata/ValueAsMetadata.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Metadata - summary: Implicit conversion to - remarks: This is a simple wrapper around the property - example: [] - syntax: - content: public static implicit operator Value?(ValueAsMetadata md) - parameters: - - id: md - type: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - description: to get the value for - return: - type: Ubiquity.NET.Llvm.Values.Value - content.vb: Public Shared Widening Operator CType(md As ValueAsMetadata) As Value - overload: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.op_Implicit* - nameWithType.vb: ValueAsMetadata.CType(ValueAsMetadata) - fullName.vb: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.CType(Ubiquity.NET.Llvm.Metadata.ValueAsMetadata) - name.vb: CType(ValueAsMetadata) -references: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Metadata.IrMetadata} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IrMetadata) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: IEquatable(Of IrMetadata) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: ReplaceAllUsesWith(IrMetadata) - nameWithType: IrMetadata.ReplaceAllUsesWith(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - name: ToString() - nameWithType: IrMetadata.ToString() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.ToString - name: ToString - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: Equals(IrMetadata) - nameWithType: IrMetadata.Equals(IrMetadata) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - isExternal: true - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - name: Equals(object) - nameWithType: IrMetadata.Equals(object) - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(object) - nameWithType.vb: IrMetadata.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - name: GetHashCode() - nameWithType: IrMetadata.GetHashCode() - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Kind - name: Kind - nameWithType: IrMetadata.Kind - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Kind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - commentId: P:Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle - parent: Ubiquity.NET.Llvm.Metadata.IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html#Ubiquity_NET_Llvm_Metadata_IrMetadata_Handle - name: Handle - nameWithType: IrMetadata.Handle - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata.Handle -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Value - name: Value - nameWithType: ValueAsMetadata.Value - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Value - name: Value - nameWithType: ValueAsMetadata.Value - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Value -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html - name: ValueAsMetadata - nameWithType: ValueAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Type - name: Type - nameWithType: ValueAsMetadata.Type - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Type -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - commentId: P:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - parent: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Context - name: Context - nameWithType: ValueAsMetadata.Context - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html#Ubiquity_NET_Llvm_Metadata_ValueAsMetadata_Context - name: Context - nameWithType: ValueAsMetadata.Context - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.Context -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.op_Implicit* - commentId: Overload:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.op_Implicit - name: implicit operator - nameWithType: ValueAsMetadata.implicit operator - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.implicit operator - nameWithType.vb: ValueAsMetadata.CType - fullName.vb: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.CType - name.vb: CType - spec.csharp: - - name: implicit - - name: " " - - name: operator diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.yml deleted file mode 100644 index c94796d049..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Metadata.yml +++ /dev/null @@ -1,154 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - id: Ubiquity.NET.Llvm.Metadata - children: - - Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - - Ubiquity.NET.Llvm.Metadata.IrMetadata - - Ubiquity.NET.Llvm.Metadata.LocalAsMetadata - - Ubiquity.NET.Llvm.Metadata.MDNode - - Ubiquity.NET.Llvm.Metadata.MDString - - Ubiquity.NET.Llvm.Metadata.MDTuple - - Ubiquity.NET.Llvm.Metadata.MetadataAsValue - - Ubiquity.NET.Llvm.Metadata.MetadataKind - - Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - - Ubiquity.NET.Llvm.Metadata.ModuleFlag - - Ubiquity.NET.Llvm.Metadata.NamedMDNode - - Ubiquity.NET.Llvm.Metadata.OperandBundleNames - - Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.html - name: ConstantAsMetadata - nameWithType: ConstantAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataKind - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MetadataKind.html - name: MetadataKind - nameWithType: MetadataKind - fullName: Ubiquity.NET.Llvm.Metadata.MetadataKind -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata.LocalAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.LocalAsMetadata - href: Ubiquity.NET.Llvm.Metadata.LocalAsMetadata.html - name: LocalAsMetadata - nameWithType: LocalAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.LocalAsMetadata -- uid: Ubiquity.NET.Llvm.Metadata.MDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.MDNode - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - name: MDNode - nameWithType: MDNode - fullName: Ubiquity.NET.Llvm.Metadata.MDNode -- uid: Ubiquity.NET.Llvm.Metadata.MDString - commentId: T:Ubiquity.NET.Llvm.Metadata.MDString - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDString.html - name: MDString - nameWithType: MDString - fullName: Ubiquity.NET.Llvm.Metadata.MDString -- uid: Ubiquity.NET.Llvm.Metadata.MDTuple - commentId: T:Ubiquity.NET.Llvm.Metadata.MDTuple - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MDTuple.html - name: MDTuple - nameWithType: MDTuple - fullName: Ubiquity.NET.Llvm.Metadata.MDTuple -- uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataAsValue - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MetadataAsValue.html - name: MetadataAsValue - nameWithType: MetadataAsValue - fullName: Ubiquity.NET.Llvm.Metadata.MetadataAsValue -- uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - commentId: T:Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection.html - name: MetadataOperandCollection - nameWithType: MetadataOperandCollection - fullName: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection -- uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag - commentId: T:Ubiquity.NET.Llvm.Metadata.ModuleFlag - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html - name: ModuleFlag - nameWithType: ModuleFlag - fullName: Ubiquity.NET.Llvm.Metadata.ModuleFlag -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.NamedMDNode - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html - name: NamedMDNode - nameWithType: NamedMDNode - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode -- uid: Ubiquity.NET.Llvm.Metadata.OperandBundleNames - commentId: T:Ubiquity.NET.Llvm.Metadata.OperandBundleNames - href: Ubiquity.NET.Llvm.Metadata.OperandBundleNames.html - name: OperandBundleNames - nameWithType: OperandBundleNames - fullName: Ubiquity.NET.Llvm.Metadata.OperandBundleNames -- uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata.html - name: ValueAsMetadata - nameWithType: ValueAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Module.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Module.yml deleted file mode 100644 index 4dd82e36df..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Module.yml +++ /dev/null @@ -1,6279 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - id: Module - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.Module.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - - Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - - Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - - Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - - Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - - Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - - Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - - Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - - Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata(System.String) - - Ubiquity.NET.Llvm.Module.Aliases - - Ubiquity.NET.Llvm.Module.AppendInlineAsm(System.String) - - Ubiquity.NET.Llvm.Module.Clone - - Ubiquity.NET.Llvm.Module.Clone(Ubiquity.NET.Llvm.IContext) - - Ubiquity.NET.Llvm.Module.Comdats - - Ubiquity.NET.Llvm.Module.CompileUnits - - Ubiquity.NET.Llvm.Module.Context - - Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - - Ubiquity.NET.Llvm.Module.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - - Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - - Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - - Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - - Ubiquity.NET.Llvm.Module.DataLayoutString - - Ubiquity.NET.Llvm.Module.DebugMetadataVersion - - Ubiquity.NET.Llvm.Module.DebugVersionValue - - Ubiquity.NET.Llvm.Module.Dispose - - Ubiquity.NET.Llvm.Module.DwarfVersionValue - - Ubiquity.NET.Llvm.Module.Equals(System.Object) - - Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.IModule) - - Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.Module) - - Ubiquity.NET.Llvm.Module.Functions - - Ubiquity.NET.Llvm.Module.GetAlias(System.String) - - Ubiquity.NET.Llvm.Module.GetHashCode - - Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - - Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - - Ubiquity.NET.Llvm.Module.GetNamedGlobal(System.String) - - Ubiquity.NET.Llvm.Module.GetTypeByName(System.String) - - Ubiquity.NET.Llvm.Module.Globals - - Ubiquity.NET.Llvm.Module.IndirectFunctions - - Ubiquity.NET.Llvm.Module.IsDisposed - - Ubiquity.NET.Llvm.Module.Layout - - Ubiquity.NET.Llvm.Module.Link(Ubiquity.NET.Llvm.Module) - - Ubiquity.NET.Llvm.Module.LoadFrom(System.String,Ubiquity.NET.Llvm.IContext) - - Ubiquity.NET.Llvm.Module.LoadFrom(Ubiquity.NET.Llvm.MemoryBuffer,Ubiquity.NET.Llvm.IContext) - - Ubiquity.NET.Llvm.Module.ModuleFlags - - Ubiquity.NET.Llvm.Module.ModuleInlineAsm - - Ubiquity.NET.Llvm.Module.Name - - Ubiquity.NET.Llvm.Module.NamedMetadata - - Ubiquity.NET.Llvm.Module.SourceFileName - - Ubiquity.NET.Llvm.Module.TargetTriple - - Ubiquity.NET.Llvm.Module.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - - Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - - Ubiquity.NET.Llvm.Module.TryRunPasses(System.String[]) - - Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - - Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - - Ubiquity.NET.Llvm.Module.Verify(System.String@) - - Ubiquity.NET.Llvm.Module.WriteToBuffer - - Ubiquity.NET.Llvm.Module.WriteToFile(System.String) - - Ubiquity.NET.Llvm.Module.WriteToString - - Ubiquity.NET.Llvm.Module.WriteToTextFile(System.String,System.String@) - langs: - - csharp - - vb - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Module - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: LLVM Bitcode module - remarks: >- - A module is the basic unit for containing code in LLVM. Modules are an in memory - - representation of the LLVM Intermediate Representation (IR) bit-code. - example: [] - syntax: - content: 'public sealed class Module : IModule, IDisposable, IEquatable, IEquatable' - content.vb: Public NotInheritable Class [Module] Implements IModule, IDisposable, IEquatable(Of IModule), IEquatable(Of Module) - inheritance: - - System.Object - implements: - - Ubiquity.NET.Llvm.IModule - - System.IDisposable - - System.IEquatable{Ubiquity.NET.Llvm.IModule} - - System.IEquatable{Ubiquity.NET.Llvm.Module} - inheritedMembers: - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.IModule) - commentId: M:Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.IModule) - id: Equals(Ubiquity.NET.Llvm.IModule) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Equals(IModule?) - nameWithType: Module.Equals(IModule?) - fullName: Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.IModule?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(IModule? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.IModule - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As IModule) As Boolean - overload: Ubiquity.NET.Llvm.Module.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.IModule}.Equals(Ubiquity.NET.Llvm.IModule) - nameWithType.vb: Module.Equals(IModule) - fullName.vb: Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.IModule) - name.vb: Equals(IModule) -- uid: Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.Module) - id: Equals(Ubiquity.NET.Llvm.Module) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Equals(Module?) - nameWithType: Module.Equals(Module?) - fullName: Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.Module?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(Module? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Module - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As [Module]) As Boolean - overload: Ubiquity.NET.Llvm.Module.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Module}.Equals(Ubiquity.NET.Llvm.Module) - nameWithType.vb: Module.Equals(Module) - fullName.vb: Ubiquity.NET.Llvm.Module.Equals(Ubiquity.NET.Llvm.Module) - name.vb: Equals(Module) -- uid: Ubiquity.NET.Llvm.Module.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Module.Equals(System.Object) - id: Equals(System.Object) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: Module.Equals(object?) - fullName: Ubiquity.NET.Llvm.Module.Equals(object?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Determines whether the specified object is equal to the current object. - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: The object to compare with the current object. - return: - type: System.Boolean - description: true if the specified object is equal to the current object; otherwise, false. - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.Object.Equals(System.Object) - overload: Ubiquity.NET.Llvm.Module.Equals* - nameWithType.vb: Module.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Module.Equals(Object) - name.vb: Equals(Object) -- uid: Ubiquity.NET.Llvm.Module.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Module.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: Module.GetHashCode() - fullName: Ubiquity.NET.Llvm.Module.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Serves as the default hash function. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A hash code for the current object. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.Object.GetHashCode - overload: Ubiquity.NET.Llvm.Module.GetHashCode* -- uid: Ubiquity.NET.Llvm.Module.DebugVersionValue - commentId: F:Ubiquity.NET.Llvm.Module.DebugVersionValue - id: DebugVersionValue - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: DebugVersionValue - nameWithType: Module.DebugVersionValue - fullName: Ubiquity.NET.Llvm.Module.DebugVersionValue - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugVersionValue - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Name of the Debug Version information module flag - example: [] - syntax: - content: public const string DebugVersionValue = "Debug Info Version" - return: - type: System.String - content.vb: Public Const DebugVersionValue As String = "Debug Info Version" -- uid: Ubiquity.NET.Llvm.Module.DwarfVersionValue - commentId: F:Ubiquity.NET.Llvm.Module.DwarfVersionValue - id: DwarfVersionValue - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: DwarfVersionValue - nameWithType: Module.DwarfVersionValue - fullName: Ubiquity.NET.Llvm.Module.DwarfVersionValue - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DwarfVersionValue - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Name of the Dwarf Version module flag - example: [] - syntax: - content: public const string DwarfVersionValue = "Dwarf Version" - return: - type: System.String - content.vb: Public Const DwarfVersionValue As String = "Dwarf Version" -- uid: Ubiquity.NET.Llvm.Module.DebugMetadataVersion - commentId: P:Ubiquity.NET.Llvm.Module.DebugMetadataVersion - id: DebugMetadataVersion - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: DebugMetadataVersion - nameWithType: Module.DebugMetadataVersion - fullName: Ubiquity.NET.Llvm.Module.DebugMetadataVersion - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugMetadataVersion - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the current Version of the Debug information used by LLVM - example: [] - syntax: - content: public static uint DebugMetadataVersion { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public Shared ReadOnly Property DebugMetadataVersion As UInteger - overload: Ubiquity.NET.Llvm.Module.DebugMetadataVersion* -- uid: Ubiquity.NET.Llvm.Module.IsDisposed - commentId: P:Ubiquity.NET.Llvm.Module.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: IsDisposed - nameWithType: Module.IsDisposed - fullName: Ubiquity.NET.Llvm.Module.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this instance is already disposed - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.Module.IsDisposed* -- uid: Ubiquity.NET.Llvm.Module.Dispose - commentId: M:Ubiquity.NET.Llvm.Module.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Dispose() - nameWithType: Module.Dispose() - fullName: Ubiquity.NET.Llvm.Module.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.Module.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.Module.AppendInlineAsm(System.String) - commentId: M:Ubiquity.NET.Llvm.Module.AppendInlineAsm(System.String) - id: AppendInlineAsm(System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AppendInlineAsm(string) - nameWithType: Module.AppendInlineAsm(string) - fullName: Ubiquity.NET.Llvm.Module.AppendInlineAsm(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AppendInlineAsm - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 84 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Appends inline assembly to the module's inline assembly - example: [] - syntax: - content: public void AppendInlineAsm(string asm) - parameters: - - id: asm - type: System.String - description: assembly text - content.vb: Public Sub AppendInlineAsm(asm As String) - overload: Ubiquity.NET.Llvm.Module.AppendInlineAsm* - implements: - - Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String) - nameWithType.vb: Module.AppendInlineAsm(String) - fullName.vb: Ubiquity.NET.Llvm.Module.AppendInlineAsm(String) - name.vb: AppendInlineAsm(String) -- uid: Ubiquity.NET.Llvm.Module.TryRunPasses(System.String[]) - commentId: M:Ubiquity.NET.Llvm.Module.TryRunPasses(System.String[]) - id: TryRunPasses(System.String[]) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: TryRunPasses(params string[]) - nameWithType: Module.TryRunPasses(params string[]) - fullName: Ubiquity.NET.Llvm.Module.TryRunPasses(params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 87 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this module. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: public ErrorInfo TryRunPasses(params string[] passes) - parameters: - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Public Function TryRunPasses(ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.Module.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - implements: - - Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[]) - nameWithType.vb: Module.TryRunPasses(ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.Module.TryRunPasses(ParamArray String()) - name.vb: TryRunPasses(ParamArray String()) -- uid: Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - commentId: M:Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - id: TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: TryRunPasses(PassBuilderOptions, params string[]) - nameWithType: Module.TryRunPasses(PassBuilderOptions, params string[]) - fullName: Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions, params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 90 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this module. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: public ErrorInfo TryRunPasses(PassBuilderOptions options, params string[] passes) - parameters: - - id: options - type: Ubiquity.NET.Llvm.PassBuilderOptions - description: Options for the passes - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Public Function TryRunPasses(options As PassBuilderOptions, ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.Module.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - implements: - - Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - nameWithType.vb: Module.TryRunPasses(PassBuilderOptions, ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions, ParamArray String()) - name.vb: TryRunPasses(PassBuilderOptions, ParamArray String()) -- uid: Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - commentId: M:Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - id: TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: TryRunPasses(TargetMachine, PassBuilderOptions, params string[]) - nameWithType: Module.TryRunPasses(TargetMachine, PassBuilderOptions, params string[]) - fullName: Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine, Ubiquity.NET.Llvm.PassBuilderOptions, params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 93 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this module. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: public ErrorInfo TryRunPasses(TargetMachine targetMachine, PassBuilderOptions options, params string[] passes) - parameters: - - id: targetMachine - type: Ubiquity.NET.Llvm.TargetMachine - description: Target machine for the passes - - id: options - type: Ubiquity.NET.Llvm.PassBuilderOptions - description: Options for the passes - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Public Function TryRunPasses(targetMachine As TargetMachine, options As PassBuilderOptions, ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.Module.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - implements: - - Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - nameWithType.vb: Module.TryRunPasses(TargetMachine, PassBuilderOptions, ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.Module.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine, Ubiquity.NET.Llvm.PassBuilderOptions, ParamArray String()) - name.vb: TryRunPasses(TargetMachine, PassBuilderOptions, ParamArray String()) -- uid: Ubiquity.NET.Llvm.Module.Link(Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.Module.Link(Ubiquity.NET.Llvm.Module) - id: Link(Ubiquity.NET.Llvm.Module) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Link(Module) - nameWithType: Module.Link(Module) - fullName: Ubiquity.NET.Llvm.Module.Link(Ubiquity.NET.Llvm.Module) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Link - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 96 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Link another module into this one - remarks: >- -
warning

- - srcModule is destroyed by this process and no longer usable - - when this method returns. - -

- example: [] - syntax: - content: public void Link(Module srcModule) - parameters: - - id: srcModule - type: Ubiquity.NET.Llvm.Module - description: module to link into this one - content.vb: Public Sub Link(srcModule As [Module]) - overload: Ubiquity.NET.Llvm.Module.Link* - implements: - - Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) -- uid: Ubiquity.NET.Llvm.Module.Verify(System.String@) - commentId: M:Ubiquity.NET.Llvm.Module.Verify(System.String@) - id: Verify(System.String@) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Verify(out string) - nameWithType: Module.Verify(out string) - fullName: Ubiquity.NET.Llvm.Module.Verify(out string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Verify - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 99 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Verifies a bit-code module - example: [] - syntax: - content: public bool Verify(out string errorMessage) - parameters: - - id: errorMessage - type: System.String - description: Error messages describing any issues found in the bit-code. Empty string if no error - return: - type: System.Boolean - description: true if the verification succeeded and false if not. - content.vb: Public Function Verify(errorMessage As String) As Boolean - overload: Ubiquity.NET.Llvm.Module.Verify* - implements: - - Ubiquity.NET.Llvm.IModule.Verify(System.String@) - nameWithType.vb: Module.Verify(String) - fullName.vb: Ubiquity.NET.Llvm.Module.Verify(String) - name.vb: Verify(String) -- uid: Ubiquity.NET.Llvm.Module.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - commentId: M:Ubiquity.NET.Llvm.Module.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - id: TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: TryGetFunction(string, out Function) - nameWithType: Module.TryGetFunction(string, out Function) - fullName: Ubiquity.NET.Llvm.Module.TryGetFunction(string, out Ubiquity.NET.Llvm.Values.Function) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryGetFunction - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 102 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Looks up a function in the module by name - example: [] - syntax: - content: public bool TryGetFunction(string name, out Function function) - parameters: - - id: name - type: System.String - description: Name of the function - - id: function - type: Ubiquity.NET.Llvm.Values.Function - description: The function or null if not found - return: - type: System.Boolean - description: true if the function was found or false if not - content.vb: Public Function TryGetFunction(name As String, [function] As [Function]) As Boolean - overload: Ubiquity.NET.Llvm.Module.TryGetFunction* - implements: - - Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - nameWithType.vb: Module.TryGetFunction(String, Function) - fullName.vb: Ubiquity.NET.Llvm.Module.TryGetFunction(String, Ubiquity.NET.Llvm.Values.Function) - name.vb: TryGetFunction(String, Function) -- uid: Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - commentId: M:Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - id: CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: CreateAndAddGlobalIFunc(string, ITypeRef, uint, Function) - nameWithType: Module.CreateAndAddGlobalIFunc(string, ITypeRef, uint, Function) - fullName: Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc(string, Ubiquity.NET.Llvm.Types.ITypeRef, uint, Ubiquity.NET.Llvm.Values.Function) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateAndAddGlobalIFunc - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 105 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Create and add a global indirect function - example: [] - syntax: - content: public GlobalIFunc CreateAndAddGlobalIFunc(string name, ITypeRef type, uint addressSpace, Function resolver) - parameters: - - id: name - type: System.String - description: Name of the function - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Signature of the function - - id: addressSpace - type: System.UInt32 - description: Address space for the indirect function - - id: resolver - type: Ubiquity.NET.Llvm.Values.Function - description: Resolver for the indirect function - return: - type: Ubiquity.NET.Llvm.Values.GlobalIFunc - description: New - content.vb: Public Function CreateAndAddGlobalIFunc(name As String, type As ITypeRef, addressSpace As UInteger, resolver As [Function]) As GlobalIFunc - overload: Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc* - implements: - - Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - nameWithType.vb: Module.CreateAndAddGlobalIFunc(String, ITypeRef, UInteger, Function) - fullName.vb: Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc(String, Ubiquity.NET.Llvm.Types.ITypeRef, UInteger, Ubiquity.NET.Llvm.Values.Function) - name.vb: CreateAndAddGlobalIFunc(String, ITypeRef, UInteger, Function) -- uid: Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - commentId: M:Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - id: TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: TryGetNamedGlobalIFunc(string, out GlobalIFunc) - nameWithType: Module.TryGetNamedGlobalIFunc(string, out GlobalIFunc) - fullName: Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc(string, out Ubiquity.NET.Llvm.Values.GlobalIFunc) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryGetNamedGlobalIFunc - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 108 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get a named Global Indirect function in the module - example: [] - syntax: - content: public bool TryGetNamedGlobalIFunc(string name, out GlobalIFunc function) - parameters: - - id: name - type: System.String - description: Name of the ifunc to find - - id: function - type: Ubiquity.NET.Llvm.Values.GlobalIFunc - description: Function or null if not found - return: - type: System.Boolean - description: true if the function was found or false if not - content.vb: Public Function TryGetNamedGlobalIFunc(name As String, [function] As GlobalIFunc) As Boolean - overload: Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc* - implements: - - Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - nameWithType.vb: Module.TryGetNamedGlobalIFunc(String, GlobalIFunc) - fullName.vb: Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc(String, Ubiquity.NET.Llvm.Values.GlobalIFunc) - name.vb: TryGetNamedGlobalIFunc(String, GlobalIFunc) -- uid: Ubiquity.NET.Llvm.Module.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - commentId: M:Ubiquity.NET.Llvm.Module.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - id: CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: CreateFunction(string, IFunctionType) - nameWithType: Module.CreateFunction(string, IFunctionType) - fullName: Ubiquity.NET.Llvm.Module.CreateFunction(string, Ubiquity.NET.Llvm.Types.IFunctionType) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 111 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets an existing function with the specified signature to the module or creates a new one if it doesn't exist - remarks: >- - If a matching function already exists it is returned, and therefore the returned - - may have a body and additional attributes. If a function of - - the same name exists with a different signature an exception is thrown as LLVM does - - not perform any function overloading. - example: [] - syntax: - content: public Function CreateFunction(string name, IFunctionType signature) - parameters: - - id: name - type: System.String - description: Name of the function to add - - id: signature - type: Ubiquity.NET.Llvm.Types.IFunctionType - description: Signature of the function - return: - type: Ubiquity.NET.Llvm.Values.Function - description: matching the specified signature and name - content.vb: Public Function CreateFunction(name As String, signature As IFunctionType) As [Function] - overload: Ubiquity.NET.Llvm.Module.CreateFunction* - implements: - - Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - nameWithType.vb: Module.CreateFunction(String, IFunctionType) - fullName.vb: Ubiquity.NET.Llvm.Module.CreateFunction(String, Ubiquity.NET.Llvm.Types.IFunctionType) - name.vb: CreateFunction(String, IFunctionType) -- uid: Ubiquity.NET.Llvm.Module.WriteToFile(System.String) - commentId: M:Ubiquity.NET.Llvm.Module.WriteToFile(System.String) - id: WriteToFile(System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: WriteToFile(string) - nameWithType: Module.WriteToFile(string) - fullName: Ubiquity.NET.Llvm.Module.WriteToFile(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteToFile - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 114 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Writes a bit-code module to a file - remarks: >- - This is a blind write. (e.g. no verification is performed) - - So if an invalid module is saved it might not work with any - - later stage processing tools. - example: [] - syntax: - content: public void WriteToFile(string path) - parameters: - - id: path - type: System.String - description: Path to write the bit-code into - content.vb: Public Sub WriteToFile(path As String) - overload: Ubiquity.NET.Llvm.Module.WriteToFile* - implements: - - Ubiquity.NET.Llvm.IModule.WriteToFile(System.String) - nameWithType.vb: Module.WriteToFile(String) - fullName.vb: Ubiquity.NET.Llvm.Module.WriteToFile(String) - name.vb: WriteToFile(String) -- uid: Ubiquity.NET.Llvm.Module.WriteToTextFile(System.String,System.String@) - commentId: M:Ubiquity.NET.Llvm.Module.WriteToTextFile(System.String,System.String@) - id: WriteToTextFile(System.String,System.String@) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: WriteToTextFile(string, out string) - nameWithType: Module.WriteToTextFile(string, out string) - fullName: Ubiquity.NET.Llvm.Module.WriteToTextFile(string, out string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteToTextFile - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 117 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Writes this module as LLVM IR source to a file - example: [] - syntax: - content: public bool WriteToTextFile(string path, out string errMsg) - parameters: - - id: path - type: System.String - description: File to write the LLVM IR source to - - id: errMsg - type: System.String - description: Error messages encountered, if any - return: - type: System.Boolean - description: true if successful or false if not - content.vb: Public Function WriteToTextFile(path As String, errMsg As String) As Boolean - overload: Ubiquity.NET.Llvm.Module.WriteToTextFile* - implements: - - Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@) - nameWithType.vb: Module.WriteToTextFile(String, String) - fullName.vb: Ubiquity.NET.Llvm.Module.WriteToTextFile(String, String) - name.vb: WriteToTextFile(String, String) -- uid: Ubiquity.NET.Llvm.Module.WriteToString - commentId: M:Ubiquity.NET.Llvm.Module.WriteToString - id: WriteToString - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: WriteToString() - nameWithType: Module.WriteToString() - fullName: Ubiquity.NET.Llvm.Module.WriteToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteToString - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 120 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a string representation of the module - remarks: >- - This is intentionally NOT an override of ToString() as that is - - used by debuggers to show the value of a type and this can take - - an extremely long time (up to many seconds depending on complexity - - of the module) which is usually bad for the debugger. If you need - - to see the contents of the IR for a module you can use this method - - in the immediate or watch windows. - example: [] - syntax: - content: public string? WriteToString() - return: - type: System.String - description: LLVM textual representation of the module - content.vb: Public Function WriteToString() As String - overload: Ubiquity.NET.Llvm.Module.WriteToString* - implements: - - Ubiquity.NET.Llvm.IModule.WriteToString -- uid: Ubiquity.NET.Llvm.Module.WriteToBuffer - commentId: M:Ubiquity.NET.Llvm.Module.WriteToBuffer - id: WriteToBuffer - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: WriteToBuffer() - nameWithType: Module.WriteToBuffer() - fullName: Ubiquity.NET.Llvm.Module.WriteToBuffer() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteToBuffer - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 123 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Writes the LLVM IR bit code into a memory buffer - example: [] - syntax: - content: public MemoryBuffer WriteToBuffer() - return: - type: Ubiquity.NET.Llvm.MemoryBuffer - description: containing the bit code module - content.vb: Public Function WriteToBuffer() As MemoryBuffer - overload: Ubiquity.NET.Llvm.Module.WriteToBuffer* - implements: - - Ubiquity.NET.Llvm.IModule.WriteToBuffer -- uid: Ubiquity.NET.Llvm.Module.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Module.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - id: AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddAlias(Value, string, uint) - nameWithType: Module.AddAlias(Value, string, uint) - fullName: Ubiquity.NET.Llvm.Module.AddAlias(Ubiquity.NET.Llvm.Values.Value, string, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAlias - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 126 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Add an alias to the module - example: [] - syntax: - content: public GlobalAlias AddAlias(Value aliasee, string aliasName, uint addressSpace = 0) - parameters: - - id: aliasee - type: Ubiquity.NET.Llvm.Values.Value - description: Value being aliased - - id: aliasName - type: System.String - description: Name of the alias - - id: addressSpace - type: System.UInt32 - description: 'Address space for the alias [Default: 0]' - return: - type: Ubiquity.NET.Llvm.Values.GlobalAlias - description: for the alias - content.vb: Public Function AddAlias(aliasee As Value, aliasName As String, addressSpace As UInteger = 0) As GlobalAlias - overload: Ubiquity.NET.Llvm.Module.AddAlias* - implements: - - Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - nameWithType.vb: Module.AddAlias(Value, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Module.AddAlias(Ubiquity.NET.Llvm.Values.Value, String, UInteger) - name.vb: AddAlias(Value, String, UInteger) -- uid: Ubiquity.NET.Llvm.Module.GetAlias(System.String) - commentId: M:Ubiquity.NET.Llvm.Module.GetAlias(System.String) - id: GetAlias(System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: GetAlias(string) - nameWithType: Module.GetAlias(string) - fullName: Ubiquity.NET.Llvm.Module.GetAlias(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAlias - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Get an alias by name - example: [] - syntax: - content: public GlobalAlias? GetAlias(string name) - parameters: - - id: name - type: System.String - description: name of the alias to get - return: - type: Ubiquity.NET.Llvm.Values.GlobalAlias - description: Alias matching name or null if no such alias exists - content.vb: Public Function GetAlias(name As String) As GlobalAlias - overload: Ubiquity.NET.Llvm.Module.GetAlias* - implements: - - Ubiquity.NET.Llvm.IModule.GetAlias(System.String) - nameWithType.vb: Module.GetAlias(String) - fullName.vb: Ubiquity.NET.Llvm.Module.GetAlias(String) - name.vb: GetAlias(String) -- uid: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - commentId: M:Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - id: AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddGlobalInAddressSpace(uint, ITypeRef, string) - nameWithType: Module.AddGlobalInAddressSpace(uint, ITypeRef, string) - fullName: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobalInAddressSpace - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 132 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module with a specific address space - example: [] - syntax: - content: public GlobalVariable AddGlobalInAddressSpace(uint addressSpace, ITypeRef typeRef, string name) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space to add the global to - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: name - type: System.String - description: Name of the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: The new - content.vb: Public Function AddGlobalInAddressSpace(addressSpace As UInteger, typeRef As ITypeRef, name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace* - implements: - - Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - nameWithType.vb: Module.AddGlobalInAddressSpace(UInteger, ITypeRef, String) - fullName.vb: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, String) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, String) -- uid: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - commentId: M:Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - id: AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant) - nameWithType: Module.AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant) - fullName: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobalInAddressSpace - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 135 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: public GlobalVariable AddGlobalInAddressSpace(uint addressSpace, ITypeRef typeRef, bool isConst, Linkage linkage, Constant constVal) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space to add the global to - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: isConst - type: System.Boolean - description: Flag to indicate if this global is a constant - - id: linkage - type: Ubiquity.NET.Llvm.Values.Linkage - description: Linkage type for this global - - id: constVal - type: Ubiquity.NET.Llvm.Values.Constant - description: Initial value for the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: New global variable - content.vb: Public Function AddGlobalInAddressSpace(addressSpace As UInteger, typeRef As ITypeRef, isConst As Boolean, linkage As Linkage, constVal As Constant) As GlobalVariable - overload: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace* - implements: - - Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - nameWithType.vb: Module.AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant) - fullName.vb: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant) -- uid: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - commentId: M:Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - id: AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant, string) - nameWithType: Module.AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant, string) - fullName: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobalInAddressSpace - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 138 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: public GlobalVariable AddGlobalInAddressSpace(uint addressSpace, ITypeRef typeRef, bool isConst, Linkage linkage, Constant constVal, string name) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space to add the global to - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: isConst - type: System.Boolean - description: Flag to indicate if this global is a constant - - id: linkage - type: Ubiquity.NET.Llvm.Values.Linkage - description: Linkage type for this global - - id: constVal - type: Ubiquity.NET.Llvm.Values.Constant - description: Initial value for the global - - id: name - type: System.String - description: Name of the variable - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: New global variable - content.vb: Public Function AddGlobalInAddressSpace(addressSpace As UInteger, typeRef As ITypeRef, isConst As Boolean, linkage As Linkage, constVal As Constant, name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace* - implements: - - Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - nameWithType.vb: Module.AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant, String) - fullName.vb: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, String) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant, String) -- uid: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - commentId: M:Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - id: AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddGlobal(ITypeRef, string) - nameWithType: Module.AddGlobal(ITypeRef, string) - fullName: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobal - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 141 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: public GlobalVariable AddGlobal(ITypeRef typeRef, string name) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: name - type: System.String - description: Name of the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: The new - content.vb: Public Function AddGlobal(typeRef As ITypeRef, name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.Module.AddGlobal* - implements: - - Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - nameWithType.vb: Module.AddGlobal(ITypeRef, String) - fullName.vb: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, String) - name.vb: AddGlobal(ITypeRef, String) -- uid: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - commentId: M:Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - id: AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddGlobal(ITypeRef, bool, Linkage, Constant) - nameWithType: Module.AddGlobal(ITypeRef, bool, Linkage, Constant) - fullName: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobal - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 144 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: public GlobalVariable AddGlobal(ITypeRef typeRef, bool isConst, Linkage linkage, Constant constVal) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: isConst - type: System.Boolean - description: Flag to indicate if this global is a constant - - id: linkage - type: Ubiquity.NET.Llvm.Values.Linkage - description: Linkage type for this global - - id: constVal - type: Ubiquity.NET.Llvm.Values.Constant - description: Initial value for the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: New global variable - content.vb: Public Function AddGlobal(typeRef As ITypeRef, isConst As Boolean, linkage As Linkage, constVal As Constant) As GlobalVariable - overload: Ubiquity.NET.Llvm.Module.AddGlobal* - implements: - - Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - nameWithType.vb: Module.AddGlobal(ITypeRef, Boolean, Linkage, Constant) - fullName.vb: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - name.vb: AddGlobal(ITypeRef, Boolean, Linkage, Constant) -- uid: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - commentId: M:Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - id: AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddGlobal(ITypeRef, bool, Linkage, Constant, string) - nameWithType: Module.AddGlobal(ITypeRef, bool, Linkage, Constant, string) - fullName: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddGlobal - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 147 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a global to this module - example: [] - syntax: - content: public GlobalVariable AddGlobal(ITypeRef typeRef, bool isConst, Linkage linkage, Constant constVal, string name) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the value - - id: isConst - type: System.Boolean - description: Flag to indicate if this global is a constant - - id: linkage - type: Ubiquity.NET.Llvm.Values.Linkage - description: Linkage type for this global - - id: constVal - type: Ubiquity.NET.Llvm.Values.Constant - description: Initial value for the global - - id: name - type: System.String - description: Name of the variable - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: New global variable - content.vb: Public Function AddGlobal(typeRef As ITypeRef, isConst As Boolean, linkage As Linkage, constVal As Constant, name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.Module.AddGlobal* - implements: - - Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - nameWithType.vb: Module.AddGlobal(ITypeRef, Boolean, Linkage, Constant, String) - fullName.vb: Ubiquity.NET.Llvm.Module.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, String) - name.vb: AddGlobal(ITypeRef, Boolean, Linkage, Constant, String) -- uid: Ubiquity.NET.Llvm.Module.GetTypeByName(System.String) - commentId: M:Ubiquity.NET.Llvm.Module.GetTypeByName(System.String) - id: GetTypeByName(System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: GetTypeByName(string) - nameWithType: Module.GetTypeByName(string) - fullName: Ubiquity.NET.Llvm.Module.GetTypeByName(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetTypeByName - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 150 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves a by name from the module - example: [] - syntax: - content: public ITypeRef? GetTypeByName(string name) - parameters: - - id: name - type: System.String - description: Name of the type - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: The type or null if no type with the specified name exists in the module - content.vb: Public Function GetTypeByName(name As String) As ITypeRef - overload: Ubiquity.NET.Llvm.Module.GetTypeByName* - implements: - - Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String) - nameWithType.vb: Module.GetTypeByName(String) - fullName.vb: Ubiquity.NET.Llvm.Module.GetTypeByName(String) - name.vb: GetTypeByName(String) -- uid: Ubiquity.NET.Llvm.Module.GetNamedGlobal(System.String) - commentId: M:Ubiquity.NET.Llvm.Module.GetNamedGlobal(System.String) - id: GetNamedGlobal(System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: GetNamedGlobal(string) - nameWithType: Module.GetNamedGlobal(string) - fullName: Ubiquity.NET.Llvm.Module.GetNamedGlobal(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetNamedGlobal - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 153 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves a named global from the module - example: [] - syntax: - content: public GlobalVariable? GetNamedGlobal(string name) - parameters: - - id: name - type: System.String - description: Name of the global - return: - type: Ubiquity.NET.Llvm.Values.GlobalVariable - description: or null if not found - content.vb: Public Function GetNamedGlobal(name As String) As GlobalVariable - overload: Ubiquity.NET.Llvm.Module.GetNamedGlobal* - implements: - - Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String) - nameWithType.vb: Module.GetNamedGlobal(String) - fullName.vb: Ubiquity.NET.Llvm.Module.GetNamedGlobal(String) - name.vb: GetNamedGlobal(String) -- uid: Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - id: AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddModuleFlag(ModuleFlagBehavior, string, uint) - nameWithType: Module.AddModuleFlag(ModuleFlagBehavior, string, uint) - fullName: Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, string, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddModuleFlag - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 156 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a module flag to the module - example: [] - syntax: - content: public void AddModuleFlag(ModuleFlagBehavior behavior, string name, uint value) - parameters: - - id: behavior - type: Ubiquity.NET.Llvm.ModuleFlagBehavior - description: ModuleHandle flag behavior for this flag - - id: name - type: System.String - description: Name of the flag - - id: value - type: System.UInt32 - description: Value of the flag - content.vb: Public Sub AddModuleFlag(behavior As ModuleFlagBehavior, name As String, value As UInteger) - overload: Ubiquity.NET.Llvm.Module.AddModuleFlag* - implements: - - Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - nameWithType.vb: Module.AddModuleFlag(ModuleFlagBehavior, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, String, UInteger) - name.vb: AddModuleFlag(ModuleFlagBehavior, String, UInteger) -- uid: Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddModuleFlag(ModuleFlagBehavior, string, IrMetadata) - nameWithType: Module.AddModuleFlag(ModuleFlagBehavior, string, IrMetadata) - fullName: Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, string, Ubiquity.NET.Llvm.Metadata.IrMetadata) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddModuleFlag - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 159 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a module flag to the module - example: [] - syntax: - content: public void AddModuleFlag(ModuleFlagBehavior behavior, string name, IrMetadata value) - parameters: - - id: behavior - type: Ubiquity.NET.Llvm.ModuleFlagBehavior - description: ModuleHandle flag behavior for this flag - - id: name - type: System.String - description: Name of the flag - - id: value - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: Value of the flag - content.vb: Public Sub AddModuleFlag(behavior As ModuleFlagBehavior, name As String, value As IrMetadata) - overload: Ubiquity.NET.Llvm.Module.AddModuleFlag* - implements: - - Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: Module.AddModuleFlag(ModuleFlagBehavior, String, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.Module.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, String, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: AddModuleFlag(ModuleFlagBehavior, String, IrMetadata) -- uid: Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddNamedMetadataOperand(string, IrMetadata) - nameWithType: Module.AddNamedMetadataOperand(string, IrMetadata) - fullName: Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand(string, Ubiquity.NET.Llvm.Metadata.IrMetadata) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddNamedMetadataOperand - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 162 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds operand value to named metadata - example: [] - syntax: - content: public void AddNamedMetadataOperand(string name, IrMetadata value) - parameters: - - id: name - type: System.String - description: Name of the metadata - - id: value - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: operand value - content.vb: Public Sub AddNamedMetadataOperand(name As String, value As IrMetadata) - overload: Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand* - implements: - - Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: Module.AddNamedMetadataOperand(String, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand(String, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: AddNamedMetadataOperand(String, IrMetadata) -- uid: Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata(System.String) - commentId: M:Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata(System.String) - id: AddVersionIdentMetadata(System.String) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: AddVersionIdentMetadata(string) - nameWithType: Module.AddVersionIdentMetadata(string) - fullName: Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddVersionIdentMetadata - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 165 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds an llvm.ident metadata string to the module - example: [] - syntax: - content: public void AddVersionIdentMetadata(string version) - parameters: - - id: version - type: System.String - description: version information to place in the llvm.ident metadata - content.vb: Public Sub AddVersionIdentMetadata(version As String) - overload: Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata* - implements: - - Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String) - nameWithType.vb: Module.AddVersionIdentMetadata(String) - fullName.vb: Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata(String) - name.vb: AddVersionIdentMetadata(String) -- uid: Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - id: CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: CreateFunction(ref readonly DIBuilder, DIScope?, string, string?, DIFile?, uint, DebugFunctionType, bool, bool, uint, DebugInfoFlags, bool) - nameWithType: Module.CreateFunction(ref readonly DIBuilder, DIScope?, string, string?, DIFile?, uint, DebugFunctionType, bool, bool, uint, DebugInfoFlags, bool) - fullName: Ubiquity.NET.Llvm.Module.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope?, string, string?, Ubiquity.NET.Llvm.DebugInfo.DIFile?, uint, Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType, bool, bool, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 168 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a Function definition with Debug information - example: [] - syntax: - content: public Function CreateFunction(ref readonly DIBuilder diBuilder, DIScope? scope, string name, string? linkageName, DIFile? file, uint line, DebugFunctionType signature, bool isLocalToUnit, bool isDefinition, uint scopeLine, DebugInfoFlags debugFlags, bool isOptimized) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: The debug info builder to use to create the function (must be associated with this module) - - id: scope - type: Ubiquity.NET.Llvm.DebugInfo.DIScope - description: Containing scope for the function - - id: name - type: System.String - description: Name of the function in source language form - - id: linkageName - type: System.String - description: Mangled linker visible name of the function (may be same as name if mangling not required by source language - - id: file - type: Ubiquity.NET.Llvm.DebugInfo.DIFile - description: File containing the function definition - - id: line - type: System.UInt32 - description: Line number of the function definition - - id: signature - type: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - description: LLVM Function type for the signature of the function - - id: isLocalToUnit - type: System.Boolean - description: Flag to indicate if this function is local to the compilation unit - - id: isDefinition - type: System.Boolean - description: Flag to indicate if this is a definition - - id: scopeLine - type: System.UInt32 - description: First line of the function's outermost scope, this may not be the same as the first line of the function definition due to source formatting - - id: debugFlags - type: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - description: Additional flags describing this function - - id: isOptimized - type: System.Boolean - description: Flag to indicate if this function is optimized - return: - type: Ubiquity.NET.Llvm.Values.Function - description: Function described by the arguments - content.vb: Public Function CreateFunction(diBuilder As DIBuilder, scope As DIScope, name As String, linkageName As String, file As DIFile, line As UInteger, signature As DebugFunctionType, isLocalToUnit As Boolean, isDefinition As Boolean, scopeLine As UInteger, debugFlags As DebugInfoFlags, isOptimized As Boolean) As [Function] - overload: Ubiquity.NET.Llvm.Module.CreateFunction* - implements: - - Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - nameWithType.vb: Module.CreateFunction(DIBuilder, DIScope, String, String, DIFile, UInteger, DebugFunctionType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean) - fullName.vb: Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType, Boolean, Boolean, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Boolean) - name.vb: CreateFunction(DIBuilder, DIScope, String, String, DIFile, UInteger, DebugFunctionType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean) -- uid: Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - id: CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, IEnumerable>) - nameWithType: Module.CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, IEnumerable>) - fullName: Ubiquity.NET.Llvm.Module.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, System.Collections.Generic.IEnumerable>) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 171 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a function - example: [] - syntax: - content: public Function CreateFunction(ref readonly DIBuilder diBuilder, string name, bool isVarArg, IDebugType returnType, IEnumerable> argumentTypes) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: for creation of debug information - - id: name - type: System.String - description: Name of the function - - id: isVarArg - type: System.Boolean - description: Flag indicating if the function supports a variadic argument list - - id: returnType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type of the function - - id: argumentTypes - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - description: Arguments for the function - return: - type: Ubiquity.NET.Llvm.Values.Function - description: >- - Function, matching the signature specified. This may be a previously declared or defined - - function or a new function if none matching the name and signature is already present. - content.vb: Public Function CreateFunction(diBuilder As DIBuilder, name As String, isVarArg As Boolean, returnType As IDebugType(Of ITypeRef, DIType), argumentTypes As IEnumerable(Of IDebugType(Of ITypeRef, DIType))) As [Function] - overload: Ubiquity.NET.Llvm.Module.CreateFunction* - implements: - - Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - nameWithType.vb: Module.CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) -- uid: Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - commentId: M:Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - id: CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, params IDebugType[]) - nameWithType: Module.CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, params IDebugType[]) - fullName: Ubiquity.NET.Llvm.Module.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params Ubiquity.NET.Llvm.DebugInfo.IDebugType[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateFunction - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 174 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a function - example: [] - syntax: - content: public Function CreateFunction(ref readonly DIBuilder diBuilder, string name, bool isVarArg, IDebugType returnType, params IDebugType[] argumentTypes) - parameters: - - id: diBuilder - type: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - description: for creation of debug information - - id: name - type: System.String - description: Name of the function - - id: isVarArg - type: System.Boolean - description: Flag indicating if the function supports a variadic argument list - - id: returnType - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - description: Return type of the function - - id: argumentTypes - type: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[] - description: Arguments for the function - return: - type: Ubiquity.NET.Llvm.Values.Function - description: >- - Function, matching the signature specified. This may be a previously declared or defined - - function or a new function if none matching the name and signature is already present. - content.vb: Public Function CreateFunction(diBuilder As DIBuilder, name As String, isVarArg As Boolean, returnType As IDebugType(Of ITypeRef, DIType), ParamArray argumentTypes As IDebugType(Of ITypeRef, DIType)()) As [Function] - overload: Ubiquity.NET.Llvm.Module.CreateFunction* - implements: - - Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - nameWithType.vb: Module.CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), ParamArray IDebugType(Of ITypeRef, DIType)()) - fullName.vb: Ubiquity.NET.Llvm.Module.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), ParamArray Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)()) - name.vb: CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), ParamArray IDebugType(Of ITypeRef, DIType)()) -- uid: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - commentId: M:Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - id: GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: GetIntrinsicDeclaration(string, params ITypeRef[]) - nameWithType: Module.GetIntrinsicDeclaration(string, params ITypeRef[]) - fullName: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(string, params Ubiquity.NET.Llvm.Types.ITypeRef[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetIntrinsicDeclaration - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 177 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a declaration for an LLVM intrinsic function - remarks: >- - This method will match an overloaded intrinsic based on the parameter types. If an intrinsic - - has no overloads then an exact match is required. If the intrinsic has overloads than a prefix - - match is used. - -
important

- - It is important to note that the prefix match requires the name provided to have a length greater - - than that of the name of the intrinsic and that the name starts with a matching overloaded intrinsic. - - for example: 'llvm.memset' would not match the overloaded memset intrinsic but 'llvm.memset.p.i' does. - - Thus, it is generally a good idea to use the signature from the LLVM documentation without the address - - space, or bit widths. That is instead of 'llvm.memset.p0i8.i32' use 'llvm.memset.p.i'. - -

- example: [] - syntax: - content: public Function GetIntrinsicDeclaration(string name, params ITypeRef[] args) - parameters: - - id: name - type: System.String - description: Name of the intrinsic - - id: args - type: Ubiquity.NET.Llvm.Types.ITypeRef[] - description: Args for the intrinsic - return: - type: Ubiquity.NET.Llvm.Values.Function - description: Function declaration - content.vb: Public Function GetIntrinsicDeclaration(name As String, ParamArray args As ITypeRef()) As [Function] - overload: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration* - implements: - - Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - nameWithType.vb: Module.GetIntrinsicDeclaration(String, ParamArray ITypeRef()) - fullName.vb: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(String, ParamArray Ubiquity.NET.Llvm.Types.ITypeRef()) - name.vb: GetIntrinsicDeclaration(String, ParamArray ITypeRef()) -- uid: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - commentId: M:Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - id: GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: GetIntrinsicDeclaration(uint, params ITypeRef[]) - nameWithType: Module.GetIntrinsicDeclaration(uint, params ITypeRef[]) - fullName: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(uint, params Ubiquity.NET.Llvm.Types.ITypeRef[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetIntrinsicDeclaration - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 180 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a declaration for an LLVM intrinsic function - example: [] - syntax: - content: public Function GetIntrinsicDeclaration(uint id, params ITypeRef[] args) - parameters: - - id: id - type: System.UInt32 - description: id of the intrinsic - - id: args - type: Ubiquity.NET.Llvm.Types.ITypeRef[] - description: Arguments for the intrinsic - return: - type: Ubiquity.NET.Llvm.Values.Function - description: Function declaration - content.vb: Public Function GetIntrinsicDeclaration(id As UInteger, ParamArray args As ITypeRef()) As [Function] - overload: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration* - implements: - - Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - nameWithType.vb: Module.GetIntrinsicDeclaration(UInteger, ParamArray ITypeRef()) - fullName.vb: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration(UInteger, ParamArray Ubiquity.NET.Llvm.Types.ITypeRef()) - name.vb: GetIntrinsicDeclaration(UInteger, ParamArray ITypeRef()) -- uid: Ubiquity.NET.Llvm.Module.Clone - commentId: M:Ubiquity.NET.Llvm.Module.Clone - id: Clone - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Clone() - nameWithType: Module.Clone() - fullName: Ubiquity.NET.Llvm.Module.Clone() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Clone - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 183 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Clones the current module into the same context - example: [] - syntax: - content: public Module Clone() - return: - type: Ubiquity.NET.Llvm.Module - description: Cloned module - content.vb: Public Function Clone() As [Module] - overload: Ubiquity.NET.Llvm.Module.Clone* - implements: - - Ubiquity.NET.Llvm.IModule.Clone -- uid: Ubiquity.NET.Llvm.Module.Clone(Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.Module.Clone(Ubiquity.NET.Llvm.IContext) - id: Clone(Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Clone(IContext) - nameWithType: Module.Clone(IContext) - fullName: Ubiquity.NET.Llvm.Module.Clone(Ubiquity.NET.Llvm.IContext) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Clone - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 186 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Clones the module into a new - example: [] - syntax: - content: public Module Clone(IContext targetContext) - parameters: - - id: targetContext - type: Ubiquity.NET.Llvm.IContext - description: to clone the module into - return: - type: Ubiquity.NET.Llvm.Module - description: Cloned copy of the module - content.vb: Public Function Clone(targetContext As IContext) As [Module] - overload: Ubiquity.NET.Llvm.Module.Clone* - implements: - - Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) -- uid: Ubiquity.NET.Llvm.Module.SourceFileName - commentId: P:Ubiquity.NET.Llvm.Module.SourceFileName - id: SourceFileName - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: SourceFileName - nameWithType: Module.SourceFileName - fullName: Ubiquity.NET.Llvm.Module.SourceFileName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SourceFileName - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 189 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the name of the source file generating this module - example: [] - syntax: - content: public string SourceFileName { get; set; } - parameters: [] - return: - type: System.String - content.vb: Public Property SourceFileName As String - overload: Ubiquity.NET.Llvm.Module.SourceFileName* - implements: - - Ubiquity.NET.Llvm.IModule.SourceFileName -- uid: Ubiquity.NET.Llvm.Module.Comdats - commentId: P:Ubiquity.NET.Llvm.Module.Comdats - id: Comdats - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Comdats - nameWithType: Module.Comdats - fullName: Ubiquity.NET.Llvm.Module.Comdats - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Comdats - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 192 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the Comdats for this module - example: [] - syntax: - content: public ComdatCollection Comdats { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ComdatCollection - content.vb: Public ReadOnly Property Comdats As ComdatCollection - overload: Ubiquity.NET.Llvm.Module.Comdats* - implements: - - Ubiquity.NET.Llvm.IModule.Comdats -- uid: Ubiquity.NET.Llvm.Module.Context - commentId: P:Ubiquity.NET.Llvm.Module.Context - id: Context - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Context - nameWithType: Module.Context - fullName: Ubiquity.NET.Llvm.Module.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 195 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the this module belongs to - example: [] - syntax: - content: public IContext Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: Public ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.Module.Context* - implements: - - Ubiquity.NET.Llvm.IModule.Context -- uid: Ubiquity.NET.Llvm.Module.ModuleFlags - commentId: P:Ubiquity.NET.Llvm.Module.ModuleFlags - id: ModuleFlags - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: ModuleFlags - nameWithType: Module.ModuleFlags - fullName: Ubiquity.NET.Llvm.Module.ModuleFlags - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ModuleFlags - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 198 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the IrMetadata for module level flags - example: [] - syntax: - content: public IReadOnlyDictionary ModuleFlags { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyDictionary{System.String,Ubiquity.NET.Llvm.Metadata.ModuleFlag} - content.vb: Public ReadOnly Property ModuleFlags As IReadOnlyDictionary(Of String, ModuleFlag) - overload: Ubiquity.NET.Llvm.Module.ModuleFlags* - implements: - - Ubiquity.NET.Llvm.IModule.ModuleFlags -- uid: Ubiquity.NET.Llvm.Module.CompileUnits - commentId: P:Ubiquity.NET.Llvm.Module.CompileUnits - id: CompileUnits - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: CompileUnits - nameWithType: Module.CompileUnits - fullName: Ubiquity.NET.Llvm.Module.CompileUnits - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CompileUnits - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 201 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the Debug Compile units for this module - example: [] - syntax: - content: public IEnumerable CompileUnits { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DICompileUnit} - content.vb: Public ReadOnly Property CompileUnits As IEnumerable(Of DICompileUnit) - overload: Ubiquity.NET.Llvm.Module.CompileUnits* - implements: - - Ubiquity.NET.Llvm.IModule.CompileUnits -- uid: Ubiquity.NET.Llvm.Module.DataLayoutString - commentId: P:Ubiquity.NET.Llvm.Module.DataLayoutString - id: DataLayoutString - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: DataLayoutString - nameWithType: Module.DataLayoutString - fullName: Ubiquity.NET.Llvm.Module.DataLayoutString - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DataLayoutString - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 204 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets the Data layout string for this module - remarks: >- -
note

The data layout string doesn't do what seems obvious. - - That is, it doesn't force the target back-end to generate code - - or types with a particular layout. Rather, the layout string has - - to match the implicit layout of the target. Thus it should only - - come from the actual the code is - - targeting.

- example: [] - syntax: - content: public LazyEncodedString DataLayoutString { get; set; } - parameters: [] - return: - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - content.vb: Public Property DataLayoutString As LazyEncodedString - overload: Ubiquity.NET.Llvm.Module.DataLayoutString* - implements: - - Ubiquity.NET.Llvm.IModule.DataLayoutString -- uid: Ubiquity.NET.Llvm.Module.Layout - commentId: P:Ubiquity.NET.Llvm.Module.Layout - id: Layout - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Layout - nameWithType: Module.Layout - fullName: Ubiquity.NET.Llvm.Module.Layout - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Layout - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 207 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the target data layout for this module - remarks: >- - The setter uses a by value copy where the input value is serialized to - - a string and then set via . That is, even - - if the implementation of is for an - - type no ownership transfer occurs. - example: [] - syntax: - content: public IDataLayout Layout { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IDataLayout - content.vb: Public Property Layout As IDataLayout - overload: Ubiquity.NET.Llvm.Module.Layout* - implements: - - Ubiquity.NET.Llvm.IModule.Layout -- uid: Ubiquity.NET.Llvm.Module.TargetTriple - commentId: P:Ubiquity.NET.Llvm.Module.TargetTriple - id: TargetTriple - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: TargetTriple - nameWithType: Module.TargetTriple - fullName: Ubiquity.NET.Llvm.Module.TargetTriple - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetTriple - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 210 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the Target Triple describing the target, ABI and OS - example: [] - syntax: - content: public string TargetTriple { get; set; } - parameters: [] - return: - type: System.String - content.vb: Public Property TargetTriple As String - overload: Ubiquity.NET.Llvm.Module.TargetTriple* - implements: - - Ubiquity.NET.Llvm.IModule.TargetTriple -- uid: Ubiquity.NET.Llvm.Module.Globals - commentId: P:Ubiquity.NET.Llvm.Module.Globals - id: Globals - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Globals - nameWithType: Module.Globals - fullName: Ubiquity.NET.Llvm.Module.Globals - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Globals - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 213 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the s contained by this module - example: [] - syntax: - content: public IEnumerable Globals { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalVariable} - content.vb: Public ReadOnly Property Globals As IEnumerable(Of GlobalVariable) - overload: Ubiquity.NET.Llvm.Module.Globals* - implements: - - Ubiquity.NET.Llvm.IModule.Globals -- uid: Ubiquity.NET.Llvm.Module.Functions - commentId: P:Ubiquity.NET.Llvm.Module.Functions - id: Functions - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Functions - nameWithType: Module.Functions - fullName: Ubiquity.NET.Llvm.Module.Functions - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Functions - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 216 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the functions contained in this module - example: [] - syntax: - content: public IEnumerable Functions { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Function} - content.vb: Public ReadOnly Property Functions As IEnumerable(Of [Function]) - overload: Ubiquity.NET.Llvm.Module.Functions* - implements: - - Ubiquity.NET.Llvm.IModule.Functions -- uid: Ubiquity.NET.Llvm.Module.Aliases - commentId: P:Ubiquity.NET.Llvm.Module.Aliases - id: Aliases - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Aliases - nameWithType: Module.Aliases - fullName: Ubiquity.NET.Llvm.Module.Aliases - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Aliases - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 219 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the global aliases in this module - example: [] - syntax: - content: public IEnumerable Aliases { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalAlias} - content.vb: Public ReadOnly Property Aliases As IEnumerable(Of GlobalAlias) - overload: Ubiquity.NET.Llvm.Module.Aliases* - implements: - - Ubiquity.NET.Llvm.IModule.Aliases -- uid: Ubiquity.NET.Llvm.Module.NamedMetadata - commentId: P:Ubiquity.NET.Llvm.Module.NamedMetadata - id: NamedMetadata - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: NamedMetadata - nameWithType: Module.NamedMetadata - fullName: Ubiquity.NET.Llvm.Module.NamedMetadata - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NamedMetadata - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 222 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the s for this module - example: [] - syntax: - content: public IEnumerable NamedMetadata { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.NamedMDNode} - content.vb: Public ReadOnly Property NamedMetadata As IEnumerable(Of NamedMDNode) - overload: Ubiquity.NET.Llvm.Module.NamedMetadata* - implements: - - Ubiquity.NET.Llvm.IModule.NamedMetadata -- uid: Ubiquity.NET.Llvm.Module.IndirectFunctions - commentId: P:Ubiquity.NET.Llvm.Module.IndirectFunctions - id: IndirectFunctions - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: IndirectFunctions - nameWithType: Module.IndirectFunctions - fullName: Ubiquity.NET.Llvm.Module.IndirectFunctions - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IndirectFunctions - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 225 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the s in this module - example: [] - syntax: - content: public IEnumerable IndirectFunctions { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalIFunc} - content.vb: Public ReadOnly Property IndirectFunctions As IEnumerable(Of GlobalIFunc) - overload: Ubiquity.NET.Llvm.Module.IndirectFunctions* - implements: - - Ubiquity.NET.Llvm.IModule.IndirectFunctions -- uid: Ubiquity.NET.Llvm.Module.Name - commentId: P:Ubiquity.NET.Llvm.Module.Name - id: Name - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: Name - nameWithType: Module.Name - fullName: Ubiquity.NET.Llvm.Module.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 228 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the name of the module - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.Module.Name* - implements: - - Ubiquity.NET.Llvm.IModule.Name -- uid: Ubiquity.NET.Llvm.Module.ModuleInlineAsm - commentId: P:Ubiquity.NET.Llvm.Module.ModuleInlineAsm - id: ModuleInlineAsm - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: ModuleInlineAsm - nameWithType: Module.ModuleInlineAsm - fullName: Ubiquity.NET.Llvm.Module.ModuleInlineAsm - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ModuleInlineAsm - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 231 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets the module level inline assembly - example: [] - syntax: - content: public string ModuleInlineAsm { get; set; } - parameters: [] - return: - type: System.String - content.vb: Public Property ModuleInlineAsm As String - overload: Ubiquity.NET.Llvm.Module.ModuleInlineAsm* - implements: - - Ubiquity.NET.Llvm.IModule.ModuleInlineAsm -- uid: Ubiquity.NET.Llvm.Module.LoadFrom(System.String,Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.Module.LoadFrom(System.String,Ubiquity.NET.Llvm.IContext) - id: LoadFrom(System.String,Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: LoadFrom(string, IContext) - nameWithType: Module.LoadFrom(string, IContext) - fullName: Ubiquity.NET.Llvm.Module.LoadFrom(string, Ubiquity.NET.Llvm.IContext) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LoadFrom - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 238 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Load a bit-code module from a given file - example: [] - syntax: - content: public static Module LoadFrom(string path, IContext context) - parameters: - - id: path - type: System.String - description: path of the file to load - - id: context - type: Ubiquity.NET.Llvm.IContext - description: Context to use for creating the module - return: - type: Ubiquity.NET.Llvm.Module - description: Loaded - content.vb: Public Shared Function LoadFrom(path As String, context As IContext) As [Module] - overload: Ubiquity.NET.Llvm.Module.LoadFrom* - nameWithType.vb: Module.LoadFrom(String, IContext) - fullName.vb: Ubiquity.NET.Llvm.Module.LoadFrom(String, Ubiquity.NET.Llvm.IContext) - name.vb: LoadFrom(String, IContext) -- uid: Ubiquity.NET.Llvm.Module.LoadFrom(Ubiquity.NET.Llvm.MemoryBuffer,Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.Module.LoadFrom(Ubiquity.NET.Llvm.MemoryBuffer,Ubiquity.NET.Llvm.IContext) - id: LoadFrom(Ubiquity.NET.Llvm.MemoryBuffer,Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.Module - langs: - - csharp - - vb - name: LoadFrom(MemoryBuffer, IContext) - nameWithType: Module.LoadFrom(MemoryBuffer, IContext) - fullName: Ubiquity.NET.Llvm.Module.LoadFrom(Ubiquity.NET.Llvm.MemoryBuffer, Ubiquity.NET.Llvm.IContext) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LoadFrom - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 263 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Load bit code from a memory buffer - remarks: >- - This along with are useful for "cloning" - - a module from one context to another. This allows creation of multiple - - modules on different threads and contexts and later moving them to a - - single context in order to link them into a single final module for - - optimization. - example: [] - syntax: - content: public static Module LoadFrom(MemoryBuffer buffer, IContext context) - parameters: - - id: buffer - type: Ubiquity.NET.Llvm.MemoryBuffer - description: Buffer to load from - - id: context - type: Ubiquity.NET.Llvm.IContext - description: Context to load the module into - return: - type: Ubiquity.NET.Llvm.Module - description: Loaded - content.vb: Public Shared Function LoadFrom(buffer As MemoryBuffer, context As IContext) As [Module] - overload: Ubiquity.NET.Llvm.Module.LoadFrom* -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IModule.html - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.IEquatable{Ubiquity.NET.Llvm.IModule} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.IModule} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of IModule) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.IModule) - name.vb: IEquatable(Of IModule) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.IModule - name: IModule - href: Ubiquity.NET.Llvm.IModule.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.IModule - name: IModule - href: Ubiquity.NET.Llvm.IModule.html - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Module} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Module} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Module) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Module) - name.vb: IEquatable(Of Module) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Module - name: Module - href: Ubiquity.NET.Llvm.Module.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Module - name: Module - href: Ubiquity.NET.Llvm.Module.html - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Module.Equals* - commentId: Overload:Ubiquity.NET.Llvm.Module.Equals - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Equals_Ubiquity_NET_Llvm_IModule_ - name: Equals - nameWithType: Module.Equals - fullName: Ubiquity.NET.Llvm.Module.Equals -- uid: System.IEquatable{Ubiquity.NET.Llvm.IModule}.Equals(Ubiquity.NET.Llvm.IModule) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.IModule}.Equals(Ubiquity.NET.Llvm.IModule) - parent: System.IEquatable{Ubiquity.NET.Llvm.IModule} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(IModule) - nameWithType: IEquatable.Equals(IModule) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.IModule) - nameWithType.vb: IEquatable(Of IModule).Equals(IModule) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.IModule).Equals(Ubiquity.NET.Llvm.IModule) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.IModule}.Equals(Ubiquity.NET.Llvm.IModule) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.IModule - name: IModule - href: Ubiquity.NET.Llvm.IModule.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.IModule}.Equals(Ubiquity.NET.Llvm.IModule) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.IModule - name: IModule - href: Ubiquity.NET.Llvm.IModule.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Module}.Equals(Ubiquity.NET.Llvm.Module) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Module}.Equals(Ubiquity.NET.Llvm.Module) - parent: System.IEquatable{Ubiquity.NET.Llvm.Module} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(Module) - nameWithType: IEquatable.Equals(Module) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Module) - nameWithType.vb: IEquatable(Of Module).Equals(Module) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Module).Equals(Ubiquity.NET.Llvm.Module) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Module}.Equals(Ubiquity.NET.Llvm.Module) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Module - name: Module - href: Ubiquity.NET.Llvm.Module.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Module}.Equals(Ubiquity.NET.Llvm.Module) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Module - name: Module - href: Ubiquity.NET.Llvm.Module.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Module.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.Module.GetHashCode - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_GetHashCode - name: GetHashCode - nameWithType: Module.GetHashCode - fullName: Ubiquity.NET.Llvm.Module.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Module.DebugMetadataVersion* - commentId: Overload:Ubiquity.NET.Llvm.Module.DebugMetadataVersion - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_DebugMetadataVersion - name: DebugMetadataVersion - nameWithType: Module.DebugMetadataVersion - fullName: Ubiquity.NET.Llvm.Module.DebugMetadataVersion -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Module.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.Module.IsDisposed - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_IsDisposed - name: IsDisposed - nameWithType: Module.IsDisposed - fullName: Ubiquity.NET.Llvm.Module.IsDisposed -- uid: Ubiquity.NET.Llvm.Module.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.Module.Dispose - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Dispose - name: Dispose - nameWithType: Module.Dispose - fullName: Ubiquity.NET.Llvm.Module.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Module.AppendInlineAsm* - commentId: Overload:Ubiquity.NET.Llvm.Module.AppendInlineAsm - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_AppendInlineAsm_System_String_ - name: AppendInlineAsm - nameWithType: Module.AppendInlineAsm - fullName: Ubiquity.NET.Llvm.Module.AppendInlineAsm -- uid: Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AppendInlineAsm_System_String_ - name: AppendInlineAsm(string) - nameWithType: IModule.AppendInlineAsm(string) - fullName: Ubiquity.NET.Llvm.IModule.AppendInlineAsm(string) - nameWithType.vb: IModule.AppendInlineAsm(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AppendInlineAsm(String) - name.vb: AppendInlineAsm(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String) - name: AppendInlineAsm - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AppendInlineAsm_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AppendInlineAsm(System.String) - name: AppendInlineAsm - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AppendInlineAsm_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: Ubiquity.NET.Llvm.Module.TryRunPasses* - commentId: Overload:Ubiquity.NET.Llvm.Module.TryRunPasses - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_TryRunPasses_System_String___ - name: TryRunPasses - nameWithType: Module.TryRunPasses - fullName: Ubiquity.NET.Llvm.Module.TryRunPasses -- uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[]) - commentId: M:Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[]) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_System_String___ - name: TryRunPasses(params string[]) - nameWithType: IModule.TryRunPasses(params string[]) - fullName: Ubiquity.NET.Llvm.IModule.TryRunPasses(params string[]) - nameWithType.vb: IModule.TryRunPasses(ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryRunPasses(ParamArray String()) - name.vb: TryRunPasses(ParamArray String()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[]) - name: TryRunPasses - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_System_String___ - - name: ( - - name: params - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(System.String[]) - name: TryRunPasses - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_System_String___ - - name: ( - - name: ParamArray - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ( - - name: ) - - name: ) -- uid: System.String[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string[] - nameWithType: string[] - fullName: string[] - nameWithType.vb: String() - fullName.vb: String() - name.vb: String() - spec.csharp: - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '[' - - name: ']' - spec.vb: - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ErrorInfo.html - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo -- uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - commentId: M:Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_Ubiquity_NET_Llvm_PassBuilderOptions_System_String___ - name: TryRunPasses(PassBuilderOptions, params string[]) - nameWithType: IModule.TryRunPasses(PassBuilderOptions, params string[]) - fullName: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions, params string[]) - nameWithType.vb: IModule.TryRunPasses(PassBuilderOptions, ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions, ParamArray String()) - name.vb: TryRunPasses(PassBuilderOptions, ParamArray String()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - name: TryRunPasses - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_Ubiquity_NET_Llvm_PassBuilderOptions_System_String___ - - name: ( - - uid: Ubiquity.NET.Llvm.PassBuilderOptions - name: PassBuilderOptions - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - name: TryRunPasses - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_Ubiquity_NET_Llvm_PassBuilderOptions_System_String___ - - name: ( - - uid: Ubiquity.NET.Llvm.PassBuilderOptions - name: PassBuilderOptions - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.PassBuilderOptions - commentId: T:Ubiquity.NET.Llvm.PassBuilderOptions - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - name: PassBuilderOptions - nameWithType: PassBuilderOptions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions -- uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - commentId: M:Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_Ubiquity_NET_Llvm_TargetMachine_Ubiquity_NET_Llvm_PassBuilderOptions_System_String___ - name: TryRunPasses(TargetMachine, PassBuilderOptions, params string[]) - nameWithType: IModule.TryRunPasses(TargetMachine, PassBuilderOptions, params string[]) - fullName: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine, Ubiquity.NET.Llvm.PassBuilderOptions, params string[]) - nameWithType.vb: IModule.TryRunPasses(TargetMachine, PassBuilderOptions, ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine, Ubiquity.NET.Llvm.PassBuilderOptions, ParamArray String()) - name.vb: TryRunPasses(TargetMachine, PassBuilderOptions, ParamArray String()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - name: TryRunPasses - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_Ubiquity_NET_Llvm_TargetMachine_Ubiquity_NET_Llvm_PassBuilderOptions_System_String___ - - name: ( - - uid: Ubiquity.NET.Llvm.TargetMachine - name: TargetMachine - href: Ubiquity.NET.Llvm.TargetMachine.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.PassBuilderOptions - name: PassBuilderOptions - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - name: TryRunPasses - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryRunPasses_Ubiquity_NET_Llvm_TargetMachine_Ubiquity_NET_Llvm_PassBuilderOptions_System_String___ - - name: ( - - uid: Ubiquity.NET.Llvm.TargetMachine - name: TargetMachine - href: Ubiquity.NET.Llvm.TargetMachine.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.PassBuilderOptions - name: PassBuilderOptions - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.TargetMachine - commentId: T:Ubiquity.NET.Llvm.TargetMachine - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetMachine.html - name: TargetMachine - nameWithType: TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine -- uid: Ubiquity.NET.Llvm.Module.Link* - commentId: Overload:Ubiquity.NET.Llvm.Module.Link - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Link_Ubiquity_NET_Llvm_Module_ - name: Link - nameWithType: Module.Link - fullName: Ubiquity.NET.Llvm.Module.Link -- uid: Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Link_Ubiquity_NET_Llvm_Module_ - name: Link(Module) - nameWithType: IModule.Link(Module) - fullName: Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - name: Link - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Link_Ubiquity_NET_Llvm_Module_ - - name: ( - - uid: Ubiquity.NET.Llvm.Module - name: Module - href: Ubiquity.NET.Llvm.Module.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.Link(Ubiquity.NET.Llvm.Module) - name: Link - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Link_Ubiquity_NET_Llvm_Module_ - - name: ( - - uid: Ubiquity.NET.Llvm.Module - name: Module - href: Ubiquity.NET.Llvm.Module.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.Verify* - commentId: Overload:Ubiquity.NET.Llvm.Module.Verify - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Verify_System_String__ - name: Verify - nameWithType: Module.Verify - fullName: Ubiquity.NET.Llvm.Module.Verify -- uid: Ubiquity.NET.Llvm.IModule.Verify(System.String@) - commentId: M:Ubiquity.NET.Llvm.IModule.Verify(System.String@) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Verify_System_String__ - name: Verify(out string) - nameWithType: IModule.Verify(out string) - fullName: Ubiquity.NET.Llvm.IModule.Verify(out string) - nameWithType.vb: IModule.Verify(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.Verify(String) - name.vb: Verify(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.Verify(System.String@) - name: Verify - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Verify_System_String__ - - name: ( - - name: out - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.Verify(System.String@) - name: Verify - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Verify_System_String__ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Module.TryGetFunction* - commentId: Overload:Ubiquity.NET.Llvm.Module.TryGetFunction - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_TryGetFunction_System_String_Ubiquity_NET_Llvm_Values_Function__ - name: TryGetFunction - nameWithType: Module.TryGetFunction - fullName: Ubiquity.NET.Llvm.Module.TryGetFunction -- uid: Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - commentId: M:Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryGetFunction_System_String_Ubiquity_NET_Llvm_Values_Function__ - name: TryGetFunction(string, out Function) - nameWithType: IModule.TryGetFunction(string, out Function) - fullName: Ubiquity.NET.Llvm.IModule.TryGetFunction(string, out Ubiquity.NET.Llvm.Values.Function) - nameWithType.vb: IModule.TryGetFunction(String, Function) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryGetFunction(String, Ubiquity.NET.Llvm.Values.Function) - name.vb: TryGetFunction(String, Function) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - name: TryGetFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryGetFunction_System_String_Ubiquity_NET_Llvm_Values_Function__ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - name: out - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.TryGetFunction(System.String,Ubiquity.NET.Llvm.Values.Function@) - name: TryGetFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryGetFunction_System_String_Ubiquity_NET_Llvm_Values_Function__ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - commentId: T:Ubiquity.NET.Llvm.Values.GlobalIFunc - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - name: GlobalIFunc - nameWithType: GlobalIFunc - fullName: Ubiquity.NET.Llvm.Values.GlobalIFunc -- uid: Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc* - commentId: Overload:Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_CreateAndAddGlobalIFunc_System_String_Ubiquity_NET_Llvm_Types_ITypeRef_System_UInt32_Ubiquity_NET_Llvm_Values_Function_ - name: CreateAndAddGlobalIFunc - nameWithType: Module.CreateAndAddGlobalIFunc - fullName: Ubiquity.NET.Llvm.Module.CreateAndAddGlobalIFunc -- uid: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateAndAddGlobalIFunc_System_String_Ubiquity_NET_Llvm_Types_ITypeRef_System_UInt32_Ubiquity_NET_Llvm_Values_Function_ - name: CreateAndAddGlobalIFunc(string, ITypeRef, uint, Function) - nameWithType: IModule.CreateAndAddGlobalIFunc(string, ITypeRef, uint, Function) - fullName: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(string, Ubiquity.NET.Llvm.Types.ITypeRef, uint, Ubiquity.NET.Llvm.Values.Function) - nameWithType.vb: IModule.CreateAndAddGlobalIFunc(String, ITypeRef, UInteger, Function) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(String, Ubiquity.NET.Llvm.Types.ITypeRef, UInteger, Ubiquity.NET.Llvm.Values.Function) - name.vb: CreateAndAddGlobalIFunc(String, ITypeRef, UInteger, Function) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - name: CreateAndAddGlobalIFunc - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateAndAddGlobalIFunc_System_String_Ubiquity_NET_Llvm_Types_ITypeRef_System_UInt32_Ubiquity_NET_Llvm_Values_Function_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.CreateAndAddGlobalIFunc(System.String,Ubiquity.NET.Llvm.Types.ITypeRef,System.UInt32,Ubiquity.NET.Llvm.Values.Function) - name: CreateAndAddGlobalIFunc - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateAndAddGlobalIFunc_System_String_Ubiquity_NET_Llvm_Types_ITypeRef_System_UInt32_Ubiquity_NET_Llvm_Values_Function_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc* - commentId: Overload:Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_TryGetNamedGlobalIFunc_System_String_Ubiquity_NET_Llvm_Values_GlobalIFunc__ - name: TryGetNamedGlobalIFunc - nameWithType: Module.TryGetNamedGlobalIFunc - fullName: Ubiquity.NET.Llvm.Module.TryGetNamedGlobalIFunc -- uid: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - commentId: M:Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryGetNamedGlobalIFunc_System_String_Ubiquity_NET_Llvm_Values_GlobalIFunc__ - name: TryGetNamedGlobalIFunc(string, out GlobalIFunc) - nameWithType: IModule.TryGetNamedGlobalIFunc(string, out GlobalIFunc) - fullName: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(string, out Ubiquity.NET.Llvm.Values.GlobalIFunc) - nameWithType.vb: IModule.TryGetNamedGlobalIFunc(String, GlobalIFunc) - fullName.vb: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(String, Ubiquity.NET.Llvm.Values.GlobalIFunc) - name.vb: TryGetNamedGlobalIFunc(String, GlobalIFunc) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - name: TryGetNamedGlobalIFunc - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryGetNamedGlobalIFunc_System_String_Ubiquity_NET_Llvm_Values_GlobalIFunc__ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - name: out - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.TryGetNamedGlobalIFunc(System.String,Ubiquity.NET.Llvm.Values.GlobalIFunc@) - name: TryGetNamedGlobalIFunc - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TryGetNamedGlobalIFunc_System_String_Ubiquity_NET_Llvm_Values_GlobalIFunc__ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.CreateFunction* - commentId: Overload:Ubiquity.NET.Llvm.Module.CreateFunction - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_CreateFunction_System_String_Ubiquity_NET_Llvm_Types_IFunctionType_ - name: CreateFunction - nameWithType: Module.CreateFunction - fullName: Ubiquity.NET.Llvm.Module.CreateFunction -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_System_String_Ubiquity_NET_Llvm_Types_IFunctionType_ - name: CreateFunction(string, IFunctionType) - nameWithType: IModule.CreateFunction(string, IFunctionType) - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction(string, Ubiquity.NET.Llvm.Types.IFunctionType) - nameWithType.vb: IModule.CreateFunction(String, IFunctionType) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateFunction(String, Ubiquity.NET.Llvm.Types.IFunctionType) - name.vb: CreateFunction(String, IFunctionType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - name: CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_System_String_Ubiquity_NET_Llvm_Types_IFunctionType_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IFunctionType - name: IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.CreateFunction(System.String,Ubiquity.NET.Llvm.Types.IFunctionType) - name: CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_System_String_Ubiquity_NET_Llvm_Types_IFunctionType_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.IFunctionType - name: IFunctionType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType -- uid: Ubiquity.NET.Llvm.Module.WriteToFile* - commentId: Overload:Ubiquity.NET.Llvm.Module.WriteToFile - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_WriteToFile_System_String_ - name: WriteToFile - nameWithType: Module.WriteToFile - fullName: Ubiquity.NET.Llvm.Module.WriteToFile -- uid: Ubiquity.NET.Llvm.IModule.WriteToFile(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.WriteToFile(System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToFile_System_String_ - name: WriteToFile(string) - nameWithType: IModule.WriteToFile(string) - fullName: Ubiquity.NET.Llvm.IModule.WriteToFile(string) - nameWithType.vb: IModule.WriteToFile(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.WriteToFile(String) - name.vb: WriteToFile(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.WriteToFile(System.String) - name: WriteToFile - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToFile_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.WriteToFile(System.String) - name: WriteToFile - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToFile_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Module.WriteToTextFile* - commentId: Overload:Ubiquity.NET.Llvm.Module.WriteToTextFile - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_WriteToTextFile_System_String_System_String__ - name: WriteToTextFile - nameWithType: Module.WriteToTextFile - fullName: Ubiquity.NET.Llvm.Module.WriteToTextFile -- uid: Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@) - commentId: M:Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToTextFile_System_String_System_String__ - name: WriteToTextFile(string, out string) - nameWithType: IModule.WriteToTextFile(string, out string) - fullName: Ubiquity.NET.Llvm.IModule.WriteToTextFile(string, out string) - nameWithType.vb: IModule.WriteToTextFile(String, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.WriteToTextFile(String, String) - name.vb: WriteToTextFile(String, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@) - name: WriteToTextFile - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToTextFile_System_String_System_String__ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.WriteToTextFile(System.String,System.String@) - name: WriteToTextFile - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToTextFile_System_String_System_String__ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Module.WriteToString* - commentId: Overload:Ubiquity.NET.Llvm.Module.WriteToString - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_WriteToString - name: WriteToString - nameWithType: Module.WriteToString - fullName: Ubiquity.NET.Llvm.Module.WriteToString -- uid: Ubiquity.NET.Llvm.IModule.WriteToString - commentId: M:Ubiquity.NET.Llvm.IModule.WriteToString - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToString - name: WriteToString() - nameWithType: IModule.WriteToString() - fullName: Ubiquity.NET.Llvm.IModule.WriteToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.WriteToString - name: WriteToString - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.WriteToString - name: WriteToString - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.MemoryBuffer - commentId: T:Ubiquity.NET.Llvm.MemoryBuffer - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.MemoryBuffer.html - name: MemoryBuffer - nameWithType: MemoryBuffer - fullName: Ubiquity.NET.Llvm.MemoryBuffer -- uid: Ubiquity.NET.Llvm.Module.WriteToBuffer* - commentId: Overload:Ubiquity.NET.Llvm.Module.WriteToBuffer - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_WriteToBuffer - name: WriteToBuffer - nameWithType: Module.WriteToBuffer - fullName: Ubiquity.NET.Llvm.Module.WriteToBuffer -- uid: Ubiquity.NET.Llvm.IModule.WriteToBuffer - commentId: M:Ubiquity.NET.Llvm.IModule.WriteToBuffer - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToBuffer - name: WriteToBuffer() - nameWithType: IModule.WriteToBuffer() - fullName: Ubiquity.NET.Llvm.IModule.WriteToBuffer() - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.WriteToBuffer - name: WriteToBuffer - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToBuffer - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.WriteToBuffer - name: WriteToBuffer - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_WriteToBuffer - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias - commentId: T:Ubiquity.NET.Llvm.Values.GlobalAlias - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - name: GlobalAlias - nameWithType: GlobalAlias - fullName: Ubiquity.NET.Llvm.Values.GlobalAlias -- uid: Ubiquity.NET.Llvm.Module.AddAlias* - commentId: Overload:Ubiquity.NET.Llvm.Module.AddAlias - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_AddAlias_Ubiquity_NET_Llvm_Values_Value_System_String_System_UInt32_ - name: AddAlias - nameWithType: Module.AddAlias - fullName: Ubiquity.NET.Llvm.Module.AddAlias -- uid: Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddAlias_Ubiquity_NET_Llvm_Values_Value_System_String_System_UInt32_ - name: AddAlias(Value, string, uint) - nameWithType: IModule.AddAlias(Value, string, uint) - fullName: Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value, string, uint) - nameWithType.vb: IModule.AddAlias(Value, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value, String, UInteger) - name.vb: AddAlias(Value, String, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - name: AddAlias - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddAlias_Ubiquity_NET_Llvm_Values_Value_System_String_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddAlias(Ubiquity.NET.Llvm.Values.Value,System.String,System.UInt32) - name: AddAlias - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddAlias_Ubiquity_NET_Llvm_Values_Value_System_String_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Module.GetAlias* - commentId: Overload:Ubiquity.NET.Llvm.Module.GetAlias - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_GetAlias_System_String_ - name: GetAlias - nameWithType: Module.GetAlias - fullName: Ubiquity.NET.Llvm.Module.GetAlias -- uid: Ubiquity.NET.Llvm.IModule.GetAlias(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.GetAlias(System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetAlias_System_String_ - name: GetAlias(string) - nameWithType: IModule.GetAlias(string) - fullName: Ubiquity.NET.Llvm.IModule.GetAlias(string) - nameWithType.vb: IModule.GetAlias(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetAlias(String) - name.vb: GetAlias(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.GetAlias(System.String) - name: GetAlias - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetAlias_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.GetAlias(System.String) - name: GetAlias - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetAlias_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable - commentId: T:Ubiquity.NET.Llvm.Values.GlobalVariable - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - name: GlobalVariable - nameWithType: GlobalVariable - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable -- uid: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace* - commentId: Overload:Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - name: AddGlobalInAddressSpace - nameWithType: Module.AddGlobalInAddressSpace - fullName: Ubiquity.NET.Llvm.Module.AddGlobalInAddressSpace -- uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - name: AddGlobalInAddressSpace(uint, ITypeRef, string) - nameWithType: IModule.AddGlobalInAddressSpace(uint, ITypeRef, string) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, string) - nameWithType.vb: IModule.AddGlobalInAddressSpace(UInteger, ITypeRef, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, String) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - name: AddGlobalInAddressSpace - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - name: AddGlobalInAddressSpace - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_ - name: AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant) - nameWithType: IModule.AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - nameWithType.vb: IModule.AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - name: AddGlobalInAddressSpace - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - name: AddGlobalInAddressSpace - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Linkage - commentId: T:Ubiquity.NET.Llvm.Values.Linkage - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Linkage.html - name: Linkage - nameWithType: Linkage - fullName: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_System_String_ - name: AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant, string) - nameWithType: IModule.AddGlobalInAddressSpace(uint, ITypeRef, bool, Linkage, Constant, string) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(uint, Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, string) - nameWithType.vb: IModule.AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(UInteger, Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, String) - name.vb: AddGlobalInAddressSpace(UInteger, ITypeRef, Boolean, Linkage, Constant, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - name: AddGlobalInAddressSpace - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_System_String_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobalInAddressSpace(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - name: AddGlobalInAddressSpace - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobalInAddressSpace_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_System_String_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Module.AddGlobal* - commentId: Overload:Ubiquity.NET.Llvm.Module.AddGlobal - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - name: AddGlobal - nameWithType: Module.AddGlobal - fullName: Ubiquity.NET.Llvm.Module.AddGlobal -- uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - name: AddGlobal(ITypeRef, string) - nameWithType: IModule.AddGlobal(ITypeRef, string) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, string) - nameWithType.vb: IModule.AddGlobal(ITypeRef, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, String) - name.vb: AddGlobal(ITypeRef, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - name: AddGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.String) - name: AddGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_ - name: AddGlobal(ITypeRef, bool, Linkage, Constant) - nameWithType: IModule.AddGlobal(ITypeRef, bool, Linkage, Constant) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - nameWithType.vb: IModule.AddGlobal(ITypeRef, Boolean, Linkage, Constant) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant) - name.vb: AddGlobal(ITypeRef, Boolean, Linkage, Constant) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - name: AddGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant) - name: AddGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_System_String_ - name: AddGlobal(ITypeRef, bool, Linkage, Constant, string) - nameWithType: IModule.AddGlobal(ITypeRef, bool, Linkage, Constant, string) - fullName: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, bool, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, string) - nameWithType.vb: IModule.AddGlobal(ITypeRef, Boolean, Linkage, Constant, String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef, Boolean, Ubiquity.NET.Llvm.Values.Linkage, Ubiquity.NET.Llvm.Values.Constant, String) - name.vb: AddGlobal(ITypeRef, Boolean, Linkage, Constant, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - name: AddGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddGlobal(Ubiquity.NET.Llvm.Types.ITypeRef,System.Boolean,Ubiquity.NET.Llvm.Values.Linkage,Ubiquity.NET.Llvm.Values.Constant,System.String) - name: AddGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddGlobal_Ubiquity_NET_Llvm_Types_ITypeRef_System_Boolean_Ubiquity_NET_Llvm_Values_Linkage_Ubiquity_NET_Llvm_Values_Constant_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Module.GetTypeByName* - commentId: Overload:Ubiquity.NET.Llvm.Module.GetTypeByName - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_GetTypeByName_System_String_ - name: GetTypeByName - nameWithType: Module.GetTypeByName - fullName: Ubiquity.NET.Llvm.Module.GetTypeByName -- uid: Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetTypeByName_System_String_ - name: GetTypeByName(string) - nameWithType: IModule.GetTypeByName(string) - fullName: Ubiquity.NET.Llvm.IModule.GetTypeByName(string) - nameWithType.vb: IModule.GetTypeByName(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetTypeByName(String) - name.vb: GetTypeByName(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String) - name: GetTypeByName - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetTypeByName_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.GetTypeByName(System.String) - name: GetTypeByName - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetTypeByName_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Module.GetNamedGlobal* - commentId: Overload:Ubiquity.NET.Llvm.Module.GetNamedGlobal - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_GetNamedGlobal_System_String_ - name: GetNamedGlobal - nameWithType: Module.GetNamedGlobal - fullName: Ubiquity.NET.Llvm.Module.GetNamedGlobal -- uid: Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetNamedGlobal_System_String_ - name: GetNamedGlobal(string) - nameWithType: IModule.GetNamedGlobal(string) - fullName: Ubiquity.NET.Llvm.IModule.GetNamedGlobal(string) - nameWithType.vb: IModule.GetNamedGlobal(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetNamedGlobal(String) - name.vb: GetNamedGlobal(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String) - name: GetNamedGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetNamedGlobal_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.GetNamedGlobal(System.String) - name: GetNamedGlobal - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetNamedGlobal_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Module.AddModuleFlag* - commentId: Overload:Ubiquity.NET.Llvm.Module.AddModuleFlag - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_AddModuleFlag_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_System_UInt32_ - name: AddModuleFlag - nameWithType: Module.AddModuleFlag - fullName: Ubiquity.NET.Llvm.Module.AddModuleFlag -- uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddModuleFlag_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_System_UInt32_ - name: AddModuleFlag(ModuleFlagBehavior, string, uint) - nameWithType: IModule.AddModuleFlag(ModuleFlagBehavior, string, uint) - fullName: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, string, uint) - nameWithType.vb: IModule.AddModuleFlag(ModuleFlagBehavior, String, UInteger) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, String, UInteger) - name.vb: AddModuleFlag(ModuleFlagBehavior, String, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - name: AddModuleFlag - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddModuleFlag_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - name: ModuleFlagBehavior - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,System.UInt32) - name: AddModuleFlag - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddModuleFlag_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - name: ModuleFlagBehavior - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - commentId: T:Ubiquity.NET.Llvm.ModuleFlagBehavior - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - name: ModuleFlagBehavior - nameWithType: ModuleFlagBehavior - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddModuleFlag_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: AddModuleFlag(ModuleFlagBehavior, string, IrMetadata) - nameWithType: IModule.AddModuleFlag(ModuleFlagBehavior, string, IrMetadata) - fullName: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, string, Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: IModule.AddModuleFlag(ModuleFlagBehavior, String, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior, String, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: AddModuleFlag(ModuleFlagBehavior, String, IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: AddModuleFlag - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddModuleFlag_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - name: ModuleFlagBehavior - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddModuleFlag(Ubiquity.NET.Llvm.ModuleFlagBehavior,System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: AddModuleFlag - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddModuleFlag_Ubiquity_NET_Llvm_ModuleFlagBehavior_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - name: ModuleFlagBehavior - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand* - commentId: Overload:Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_AddNamedMetadataOperand_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: AddNamedMetadataOperand - nameWithType: Module.AddNamedMetadataOperand - fullName: Ubiquity.NET.Llvm.Module.AddNamedMetadataOperand -- uid: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddNamedMetadataOperand_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: AddNamedMetadataOperand(string, IrMetadata) - nameWithType: IModule.AddNamedMetadataOperand(string, IrMetadata) - fullName: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(string, Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: IModule.AddNamedMetadataOperand(String, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(String, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: AddNamedMetadataOperand(String, IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: AddNamedMetadataOperand - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddNamedMetadataOperand_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddNamedMetadataOperand(System.String,Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: AddNamedMetadataOperand - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddNamedMetadataOperand_System_String_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata* - commentId: Overload:Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_AddVersionIdentMetadata_System_String_ - name: AddVersionIdentMetadata - nameWithType: Module.AddVersionIdentMetadata - fullName: Ubiquity.NET.Llvm.Module.AddVersionIdentMetadata -- uid: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String) - commentId: M:Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddVersionIdentMetadata_System_String_ - name: AddVersionIdentMetadata(string) - nameWithType: IModule.AddVersionIdentMetadata(string) - fullName: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(string) - nameWithType.vb: IModule.AddVersionIdentMetadata(String) - fullName.vb: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(String) - name.vb: AddVersionIdentMetadata(String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String) - name: AddVersionIdentMetadata - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddVersionIdentMetadata_System_String_ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.AddVersionIdentMetadata(System.String) - name: AddVersionIdentMetadata - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_AddVersionIdentMetadata_System_String_ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugFunctionType_System_Boolean_System_Boolean_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_Boolean_ - name: CreateFunction(ref readonly DIBuilder, DIScope, string, string, DIFile, uint, DebugFunctionType, bool, bool, uint, DebugInfoFlags, bool) - nameWithType: IModule.CreateFunction(ref readonly DIBuilder, DIScope, string, string, DIFile, uint, DebugFunctionType, bool, bool, uint, DebugInfoFlags, bool) - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, string, string, Ubiquity.NET.Llvm.DebugInfo.DIFile, uint, Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType, bool, bool, uint, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, bool) - nameWithType.vb: IModule.CreateFunction(DIBuilder, DIScope, String, String, DIFile, UInteger, DebugFunctionType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, Ubiquity.NET.Llvm.DebugInfo.DIScope, String, String, Ubiquity.NET.Llvm.DebugInfo.DIFile, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType, Boolean, Boolean, UInteger, Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags, Boolean) - name.vb: CreateFunction(DIBuilder, DIScope, String, String, DIFile, UInteger, DebugFunctionType, Boolean, Boolean, UInteger, DebugInfoFlags, Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - name: CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugFunctionType_System_Boolean_System_Boolean_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_Boolean_ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - name: DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - name: DIFile - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - name: DebugFunctionType - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - name: DebugInfoFlags - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,Ubiquity.NET.Llvm.DebugInfo.DIScope,System.String,System.String,Ubiquity.NET.Llvm.DebugInfo.DIFile,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType,System.Boolean,System.Boolean,System.UInt32,Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags,System.Boolean) - name: CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__Ubiquity_NET_Llvm_DebugInfo_DIScope_System_String_System_String_Ubiquity_NET_Llvm_DebugInfo_DIFile_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugFunctionType_System_Boolean_System_Boolean_System_UInt32_Ubiquity_NET_Llvm_DebugInfo_DebugInfoFlags_System_Boolean_ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - name: DIScope - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - name: DIFile - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - name: DebugFunctionType - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - name: DebugInfoFlags - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIBuilder - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - name: DIBuilder - nameWithType: DIBuilder - fullName: Ubiquity.NET.Llvm.DebugInfo.DIBuilder -- uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIScope - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIScope.html - name: DIScope - nameWithType: DIScope - fullName: Ubiquity.NET.Llvm.DebugInfo.DIScope -- uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIFile - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIFile.html - name: DIFile - nameWithType: DIFile - fullName: Ubiquity.NET.Llvm.DebugInfo.DIFile -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType.html - name: DebugFunctionType - nameWithType: DebugFunctionType - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType -- uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags.html - name: DebugInfoFlags - nameWithType: DebugInfoFlags - fullName: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_String_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - name: CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, IEnumerable>) - nameWithType: IModule.CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, IEnumerable>) - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, System.Collections.Generic.IEnumerable>) - nameWithType.vb: IModule.CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType))) - name.vb: CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), IEnumerable(Of IDebugType(Of ITypeRef, DIType))) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - name: CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_String_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}}) - name: CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_String_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType___ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType} - parent: Ubiquity.NET.Llvm.DebugInfo - definition: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of ITypeRef, DIType) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType) - name.vb: IDebugType(Of ITypeRef, DIType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable> - nameWithType: IEnumerable> - fullName: System.Collections.Generic.IEnumerable> - nameWithType.vb: IEnumerable(Of IDebugType(Of ITypeRef, DIType)) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)) - name.vb: IEnumerable(Of IDebugType(Of ITypeRef, DIType)) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - commentId: T:Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType - nameWithType: IDebugType - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType - nameWithType.vb: IDebugType(Of TNative, TDebug) - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of TNative, TDebug) - name.vb: IDebugType(Of TNative, TDebug) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - name: TNative - - name: ',' - - name: " " - - name: TDebug - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - commentId: M:Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_String_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType____ - name: CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, params IDebugType[]) - nameWithType: IModule.CreateFunction(ref readonly DIBuilder, string, bool, IDebugType, params IDebugType[]) - fullName: Ubiquity.NET.Llvm.IModule.CreateFunction(ref readonly Ubiquity.NET.Llvm.DebugInfo.DIBuilder, string, bool, Ubiquity.NET.Llvm.DebugInfo.IDebugType, params Ubiquity.NET.Llvm.DebugInfo.IDebugType[]) - nameWithType.vb: IModule.CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), ParamArray IDebugType(Of ITypeRef, DIType)()) - fullName.vb: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder, String, Boolean, Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType), ParamArray Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)()) - name.vb: CreateFunction(DIBuilder, String, Boolean, IDebugType(Of ITypeRef, DIType), ParamArray IDebugType(Of ITypeRef, DIType)()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - name: CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_String_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType____ - - name: ( - - name: ref - - name: " " - - name: readonly - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.CreateFunction(Ubiquity.NET.Llvm.DebugInfo.DIBuilder@,System.String,System.Boolean,Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType},Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[]) - name: CreateFunction - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CreateFunction_Ubiquity_NET_Llvm_DebugInfo_DIBuilder__System_String_System_Boolean_Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType__Ubiquity_NET_Llvm_DebugInfo_IDebugType_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_DebugInfo_DIType____ - - name: ( - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - href: Ubiquity.NET.Llvm.DebugInfo.DIBuilder.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType{Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.DebugInfo.DIType}[] - isExternal: true - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - name: IDebugType[] - nameWithType: IDebugType[] - fullName: Ubiquity.NET.Llvm.DebugInfo.IDebugType[] - nameWithType.vb: IDebugType(Of ITypeRef, DIType)() - fullName.vb: Ubiquity.NET.Llvm.DebugInfo.IDebugType(Of Ubiquity.NET.Llvm.Types.ITypeRef, Ubiquity.NET.Llvm.DebugInfo.DIType)() - name.vb: IDebugType(Of ITypeRef, DIType)() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: '>' - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - href: Ubiquity.NET.Llvm.DebugInfo.IDebugType-2.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - href: Ubiquity.NET.Llvm.DebugInfo.DIType.html - - name: ) - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration* - commentId: Overload:Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_GetIntrinsicDeclaration_System_String_Ubiquity_NET_Llvm_Types_ITypeRef___ - name: GetIntrinsicDeclaration - nameWithType: Module.GetIntrinsicDeclaration - fullName: Ubiquity.NET.Llvm.Module.GetIntrinsicDeclaration -- uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - commentId: M:Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetIntrinsicDeclaration_System_String_Ubiquity_NET_Llvm_Types_ITypeRef___ - name: GetIntrinsicDeclaration(string, params ITypeRef[]) - nameWithType: IModule.GetIntrinsicDeclaration(string, params ITypeRef[]) - fullName: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(string, params Ubiquity.NET.Llvm.Types.ITypeRef[]) - nameWithType.vb: IModule.GetIntrinsicDeclaration(String, ParamArray ITypeRef()) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(String, ParamArray Ubiquity.NET.Llvm.Types.ITypeRef()) - name.vb: GetIntrinsicDeclaration(String, ParamArray ITypeRef()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - name: GetIntrinsicDeclaration - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetIntrinsicDeclaration_System_String_Ubiquity_NET_Llvm_Types_ITypeRef___ - - name: ( - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.String,Ubiquity.NET.Llvm.Types.ITypeRef[]) - name: GetIntrinsicDeclaration - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetIntrinsicDeclaration_System_String_Ubiquity_NET_Llvm_Types_ITypeRef___ - - name: ( - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef[] - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef[] - nameWithType: ITypeRef[] - fullName: Ubiquity.NET.Llvm.Types.ITypeRef[] - nameWithType.vb: ITypeRef() - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef() - name.vb: ITypeRef() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - commentId: M:Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - parent: Ubiquity.NET.Llvm.IModule - isExternal: true - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetIntrinsicDeclaration_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef___ - name: GetIntrinsicDeclaration(uint, params ITypeRef[]) - nameWithType: IModule.GetIntrinsicDeclaration(uint, params ITypeRef[]) - fullName: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(uint, params Ubiquity.NET.Llvm.Types.ITypeRef[]) - nameWithType.vb: IModule.GetIntrinsicDeclaration(UInteger, ParamArray ITypeRef()) - fullName.vb: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(UInteger, ParamArray Ubiquity.NET.Llvm.Types.ITypeRef()) - name.vb: GetIntrinsicDeclaration(UInteger, ParamArray ITypeRef()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - name: GetIntrinsicDeclaration - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetIntrinsicDeclaration_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef___ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.GetIntrinsicDeclaration(System.UInt32,Ubiquity.NET.Llvm.Types.ITypeRef[]) - name: GetIntrinsicDeclaration - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_GetIntrinsicDeclaration_System_UInt32_Ubiquity_NET_Llvm_Types_ITypeRef___ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Module.Clone* - commentId: Overload:Ubiquity.NET.Llvm.Module.Clone - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Clone - name: Clone - nameWithType: Module.Clone - fullName: Ubiquity.NET.Llvm.Module.Clone -- uid: Ubiquity.NET.Llvm.IModule.Clone - commentId: M:Ubiquity.NET.Llvm.IModule.Clone - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Clone - name: Clone() - nameWithType: IModule.Clone() - fullName: Ubiquity.NET.Llvm.IModule.Clone() - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.Clone - name: Clone - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Clone - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.Clone - name: Clone - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Clone - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - commentId: M:Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Clone_Ubiquity_NET_Llvm_IContext_ - name: Clone(IContext) - nameWithType: IModule.Clone(IContext) - fullName: Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - name: Clone - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Clone_Ubiquity_NET_Llvm_IContext_ - - name: ( - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IModule.Clone(Ubiquity.NET.Llvm.IContext) - name: Clone - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Clone_Ubiquity_NET_Llvm_IContext_ - - name: ( - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - href: Ubiquity.NET.Llvm.IContext.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.SourceFileName* - commentId: Overload:Ubiquity.NET.Llvm.Module.SourceFileName - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_SourceFileName - name: SourceFileName - nameWithType: Module.SourceFileName - fullName: Ubiquity.NET.Llvm.Module.SourceFileName -- uid: Ubiquity.NET.Llvm.IModule.SourceFileName - commentId: P:Ubiquity.NET.Llvm.IModule.SourceFileName - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_SourceFileName - name: SourceFileName - nameWithType: IModule.SourceFileName - fullName: Ubiquity.NET.Llvm.IModule.SourceFileName -- uid: Ubiquity.NET.Llvm.Module.Comdats* - commentId: Overload:Ubiquity.NET.Llvm.Module.Comdats - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Comdats - name: Comdats - nameWithType: Module.Comdats - fullName: Ubiquity.NET.Llvm.Module.Comdats -- uid: Ubiquity.NET.Llvm.IModule.Comdats - commentId: P:Ubiquity.NET.Llvm.IModule.Comdats - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Comdats - name: Comdats - nameWithType: IModule.Comdats - fullName: Ubiquity.NET.Llvm.IModule.Comdats -- uid: Ubiquity.NET.Llvm.ComdatCollection - commentId: T:Ubiquity.NET.Llvm.ComdatCollection - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ComdatCollection.html - name: ComdatCollection - nameWithType: ComdatCollection - fullName: Ubiquity.NET.Llvm.ComdatCollection -- uid: Ubiquity.NET.Llvm.IModule.Context - commentId: P:Ubiquity.NET.Llvm.IModule.Context - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Context - name: Context - nameWithType: IModule.Context - fullName: Ubiquity.NET.Llvm.IModule.Context -- uid: Ubiquity.NET.Llvm.Module.Context* - commentId: Overload:Ubiquity.NET.Llvm.Module.Context - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Context - name: Context - nameWithType: Module.Context - fullName: Ubiquity.NET.Llvm.Module.Context -- uid: Ubiquity.NET.Llvm.Module.ModuleFlags* - commentId: Overload:Ubiquity.NET.Llvm.Module.ModuleFlags - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_ModuleFlags - name: ModuleFlags - nameWithType: Module.ModuleFlags - fullName: Ubiquity.NET.Llvm.Module.ModuleFlags -- uid: Ubiquity.NET.Llvm.IModule.ModuleFlags - commentId: P:Ubiquity.NET.Llvm.IModule.ModuleFlags - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_ModuleFlags - name: ModuleFlags - nameWithType: IModule.ModuleFlags - fullName: Ubiquity.NET.Llvm.IModule.ModuleFlags -- uid: System.Collections.Generic.IReadOnlyDictionary{System.String,Ubiquity.NET.Llvm.Metadata.ModuleFlag} - commentId: T:System.Collections.Generic.IReadOnlyDictionary{System.String,Ubiquity.NET.Llvm.Metadata.ModuleFlag} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyDictionary`2 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: IReadOnlyDictionary - nameWithType: IReadOnlyDictionary - fullName: System.Collections.Generic.IReadOnlyDictionary - nameWithType.vb: IReadOnlyDictionary(Of String, ModuleFlag) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of String, Ubiquity.NET.Llvm.Metadata.ModuleFlag) - name.vb: IReadOnlyDictionary(Of String, ModuleFlag) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: < - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag - name: ModuleFlag - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: ( - - name: Of - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag - name: ModuleFlag - href: Ubiquity.NET.Llvm.Metadata.ModuleFlag.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary`2 - commentId: T:System.Collections.Generic.IReadOnlyDictionary`2 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: IReadOnlyDictionary - nameWithType: IReadOnlyDictionary - fullName: System.Collections.Generic.IReadOnlyDictionary - nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue) - name.vb: IReadOnlyDictionary(Of TKey, TValue) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: < - - name: TKey - - name: ',' - - name: " " - - name: TValue - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: ( - - name: Of - - name: " " - - name: TKey - - name: ',' - - name: " " - - name: TValue - - name: ) -- uid: Ubiquity.NET.Llvm.Module.CompileUnits* - commentId: Overload:Ubiquity.NET.Llvm.Module.CompileUnits - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_CompileUnits - name: CompileUnits - nameWithType: Module.CompileUnits - fullName: Ubiquity.NET.Llvm.Module.CompileUnits -- uid: Ubiquity.NET.Llvm.IModule.CompileUnits - commentId: P:Ubiquity.NET.Llvm.IModule.CompileUnits - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_CompileUnits - name: CompileUnits - nameWithType: IModule.CompileUnits - fullName: Ubiquity.NET.Llvm.IModule.CompileUnits -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DICompileUnit} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DICompileUnit} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DICompileUnit) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DICompileUnit) - name.vb: IEnumerable(Of DICompileUnit) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - name: DICompileUnit - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - name: DICompileUnit - href: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.DataLayoutString* - commentId: Overload:Ubiquity.NET.Llvm.Module.DataLayoutString - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_DataLayoutString - name: DataLayoutString - nameWithType: Module.DataLayoutString - fullName: Ubiquity.NET.Llvm.Module.DataLayoutString -- uid: Ubiquity.NET.Llvm.IModule.DataLayoutString - commentId: P:Ubiquity.NET.Llvm.IModule.DataLayoutString - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_DataLayoutString - name: DataLayoutString - nameWithType: IModule.DataLayoutString - fullName: Ubiquity.NET.Llvm.IModule.DataLayoutString -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.IDataLayout - commentId: T:Ubiquity.NET.Llvm.IDataLayout - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IDataLayout.html - name: IDataLayout - nameWithType: IDataLayout - fullName: Ubiquity.NET.Llvm.IDataLayout -- uid: Ubiquity.NET.Llvm.Module.Layout* - commentId: Overload:Ubiquity.NET.Llvm.Module.Layout - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Layout - name: Layout - nameWithType: Module.Layout - fullName: Ubiquity.NET.Llvm.Module.Layout -- uid: Ubiquity.NET.Llvm.IModule.Layout - commentId: P:Ubiquity.NET.Llvm.IModule.Layout - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Layout - name: Layout - nameWithType: IModule.Layout - fullName: Ubiquity.NET.Llvm.IModule.Layout -- uid: Ubiquity.NET.Llvm.Module.TargetTriple* - commentId: Overload:Ubiquity.NET.Llvm.Module.TargetTriple - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_TargetTriple - name: TargetTriple - nameWithType: Module.TargetTriple - fullName: Ubiquity.NET.Llvm.Module.TargetTriple -- uid: Ubiquity.NET.Llvm.IModule.TargetTriple - commentId: P:Ubiquity.NET.Llvm.IModule.TargetTriple - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_TargetTriple - name: TargetTriple - nameWithType: IModule.TargetTriple - fullName: Ubiquity.NET.Llvm.IModule.TargetTriple -- uid: Ubiquity.NET.Llvm.Module.Globals* - commentId: Overload:Ubiquity.NET.Llvm.Module.Globals - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Globals - name: Globals - nameWithType: Module.Globals - fullName: Ubiquity.NET.Llvm.Module.Globals -- uid: Ubiquity.NET.Llvm.IModule.Globals - commentId: P:Ubiquity.NET.Llvm.IModule.Globals - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Globals - name: Globals - nameWithType: IModule.Globals - fullName: Ubiquity.NET.Llvm.IModule.Globals -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalVariable} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalVariable} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of GlobalVariable) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.GlobalVariable) - name.vb: IEnumerable(Of GlobalVariable) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.Functions* - commentId: Overload:Ubiquity.NET.Llvm.Module.Functions - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Functions - name: Functions - nameWithType: Module.Functions - fullName: Ubiquity.NET.Llvm.Module.Functions -- uid: Ubiquity.NET.Llvm.IModule.Functions - commentId: P:Ubiquity.NET.Llvm.IModule.Functions - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Functions - name: Functions - nameWithType: IModule.Functions - fullName: Ubiquity.NET.Llvm.IModule.Functions -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Function} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Function} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Function) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Function) - name.vb: IEnumerable(Of Function) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.Aliases* - commentId: Overload:Ubiquity.NET.Llvm.Module.Aliases - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Aliases - name: Aliases - nameWithType: Module.Aliases - fullName: Ubiquity.NET.Llvm.Module.Aliases -- uid: Ubiquity.NET.Llvm.IModule.Aliases - commentId: P:Ubiquity.NET.Llvm.IModule.Aliases - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Aliases - name: Aliases - nameWithType: IModule.Aliases - fullName: Ubiquity.NET.Llvm.IModule.Aliases -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalAlias} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalAlias} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of GlobalAlias) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.GlobalAlias) - name.vb: IEnumerable(Of GlobalAlias) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - commentId: T:Ubiquity.NET.Llvm.Metadata.NamedMDNode - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html - name: NamedMDNode - nameWithType: NamedMDNode - fullName: Ubiquity.NET.Llvm.Metadata.NamedMDNode -- uid: Ubiquity.NET.Llvm.Module.NamedMetadata* - commentId: Overload:Ubiquity.NET.Llvm.Module.NamedMetadata - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_NamedMetadata - name: NamedMetadata - nameWithType: Module.NamedMetadata - fullName: Ubiquity.NET.Llvm.Module.NamedMetadata -- uid: Ubiquity.NET.Llvm.IModule.NamedMetadata - commentId: P:Ubiquity.NET.Llvm.IModule.NamedMetadata - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_NamedMetadata - name: NamedMetadata - nameWithType: IModule.NamedMetadata - fullName: Ubiquity.NET.Llvm.IModule.NamedMetadata -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.NamedMDNode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.NamedMDNode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of NamedMDNode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Metadata.NamedMDNode) - name.vb: IEnumerable(Of NamedMDNode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - name: NamedMDNode - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - name: NamedMDNode - href: Ubiquity.NET.Llvm.Metadata.NamedMDNode.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.IndirectFunctions* - commentId: Overload:Ubiquity.NET.Llvm.Module.IndirectFunctions - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_IndirectFunctions - name: IndirectFunctions - nameWithType: Module.IndirectFunctions - fullName: Ubiquity.NET.Llvm.Module.IndirectFunctions -- uid: Ubiquity.NET.Llvm.IModule.IndirectFunctions - commentId: P:Ubiquity.NET.Llvm.IModule.IndirectFunctions - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_IndirectFunctions - name: IndirectFunctions - nameWithType: IModule.IndirectFunctions - fullName: Ubiquity.NET.Llvm.IModule.IndirectFunctions -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalIFunc} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.GlobalIFunc} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of GlobalIFunc) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.GlobalIFunc) - name.vb: IEnumerable(Of GlobalIFunc) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ) -- uid: Ubiquity.NET.Llvm.Module.Name* - commentId: Overload:Ubiquity.NET.Llvm.Module.Name - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_Name - name: Name - nameWithType: Module.Name - fullName: Ubiquity.NET.Llvm.Module.Name -- uid: Ubiquity.NET.Llvm.IModule.Name - commentId: P:Ubiquity.NET.Llvm.IModule.Name - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_Name - name: Name - nameWithType: IModule.Name - fullName: Ubiquity.NET.Llvm.IModule.Name -- uid: Ubiquity.NET.Llvm.Module.ModuleInlineAsm* - commentId: Overload:Ubiquity.NET.Llvm.Module.ModuleInlineAsm - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_ModuleInlineAsm - name: ModuleInlineAsm - nameWithType: Module.ModuleInlineAsm - fullName: Ubiquity.NET.Llvm.Module.ModuleInlineAsm -- uid: Ubiquity.NET.Llvm.IModule.ModuleInlineAsm - commentId: P:Ubiquity.NET.Llvm.IModule.ModuleInlineAsm - parent: Ubiquity.NET.Llvm.IModule - href: Ubiquity.NET.Llvm.IModule.html#Ubiquity_NET_Llvm_IModule_ModuleInlineAsm - name: ModuleInlineAsm - nameWithType: IModule.ModuleInlineAsm - fullName: Ubiquity.NET.Llvm.IModule.ModuleInlineAsm -- uid: Ubiquity.NET.Llvm.Module.LoadFrom* - commentId: Overload:Ubiquity.NET.Llvm.Module.LoadFrom - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_LoadFrom_System_String_Ubiquity_NET_Llvm_IContext_ - name: LoadFrom - nameWithType: Module.LoadFrom - fullName: Ubiquity.NET.Llvm.Module.LoadFrom -- uid: Ubiquity.NET.Llvm.Module.WriteToBuffer - commentId: M:Ubiquity.NET.Llvm.Module.WriteToBuffer - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_WriteToBuffer - name: WriteToBuffer() - nameWithType: Module.WriteToBuffer() - fullName: Ubiquity.NET.Llvm.Module.WriteToBuffer() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Module.WriteToBuffer - name: WriteToBuffer - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_WriteToBuffer - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Module.WriteToBuffer - name: WriteToBuffer - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_WriteToBuffer - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ModuleFlagBehavior.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ModuleFlagBehavior.yml deleted file mode 100644 index 1a565e616e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ModuleFlagBehavior.yml +++ /dev/null @@ -1,262 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - commentId: T:Ubiquity.NET.Llvm.ModuleFlagBehavior - id: ModuleFlagBehavior - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ModuleFlagBehavior.Append - - Ubiquity.NET.Llvm.ModuleFlagBehavior.AppendUnique - - Ubiquity.NET.Llvm.ModuleFlagBehavior.Error - - Ubiquity.NET.Llvm.ModuleFlagBehavior.Override - - Ubiquity.NET.Llvm.ModuleFlagBehavior.Require - - Ubiquity.NET.Llvm.ModuleFlagBehavior.Warning - langs: - - csharp - - vb - name: ModuleFlagBehavior - nameWithType: ModuleFlagBehavior - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ModuleFlagBehavior - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Enumeration to indicate the behavior of module level flags metadata sharing the same name in a - example: [] - syntax: - content: public enum ModuleFlagBehavior - content.vb: Public Enum ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior.Error - commentId: F:Ubiquity.NET.Llvm.ModuleFlagBehavior.Error - id: Error - parent: Ubiquity.NET.Llvm.ModuleFlagBehavior - langs: - - csharp - - vb - name: Error - nameWithType: ModuleFlagBehavior.Error - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior.Error - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Error - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Emits an error if two values disagree, otherwise the resulting value is that of the operands - example: [] - syntax: - content: Error = 0 - return: - type: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior.Warning - commentId: F:Ubiquity.NET.Llvm.ModuleFlagBehavior.Warning - id: Warning - parent: Ubiquity.NET.Llvm.ModuleFlagBehavior - langs: - - csharp - - vb - name: Warning - nameWithType: ModuleFlagBehavior.Warning - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior.Warning - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Warning - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Emits a warning if two values disagree. The result will be the operand for the flag from the first module being linked - example: [] - syntax: - content: Warning = 1 - return: - type: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior.Require - commentId: F:Ubiquity.NET.Llvm.ModuleFlagBehavior.Require - id: Require - parent: Ubiquity.NET.Llvm.ModuleFlagBehavior - langs: - - csharp - - vb - name: Require - nameWithType: ModuleFlagBehavior.Require - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior.Require - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Require - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Adds a requirement that another module flag be present and have a specified value after linking is performed - remarks: >- - The value must be a metadata pair, where the first element of the pair is the ID of the module flag to be restricted, and the - - second element of the pair is the value the module flag should be restricted to. This behavior can be used to restrict the - - allowable results (via triggering of an error) of linking IDs with the behavior - example: [] - syntax: - content: Require = 2 - return: - type: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior.Override - commentId: F:Ubiquity.NET.Llvm.ModuleFlagBehavior.Override - id: Override - parent: Ubiquity.NET.Llvm.ModuleFlagBehavior - langs: - - csharp - - vb - name: Override - nameWithType: ModuleFlagBehavior.Override - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior.Override - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Override - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Uses the specified value, regardless of the behavior or value of the other module - remarks: If both modules specify Override, but the values differ, and error will be emitted - example: [] - syntax: - content: Override = 3 - return: - type: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior.Append - commentId: F:Ubiquity.NET.Llvm.ModuleFlagBehavior.Append - id: Append - parent: Ubiquity.NET.Llvm.ModuleFlagBehavior - langs: - - csharp - - vb - name: Append - nameWithType: ModuleFlagBehavior.Append - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior.Append - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Append - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Appends the two values, which are required to be metadata nodes - example: [] - syntax: - content: Append = 4 - return: - type: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior.AppendUnique - commentId: F:Ubiquity.NET.Llvm.ModuleFlagBehavior.AppendUnique - id: AppendUnique - parent: Ubiquity.NET.Llvm.ModuleFlagBehavior - langs: - - csharp - - vb - name: AppendUnique - nameWithType: ModuleFlagBehavior.AppendUnique - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior.AppendUnique - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Module.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AppendUnique - path: ../src/Ubiquity.NET.Llvm/Module.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Appends the two values, which are required to be metadata nodes dropping duplicate entries in the second list - example: [] - syntax: - content: AppendUnique = 5 - return: - type: Ubiquity.NET.Llvm.ModuleFlagBehavior -references: -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - commentId: T:Ubiquity.NET.Llvm.ModuleFlagBehavior - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - name: ModuleFlagBehavior - nameWithType: ModuleFlagBehavior - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior.Override - commentId: F:Ubiquity.NET.Llvm.ModuleFlagBehavior.Override - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html#Ubiquity_NET_Llvm_ModuleFlagBehavior_Override - name: Override - nameWithType: ModuleFlagBehavior.Override - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior.Override diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OSKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OSKind.yml deleted file mode 100644 index db667f467b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OSKind.yml +++ /dev/null @@ -1,1257 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OSKind - commentId: T:Ubiquity.NET.Llvm.OSKind - id: OSKind - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.OSKind.AIX - - Ubiquity.NET.Llvm.OSKind.AMDHSA - - Ubiquity.NET.Llvm.OSKind.AmdPAL - - Ubiquity.NET.Llvm.OSKind.BridgeOS - - Ubiquity.NET.Llvm.OSKind.CUDA - - Ubiquity.NET.Llvm.OSKind.Darwin - - Ubiquity.NET.Llvm.OSKind.DragonFly - - Ubiquity.NET.Llvm.OSKind.DriverKit - - Ubiquity.NET.Llvm.OSKind.ELFIAMCU - - Ubiquity.NET.Llvm.OSKind.Emscripten - - Ubiquity.NET.Llvm.OSKind.FreeBSD - - Ubiquity.NET.Llvm.OSKind.Fuchsia - - Ubiquity.NET.Llvm.OSKind.Haiku - - Ubiquity.NET.Llvm.OSKind.HermitCore - - Ubiquity.NET.Llvm.OSKind.Hurd - - Ubiquity.NET.Llvm.OSKind.IOS - - Ubiquity.NET.Llvm.OSKind.KFreeBSD - - Ubiquity.NET.Llvm.OSKind.Linux - - Ubiquity.NET.Llvm.OSKind.LiteOS - - Ubiquity.NET.Llvm.OSKind.Lv2 - - Ubiquity.NET.Llvm.OSKind.MacOSX - - Ubiquity.NET.Llvm.OSKind.Mesa3D - - Ubiquity.NET.Llvm.OSKind.NVCL - - Ubiquity.NET.Llvm.OSKind.NaCl - - Ubiquity.NET.Llvm.OSKind.NetBSD - - Ubiquity.NET.Llvm.OSKind.OpenBSD - - Ubiquity.NET.Llvm.OSKind.PS4 - - Ubiquity.NET.Llvm.OSKind.PS5 - - Ubiquity.NET.Llvm.OSKind.RTEMS - - Ubiquity.NET.Llvm.OSKind.Serenity - - Ubiquity.NET.Llvm.OSKind.ShaderModel - - Ubiquity.NET.Llvm.OSKind.Solaris - - Ubiquity.NET.Llvm.OSKind.TvOS - - Ubiquity.NET.Llvm.OSKind.UEFI - - Ubiquity.NET.Llvm.OSKind.UnknownOS - - Ubiquity.NET.Llvm.OSKind.Vulkan - - Ubiquity.NET.Llvm.OSKind.WASI - - Ubiquity.NET.Llvm.OSKind.WatchOS - - Ubiquity.NET.Llvm.OSKind.Win32 - - Ubiquity.NET.Llvm.OSKind.XROS - - Ubiquity.NET.Llvm.OSKind.ZOS - langs: - - csharp - - vb - name: OSKind - nameWithType: OSKind - fullName: Ubiquity.NET.Llvm.OSKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OSKind - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 401 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: OS type for the triple - example: [] - syntax: - content: public enum OSKind - content.vb: Public Enum OSKind -- uid: Ubiquity.NET.Llvm.OSKind.UnknownOS - commentId: F:Ubiquity.NET.Llvm.OSKind.UnknownOS - id: UnknownOS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: UnknownOS - nameWithType: OSKind.UnknownOS - fullName: Ubiquity.NET.Llvm.OSKind.UnknownOS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnknownOS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 404 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Unknown OS - example: [] - syntax: - content: UnknownOS = 0 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Darwin - commentId: F:Ubiquity.NET.Llvm.OSKind.Darwin - id: Darwin - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Darwin - nameWithType: OSKind.Darwin - fullName: Ubiquity.NET.Llvm.OSKind.Darwin - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Darwin - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 407 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Darwin - example: [] - syntax: - content: Darwin = 1 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.DragonFly - commentId: F:Ubiquity.NET.Llvm.OSKind.DragonFly - id: DragonFly - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: DragonFly - nameWithType: OSKind.DragonFly - fullName: Ubiquity.NET.Llvm.OSKind.DragonFly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DragonFly - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 410 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: DragonFly - example: [] - syntax: - content: DragonFly = 2 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.FreeBSD - commentId: F:Ubiquity.NET.Llvm.OSKind.FreeBSD - id: FreeBSD - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: FreeBSD - nameWithType: OSKind.FreeBSD - fullName: Ubiquity.NET.Llvm.OSKind.FreeBSD - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FreeBSD - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 413 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: FreeBSD - example: [] - syntax: - content: FreeBSD = 3 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Fuchsia - commentId: F:Ubiquity.NET.Llvm.OSKind.Fuchsia - id: Fuchsia - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Fuchsia - nameWithType: OSKind.Fuchsia - fullName: Ubiquity.NET.Llvm.OSKind.Fuchsia - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fuchsia - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 416 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Fuchsia - example: [] - syntax: - content: Fuchsia = 4 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.IOS - commentId: F:Ubiquity.NET.Llvm.OSKind.IOS - id: IOS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: IOS - nameWithType: OSKind.IOS - fullName: Ubiquity.NET.Llvm.OSKind.IOS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IOS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 419 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: iOS - example: [] - syntax: - content: IOS = 5 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.KFreeBSD - commentId: F:Ubiquity.NET.Llvm.OSKind.KFreeBSD - id: KFreeBSD - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: KFreeBSD - nameWithType: OSKind.KFreeBSD - fullName: Ubiquity.NET.Llvm.OSKind.KFreeBSD - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: KFreeBSD - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 422 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: KFreeBSD - example: [] - syntax: - content: KFreeBSD = 6 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Linux - commentId: F:Ubiquity.NET.Llvm.OSKind.Linux - id: Linux - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Linux - nameWithType: OSKind.Linux - fullName: Ubiquity.NET.Llvm.OSKind.Linux - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Linux - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 425 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Linux - example: [] - syntax: - content: Linux = 7 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Lv2 - commentId: F:Ubiquity.NET.Llvm.OSKind.Lv2 - id: Lv2 - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Lv2 - nameWithType: OSKind.Lv2 - fullName: Ubiquity.NET.Llvm.OSKind.Lv2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lv2 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 428 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Lv2 (PS3) - example: [] - syntax: - content: Lv2 = 8 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.MacOSX - commentId: F:Ubiquity.NET.Llvm.OSKind.MacOSX - id: MacOSX - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: MacOSX - nameWithType: OSKind.MacOSX - fullName: Ubiquity.NET.Llvm.OSKind.MacOSX - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MacOSX - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 431 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Mac OSX - example: [] - syntax: - content: MacOSX = 9 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.NetBSD - commentId: F:Ubiquity.NET.Llvm.OSKind.NetBSD - id: NetBSD - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: NetBSD - nameWithType: OSKind.NetBSD - fullName: Ubiquity.NET.Llvm.OSKind.NetBSD - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NetBSD - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 434 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: NetBSD - example: [] - syntax: - content: NetBSD = 10 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.OpenBSD - commentId: F:Ubiquity.NET.Llvm.OSKind.OpenBSD - id: OpenBSD - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: OpenBSD - nameWithType: OSKind.OpenBSD - fullName: Ubiquity.NET.Llvm.OSKind.OpenBSD - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpenBSD - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 437 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: OpenBSD - example: [] - syntax: - content: OpenBSD = 11 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Solaris - commentId: F:Ubiquity.NET.Llvm.OSKind.Solaris - id: Solaris - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Solaris - nameWithType: OSKind.Solaris - fullName: Ubiquity.NET.Llvm.OSKind.Solaris - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Solaris - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 440 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Solaris - example: [] - syntax: - content: Solaris = 12 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.UEFI - commentId: F:Ubiquity.NET.Llvm.OSKind.UEFI - id: UEFI - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: UEFI - nameWithType: OSKind.UEFI - fullName: Ubiquity.NET.Llvm.OSKind.UEFI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UEFI - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 443 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Unified Extensible Firmware Interface (UEFI) - example: [] - syntax: - content: UEFI = 13 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Win32 - commentId: F:Ubiquity.NET.Llvm.OSKind.Win32 - id: Win32 - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Win32 - nameWithType: OSKind.Win32 - fullName: Ubiquity.NET.Llvm.OSKind.Win32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Win32 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 446 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Windows (WIN32) - example: [] - syntax: - content: Win32 = 14 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.ZOS - commentId: F:Ubiquity.NET.Llvm.OSKind.ZOS - id: ZOS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: ZOS - nameWithType: OSKind.ZOS - fullName: Ubiquity.NET.Llvm.OSKind.ZOS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ZOS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 449 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Windows WIN32 - example: [] - syntax: - content: ZOS = 15 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Haiku - commentId: F:Ubiquity.NET.Llvm.OSKind.Haiku - id: Haiku - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Haiku - nameWithType: OSKind.Haiku - fullName: Ubiquity.NET.Llvm.OSKind.Haiku - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Haiku - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 452 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Haiku - example: [] - syntax: - content: Haiku = 16 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.RTEMS - commentId: F:Ubiquity.NET.Llvm.OSKind.RTEMS - id: RTEMS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: RTEMS - nameWithType: OSKind.RTEMS - fullName: Ubiquity.NET.Llvm.OSKind.RTEMS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RTEMS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 455 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: RTEMS - example: [] - syntax: - content: RTEMS = 17 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.NaCl - commentId: F:Ubiquity.NET.Llvm.OSKind.NaCl - id: NaCl - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: NaCl - nameWithType: OSKind.NaCl - fullName: Ubiquity.NET.Llvm.OSKind.NaCl - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NaCl - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 458 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: NaCl - example: [] - syntax: - content: NaCl = 18 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.AIX - commentId: F:Ubiquity.NET.Llvm.OSKind.AIX - id: AIX - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: AIX - nameWithType: OSKind.AIX - fullName: Ubiquity.NET.Llvm.OSKind.AIX - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AIX - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 461 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AIX - example: [] - syntax: - content: AIX = 19 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.CUDA - commentId: F:Ubiquity.NET.Llvm.OSKind.CUDA - id: CUDA - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: CUDA - nameWithType: OSKind.CUDA - fullName: Ubiquity.NET.Llvm.OSKind.CUDA - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CUDA - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 464 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: CUDA - example: [] - syntax: - content: CUDA = 20 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.NVCL - commentId: F:Ubiquity.NET.Llvm.OSKind.NVCL - id: NVCL - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: NVCL - nameWithType: OSKind.NVCL - fullName: Ubiquity.NET.Llvm.OSKind.NVCL - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NVCL - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 467 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: NVCL - example: [] - syntax: - content: NVCL = 21 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.AMDHSA - commentId: F:Ubiquity.NET.Llvm.OSKind.AMDHSA - id: AMDHSA - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: AMDHSA - nameWithType: OSKind.AMDHSA - fullName: Ubiquity.NET.Llvm.OSKind.AMDHSA - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDHSA - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 470 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD HSA Runtime - example: [] - syntax: - content: AMDHSA = 22 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.PS4 - commentId: F:Ubiquity.NET.Llvm.OSKind.PS4 - id: PS4 - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: PS4 - nameWithType: OSKind.PS4 - fullName: Ubiquity.NET.Llvm.OSKind.PS4 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PS4 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 473 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: PS4 - example: [] - syntax: - content: PS4 = 23 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.PS5 - commentId: F:Ubiquity.NET.Llvm.OSKind.PS5 - id: PS5 - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: PS5 - nameWithType: OSKind.PS5 - fullName: Ubiquity.NET.Llvm.OSKind.PS5 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PS5 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 476 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: PS5 - example: [] - syntax: - content: PS5 = 24 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.ELFIAMCU - commentId: F:Ubiquity.NET.Llvm.OSKind.ELFIAMCU - id: ELFIAMCU - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: ELFIAMCU - nameWithType: OSKind.ELFIAMCU - fullName: Ubiquity.NET.Llvm.OSKind.ELFIAMCU - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ELFIAMCU - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 479 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ELFIAMCU - example: [] - syntax: - content: ELFIAMCU = 25 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.TvOS - commentId: F:Ubiquity.NET.Llvm.OSKind.TvOS - id: TvOS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: TvOS - nameWithType: OSKind.TvOS - fullName: Ubiquity.NET.Llvm.OSKind.TvOS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TvOS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 482 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: TvOS - example: [] - syntax: - content: TvOS = 26 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.WatchOS - commentId: F:Ubiquity.NET.Llvm.OSKind.WatchOS - id: WatchOS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: WatchOS - nameWithType: OSKind.WatchOS - fullName: Ubiquity.NET.Llvm.OSKind.WatchOS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WatchOS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 485 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: WatchOS - example: [] - syntax: - content: WatchOS = 27 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.BridgeOS - commentId: F:Ubiquity.NET.Llvm.OSKind.BridgeOS - id: BridgeOS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: BridgeOS - nameWithType: OSKind.BridgeOS - fullName: Ubiquity.NET.Llvm.OSKind.BridgeOS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BridgeOS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 488 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Apple bridgeOS - example: [] - syntax: - content: BridgeOS = 28 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.DriverKit - commentId: F:Ubiquity.NET.Llvm.OSKind.DriverKit - id: DriverKit - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: DriverKit - nameWithType: OSKind.DriverKit - fullName: Ubiquity.NET.Llvm.OSKind.DriverKit - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DriverKit - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 491 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Apple DriverKit - example: [] - syntax: - content: DriverKit = 29 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.XROS - commentId: F:Ubiquity.NET.Llvm.OSKind.XROS - id: XROS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: XROS - nameWithType: OSKind.XROS - fullName: Ubiquity.NET.Llvm.OSKind.XROS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: XROS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 494 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Apple XROS - example: [] - syntax: - content: XROS = 30 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Mesa3D - commentId: F:Ubiquity.NET.Llvm.OSKind.Mesa3D - id: Mesa3D - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Mesa3D - nameWithType: OSKind.Mesa3D - fullName: Ubiquity.NET.Llvm.OSKind.Mesa3D - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Mesa3D - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 497 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Mesa3D - example: [] - syntax: - content: Mesa3D = 31 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.AmdPAL - commentId: F:Ubiquity.NET.Llvm.OSKind.AmdPAL - id: AmdPAL - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: AmdPAL - nameWithType: OSKind.AmdPAL - fullName: Ubiquity.NET.Llvm.OSKind.AmdPAL - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AmdPAL - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 500 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD PAL Runtime - example: [] - syntax: - content: AmdPAL = 32 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.HermitCore - commentId: F:Ubiquity.NET.Llvm.OSKind.HermitCore - id: HermitCore - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: HermitCore - nameWithType: OSKind.HermitCore - fullName: Ubiquity.NET.Llvm.OSKind.HermitCore - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HermitCore - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 503 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: HermitCore Unikernel/Multikernel - example: [] - syntax: - content: HermitCore = 33 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Hurd - commentId: F:Ubiquity.NET.Llvm.OSKind.Hurd - id: Hurd - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Hurd - nameWithType: OSKind.Hurd - fullName: Ubiquity.NET.Llvm.OSKind.Hurd - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Hurd - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 506 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: GNU/Hurd - example: [] - syntax: - content: Hurd = 34 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.WASI - commentId: F:Ubiquity.NET.Llvm.OSKind.WASI - id: WASI - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: WASI - nameWithType: OSKind.WASI - fullName: Ubiquity.NET.Llvm.OSKind.WASI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WASI - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 509 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: WebAssembly OS - example: [] - syntax: - content: WASI = 35 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Emscripten - commentId: F:Ubiquity.NET.Llvm.OSKind.Emscripten - id: Emscripten - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Emscripten - nameWithType: OSKind.Emscripten - fullName: Ubiquity.NET.Llvm.OSKind.Emscripten - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Emscripten - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 512 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Emscripten - example: [] - syntax: - content: Emscripten = 36 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.ShaderModel - commentId: F:Ubiquity.NET.Llvm.OSKind.ShaderModel - id: ShaderModel - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: ShaderModel - nameWithType: OSKind.ShaderModel - fullName: Ubiquity.NET.Llvm.OSKind.ShaderModel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ShaderModel - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 515 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: DirectX ShaderModel - example: [] - syntax: - content: ShaderModel = 37 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.LiteOS - commentId: F:Ubiquity.NET.Llvm.OSKind.LiteOS - id: LiteOS - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: LiteOS - nameWithType: OSKind.LiteOS - fullName: Ubiquity.NET.Llvm.OSKind.LiteOS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LiteOS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 518 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Lite OS - example: [] - syntax: - content: LiteOS = 38 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Serenity - commentId: F:Ubiquity.NET.Llvm.OSKind.Serenity - id: Serenity - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Serenity - nameWithType: OSKind.Serenity - fullName: Ubiquity.NET.Llvm.OSKind.Serenity - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Serenity - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 521 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Serenity - example: [] - syntax: - content: Serenity = 39 - return: - type: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.OSKind.Vulkan - commentId: F:Ubiquity.NET.Llvm.OSKind.Vulkan - id: Vulkan - parent: Ubiquity.NET.Llvm.OSKind - langs: - - csharp - - vb - name: Vulkan - nameWithType: OSKind.Vulkan - fullName: Ubiquity.NET.Llvm.OSKind.Vulkan - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Vulkan - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 524 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Vulkan SPIR-V - example: [] - syntax: - content: Vulkan = 40 - return: - type: Ubiquity.NET.Llvm.OSKind -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.OSKind - commentId: T:Ubiquity.NET.Llvm.OSKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.OSKind.html - name: OSKind - nameWithType: OSKind - fullName: Ubiquity.NET.Llvm.OSKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml deleted file mode 100644 index 9197f2fe3f..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.BinaryKind.yml +++ /dev/null @@ -1,511 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - commentId: T:Ubiquity.NET.Llvm.ObjectFile.BinaryKind - id: BinaryKind - parent: Ubiquity.NET.Llvm.ObjectFile - children: - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Archive - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Coff - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.CoffImportFile - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32BigEndian - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32LittleEndian - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64BigEndian - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64LittleEndian - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.LlvmIR - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32BigEndian - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32LittleEndian - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64BigEndian - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64LittleEndian - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachOUniversalBinary - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Wasm - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind.WinRes - langs: - - csharp - - vb - name: BinaryKind - nameWithType: BinaryKind - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BinaryKind - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Enumeration for kinds of binary/object files - example: [] - syntax: - content: public enum BinaryKind - content.vb: Public Enum BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Archive - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Archive - id: Archive - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: Archive - nameWithType: BinaryKind.Archive - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Archive - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Archive - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Archive File - example: [] - syntax: - content: Archive = 0 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachOUniversalBinary - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachOUniversalBinary - id: MachOUniversalBinary - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: MachOUniversalBinary - nameWithType: BinaryKind.MachOUniversalBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachOUniversalBinary - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MachOUniversalBinary - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Mach-O Universal Binary file - example: [] - syntax: - content: MachOUniversalBinary = 1 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.CoffImportFile - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.CoffImportFile - id: CoffImportFile - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: CoffImportFile - nameWithType: BinaryKind.CoffImportFile - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.CoffImportFile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CoffImportFile - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: COFF Import File - example: [] - syntax: - content: CoffImportFile = 2 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.LlvmIR - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.LlvmIR - id: LlvmIR - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: LlvmIR - nameWithType: BinaryKind.LlvmIR - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.LlvmIR - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LlvmIR - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: LLVM IR - example: [] - syntax: - content: LlvmIR = 3 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.WinRes - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.WinRes - id: WinRes - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: WinRes - nameWithType: BinaryKind.WinRes - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.WinRes - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WinRes - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Windows Resource (.res) file - example: [] - syntax: - content: WinRes = 4 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Coff - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Coff - id: Coff - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: Coff - nameWithType: BinaryKind.Coff - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Coff - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Coff - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: COFF Object file - example: [] - syntax: - content: Coff = 5 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32LittleEndian - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32LittleEndian - id: Elf32LittleEndian - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: Elf32LittleEndian - nameWithType: BinaryKind.Elf32LittleEndian - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32LittleEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Elf32LittleEndian - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: ELF 32-bit, little endian - example: [] - syntax: - content: Elf32LittleEndian = 6 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32BigEndian - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32BigEndian - id: Elf32BigEndian - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: Elf32BigEndian - nameWithType: BinaryKind.Elf32BigEndian - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf32BigEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Elf32BigEndian - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: ELF 32-bit, big endian - example: [] - syntax: - content: Elf32BigEndian = 7 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64LittleEndian - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64LittleEndian - id: Elf64LittleEndian - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: Elf64LittleEndian - nameWithType: BinaryKind.Elf64LittleEndian - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64LittleEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Elf64LittleEndian - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: ELF 64-bit, little endian - example: [] - syntax: - content: Elf64LittleEndian = 8 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64BigEndian - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64BigEndian - id: Elf64BigEndian - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: Elf64BigEndian - nameWithType: BinaryKind.Elf64BigEndian - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Elf64BigEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Elf64BigEndian - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: ELF 64-bit, big endian - example: [] - syntax: - content: Elf64BigEndian = 9 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32LittleEndian - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32LittleEndian - id: MachO32LittleEndian - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: MachO32LittleEndian - nameWithType: BinaryKind.MachO32LittleEndian - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32LittleEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MachO32LittleEndian - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Mach-O 32-bit, little endian - example: [] - syntax: - content: MachO32LittleEndian = 10 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32BigEndian - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32BigEndian - id: MachO32BigEndian - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: MachO32BigEndian - nameWithType: BinaryKind.MachO32BigEndian - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO32BigEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MachO32BigEndian - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Mach-O 32-bit, big endian - example: [] - syntax: - content: MachO32BigEndian = 11 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64LittleEndian - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64LittleEndian - id: MachO64LittleEndian - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: MachO64LittleEndian - nameWithType: BinaryKind.MachO64LittleEndian - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64LittleEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MachO64LittleEndian - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Mach-O 64-bit, little endian - example: [] - syntax: - content: MachO64LittleEndian = 12 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64BigEndian - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64BigEndian - id: MachO64BigEndian - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: MachO64BigEndian - nameWithType: BinaryKind.MachO64BigEndian - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.MachO64BigEndian - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MachO64BigEndian - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Mach-O 64-bit, big endian - example: [] - syntax: - content: MachO64BigEndian = 13 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Wasm - commentId: F:Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Wasm - id: Wasm - parent: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - langs: - - csharp - - vb - name: Wasm - nameWithType: BinaryKind.Wasm - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.Wasm - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Wasm - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Web Assembly - example: [] - syntax: - content: Wasm = 14 - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -references: -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.html - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - commentId: T:Ubiquity.NET.Llvm.ObjectFile.BinaryKind - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.html - name: BinaryKind - nameWithType: BinaryKind - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Relocation.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Relocation.yml deleted file mode 100644 index e591c2844d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Relocation.yml +++ /dev/null @@ -1,621 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Relocation - id: Relocation - parent: Ubiquity.NET.Llvm.ObjectFile - children: - - Ubiquity.NET.Llvm.ObjectFile.Relocation.Description - - Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind - - Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset - - Ubiquity.NET.Llvm.ObjectFile.Relocation.Section - - Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol - - Ubiquity.NET.Llvm.ObjectFile.Relocation.Value - langs: - - csharp - - vb - name: Relocation - nameWithType: Relocation - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Relocation - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Relocation entry in an - example: [] - syntax: - content: 'public readonly record struct Relocation : IEquatable' - content.vb: Public Structure Relocation Implements IEquatable(Of Relocation) - implements: - - System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Relocation} - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset - id: Offset - parent: Ubiquity.NET.Llvm.ObjectFile.Relocation - langs: - - csharp - - vb - name: Offset - nameWithType: Relocation.Offset - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Offset - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the offset for this relocation - example: [] - syntax: - content: public ulong Offset { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property Offset As ULong - overload: Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset* -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol - id: Symbol - parent: Ubiquity.NET.Llvm.ObjectFile.Relocation - langs: - - csharp - - vb - name: Symbol - nameWithType: Relocation.Symbol - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Symbol - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the symbol associated with this relocation - example: [] - syntax: - content: public Symbol Symbol { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ObjectFile.Symbol - content.vb: Public ReadOnly Property Symbol As Symbol - overload: Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol* -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Description - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Relocation.Description - id: Description - parent: Ubiquity.NET.Llvm.ObjectFile.Relocation - langs: - - csharp - - vb - name: Description - nameWithType: Relocation.Description - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Description - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Description - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the kind of relocation as a string for display purposes - example: [] - syntax: - content: public string Description { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Description As String - overload: Ubiquity.NET.Llvm.ObjectFile.Relocation.Description* -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Value - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Relocation.Value - id: Value - parent: Ubiquity.NET.Llvm.ObjectFile.Relocation - langs: - - csharp - - vb - name: Value - nameWithType: Relocation.Value - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Value - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Value - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the relocation value as a string - example: [] - syntax: - content: public string Value { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Value As String - overload: Ubiquity.NET.Llvm.ObjectFile.Relocation.Value* -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind - id: Kind - parent: Ubiquity.NET.Llvm.ObjectFile.Relocation - langs: - - csharp - - vb - name: Kind - nameWithType: Relocation.Kind - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kind - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the relocation type for this relocation - remarks: The meaning of the values are target obj file format specific, there is no standard - example: [] - syntax: - content: public ulong Kind { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property Kind As ULong - overload: Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind* -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Section - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Relocation.Section - id: Section - parent: Ubiquity.NET.Llvm.ObjectFile.Relocation - langs: - - csharp - - vb - name: Section - nameWithType: Relocation.Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Section - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Section - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Relocation.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the this relocation belongs to - example: [] - syntax: - content: public Section Section { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ObjectFile.Section - content.vb: Public ReadOnly Property Section As Section - overload: Ubiquity.NET.Llvm.ObjectFile.Relocation.Section* -references: -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.html - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Relocation} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Relocation} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Relocation) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.ObjectFile.Relocation) - name.vb: IEquatable(Of Relocation) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.ObjectFile.Relocation - name: Relocation - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.ObjectFile.Relocation - name: Relocation - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html - - name: ) -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html#Ubiquity_NET_Llvm_ObjectFile_Relocation_Offset - name: Offset - nameWithType: Relocation.Offset - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Offset -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html#Ubiquity_NET_Llvm_ObjectFile_Relocation_Symbol - name: Symbol - nameWithType: Relocation.Symbol - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Symbol -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Symbol - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - name: Symbol - nameWithType: Symbol - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Description* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Relocation.Description - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html#Ubiquity_NET_Llvm_ObjectFile_Relocation_Description - name: Description - nameWithType: Relocation.Description - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Description -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Value* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Relocation.Value - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html#Ubiquity_NET_Llvm_ObjectFile_Relocation_Value - name: Value - nameWithType: Relocation.Value - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Value -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html#Ubiquity_NET_Llvm_ObjectFile_Relocation_Kind - name: Kind - nameWithType: Relocation.Kind - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Kind -- uid: Ubiquity.NET.Llvm.ObjectFile.Section - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Section - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.Section.html - name: Section - nameWithType: Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Section -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation.Section* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Relocation.Section - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html#Ubiquity_NET_Llvm_ObjectFile_Relocation_Section - name: Section - nameWithType: Relocation.Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation.Section diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Section.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Section.yml deleted file mode 100644 index 9939efedcd..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Section.yml +++ /dev/null @@ -1,835 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ObjectFile.Section - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Section - id: Section - parent: Ubiquity.NET.Llvm.ObjectFile - children: - - Ubiquity.NET.Llvm.ObjectFile.Section.Address - - Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary - - Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol(Ubiquity.NET.Llvm.ObjectFile.Symbol) - - Ubiquity.NET.Llvm.ObjectFile.Section.Contents - - Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection(Ubiquity.NET.Llvm.ObjectFile.Symbol) - - Ubiquity.NET.Llvm.ObjectFile.Section.Name - - Ubiquity.NET.Llvm.ObjectFile.Section.Relocations - langs: - - csharp - - vb - name: Section - nameWithType: Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Section - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Section - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Section in an - example: [] - syntax: - content: 'public readonly record struct Section : IEquatable
' - content.vb: Public Structure Section Implements IEquatable(Of Section) - implements: - - System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Section} - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.Name - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Section.Name - id: Name - parent: Ubiquity.NET.Llvm.ObjectFile.Section - langs: - - csharp - - vb - name: Name - nameWithType: Section.Name - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the name of the section - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.ObjectFile.Section.Name* -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary - id: ContainingBinary - parent: Ubiquity.NET.Llvm.ObjectFile.Section - langs: - - csharp - - vb - name: ContainingBinary - nameWithType: Section.ContainingBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ContainingBinary - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the this section belongs to - example: [] - syntax: - content: public TargetBinary ContainingBinary { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - content.vb: Public ReadOnly Property ContainingBinary As TargetBinary - overload: Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary* -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.Relocations - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Section.Relocations - id: Relocations - parent: Ubiquity.NET.Llvm.ObjectFile.Section - langs: - - csharp - - vb - name: Relocations - nameWithType: Section.Relocations - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.Relocations - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Relocations - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the Relocations in this - example: [] - syntax: - content: public IEnumerable Relocations { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Relocation} - content.vb: Public ReadOnly Property Relocations As IEnumerable(Of Relocation) - overload: Ubiquity.NET.Llvm.ObjectFile.Section.Relocations* -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.Contents - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Section.Contents - id: Contents - parent: Ubiquity.NET.Llvm.ObjectFile.Section - langs: - - csharp - - vb - name: Contents - nameWithType: Section.Contents - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.Contents - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Contents - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the contents of the section - example: [] - syntax: - content: public ReadOnlySpan Contents { get; } - parameters: [] - return: - type: System.ReadOnlySpan{System.Byte} - content.vb: Public ReadOnly Property Contents As ReadOnlySpan(Of Byte) - overload: Ubiquity.NET.Llvm.ObjectFile.Section.Contents* -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol(Ubiquity.NET.Llvm.ObjectFile.Symbol) - commentId: M:Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol(Ubiquity.NET.Llvm.ObjectFile.Symbol) - id: ContainsSymbol(Ubiquity.NET.Llvm.ObjectFile.Symbol) - parent: Ubiquity.NET.Llvm.ObjectFile.Section - langs: - - csharp - - vb - name: ContainsSymbol(Symbol) - nameWithType: Section.ContainsSymbol(Symbol) - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol(Ubiquity.NET.Llvm.ObjectFile.Symbol) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ContainsSymbol - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - startLine: 50 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Tests whether the section contains a given symbol - example: [] - syntax: - content: public bool ContainsSymbol(Symbol symbol) - parameters: - - id: symbol - type: Ubiquity.NET.Llvm.ObjectFile.Symbol - description: Symbol to test for - return: - type: System.Boolean - description: true if the section contains symbol - content.vb: Public Function ContainsSymbol(symbol As Symbol) As Boolean - overload: Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol* -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection(Ubiquity.NET.Llvm.ObjectFile.Symbol) - commentId: M:Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection(Ubiquity.NET.Llvm.ObjectFile.Symbol) - id: MoveToContainingSection(Ubiquity.NET.Llvm.ObjectFile.Symbol) - parent: Ubiquity.NET.Llvm.ObjectFile.Section - langs: - - csharp - - vb - name: MoveToContainingSection(Symbol) - nameWithType: Section.MoveToContainingSection(Symbol) - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection(Ubiquity.NET.Llvm.ObjectFile.Symbol) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MoveToContainingSection - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Move the iterator to the section containing the provided symbol - example: [] - syntax: - content: public void MoveToContainingSection(Symbol symbol) - parameters: - - id: symbol - type: Ubiquity.NET.Llvm.ObjectFile.Symbol - description: symbol to find the section for - content.vb: Public Sub MoveToContainingSection(symbol As Symbol) - overload: Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection* -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.Address - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Section.Address - id: Address - parent: Ubiquity.NET.Llvm.ObjectFile.Section - langs: - - csharp - - vb - name: Address - nameWithType: Section.Address - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.Address - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Address - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Section.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the address of the section - example: [] - syntax: - content: public ulong Address { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property Address As ULong - overload: Ubiquity.NET.Llvm.ObjectFile.Section.Address* -references: -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - commentId: T:Ubiquity.NET.Llvm.ObjectFile.TargetBinary - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html - name: TargetBinary - nameWithType: TargetBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.html - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Section} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Section} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable
- nameWithType: IEquatable
- fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Section) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.ObjectFile.Section) - name.vb: IEquatable(Of Section) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.ObjectFile.Section - name: Section - href: Ubiquity.NET.Llvm.ObjectFile.Section.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.ObjectFile.Section - name: Section - href: Ubiquity.NET.Llvm.ObjectFile.Section.html - - name: ) -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.Name* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Section.Name - href: Ubiquity.NET.Llvm.ObjectFile.Section.html#Ubiquity_NET_Llvm_ObjectFile_Section_Name - name: Name - nameWithType: Section.Name - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary - href: Ubiquity.NET.Llvm.ObjectFile.Section.html#Ubiquity_NET_Llvm_ObjectFile_Section_ContainingBinary - name: ContainingBinary - nameWithType: Section.ContainingBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.ContainingBinary -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.Relocations* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Section.Relocations - href: Ubiquity.NET.Llvm.ObjectFile.Section.html#Ubiquity_NET_Llvm_ObjectFile_Section_Relocations - name: Relocations - nameWithType: Section.Relocations - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.Relocations -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Relocation} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Relocation} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Relocation) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.ObjectFile.Relocation) - name.vb: IEnumerable(Of Relocation) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.ObjectFile.Relocation - name: Relocation - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.ObjectFile.Relocation - name: Relocation - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.Contents* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Section.Contents - href: Ubiquity.NET.Llvm.ObjectFile.Section.html#Ubiquity_NET_Llvm_ObjectFile_Section_Contents - name: Contents - nameWithType: Section.Contents - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.Contents -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol - href: Ubiquity.NET.Llvm.ObjectFile.Section.html#Ubiquity_NET_Llvm_ObjectFile_Section_ContainsSymbol_Ubiquity_NET_Llvm_ObjectFile_Symbol_ - name: ContainsSymbol - nameWithType: Section.ContainsSymbol - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.ContainsSymbol -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Symbol - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - name: Symbol - nameWithType: Symbol - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection - href: Ubiquity.NET.Llvm.ObjectFile.Section.html#Ubiquity_NET_Llvm_ObjectFile_Section_MoveToContainingSection_Ubiquity_NET_Llvm_ObjectFile_Symbol_ - name: MoveToContainingSection - nameWithType: Section.MoveToContainingSection - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.MoveToContainingSection -- uid: Ubiquity.NET.Llvm.ObjectFile.Section.Address* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Section.Address - href: Ubiquity.NET.Llvm.ObjectFile.Section.html#Ubiquity_NET_Llvm_ObjectFile_Section_Address - name: Address - nameWithType: Section.Address - fullName: Ubiquity.NET.Llvm.ObjectFile.Section.Address -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Symbol.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Symbol.yml deleted file mode 100644 index a375078f30..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.Symbol.yml +++ /dev/null @@ -1,907 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Symbol - id: Symbol - parent: Ubiquity.NET.Llvm.ObjectFile - children: - - Ubiquity.NET.Llvm.ObjectFile.Symbol.Address - - Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary - - Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(System.Object) - - Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - - Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode - - Ubiquity.NET.Llvm.ObjectFile.Symbol.Name - - Ubiquity.NET.Llvm.ObjectFile.Symbol.Section - - Ubiquity.NET.Llvm.ObjectFile.Symbol.Size - - Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Equality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol) - - Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Inequality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol) - langs: - - csharp - - vb - name: Symbol - nameWithType: Symbol - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Symbol - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Symbol in an - example: [] - syntax: - content: 'public readonly struct Symbol : IEquatable' - content.vb: Public Structure Symbol Implements IEquatable(Of Symbol) - implements: - - System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol} - inheritedMembers: - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary - id: ContainingBinary - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: ContainingBinary - nameWithType: Symbol.ContainingBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ContainingBinary - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the this symbol belongs to - example: [] - syntax: - content: public TargetBinary ContainingBinary { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - content.vb: Public ReadOnly Property ContainingBinary As TargetBinary - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary* -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Section - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Symbol.Section - id: Section - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: Section - nameWithType: Symbol.Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Section - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Section - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the section this symbol belongs to - example: [] - syntax: - content: public Section Section { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ObjectFile.Section - content.vb: Public ReadOnly Property Section As Section - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.Section* -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Name - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Symbol.Name - id: Name - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: Name - nameWithType: Symbol.Name - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the name of the symbol - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.Name* -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Address - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Symbol.Address - id: Address - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: Address - nameWithType: Symbol.Address - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Address - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Address - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the address of the symbol - example: [] - syntax: - content: public ulong Address { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property Address As ULong - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.Address* -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Size - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Symbol.Size - id: Size - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: Size - nameWithType: Symbol.Size - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Size - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Size - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the size of the symbol - example: [] - syntax: - content: public ulong Size { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property Size As ULong - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.Size* -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(System.Object) - id: Equals(System.Object) - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: Symbol.Equals(object?) - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(object?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Tests an for equality - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: to compare with this instance - return: - type: System.Boolean - description: true if the - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.ValueType.Equals(System.Object) - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals* - nameWithType.vb: Symbol.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(Object) - name.vb: Equals(Object) -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode - commentId: M:Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: Symbol.GetHashCode() - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets a hash code for this - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: Hash code - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.ValueType.GetHashCode - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode* -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Equality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol) - commentId: M:Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Equality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol) - id: op_Equality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol) - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: operator ==(Symbol, Symbol) - nameWithType: Symbol.operator ==(Symbol, Symbol) - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.operator ==(Ubiquity.NET.Llvm.ObjectFile.Symbol, Ubiquity.NET.Llvm.ObjectFile.Symbol) - type: Operator - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: op_Equality - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Equality comparison - example: [] - syntax: - content: public static bool operator ==(Symbol left, Symbol right) - parameters: - - id: left - type: Ubiquity.NET.Llvm.ObjectFile.Symbol - description: left side of comparison - - id: right - type: Ubiquity.NET.Llvm.ObjectFile.Symbol - description: right side of comparison - return: - type: System.Boolean - description: Result of equality test - content.vb: Public Shared Operator =(left As Symbol, right As Symbol) As Boolean - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Equality* - nameWithType.vb: Symbol.=(Symbol, Symbol) - fullName.vb: Ubiquity.NET.Llvm.ObjectFile.Symbol.=(Ubiquity.NET.Llvm.ObjectFile.Symbol, Ubiquity.NET.Llvm.ObjectFile.Symbol) - name.vb: =(Symbol, Symbol) -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Inequality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol) - commentId: M:Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Inequality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol) - id: op_Inequality(Ubiquity.NET.Llvm.ObjectFile.Symbol,Ubiquity.NET.Llvm.ObjectFile.Symbol) - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: operator !=(Symbol, Symbol) - nameWithType: Symbol.operator !=(Symbol, Symbol) - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.operator !=(Ubiquity.NET.Llvm.ObjectFile.Symbol, Ubiquity.NET.Llvm.ObjectFile.Symbol) - type: Operator - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: op_Inequality - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Inequality comparison - example: [] - syntax: - content: public static bool operator !=(Symbol left, Symbol right) - parameters: - - id: left - type: Ubiquity.NET.Llvm.ObjectFile.Symbol - description: left side of comparison - - id: right - type: Ubiquity.NET.Llvm.ObjectFile.Symbol - description: right side of comparison - return: - type: System.Boolean - description: Result of inequality test - content.vb: Public Shared Operator <>(left As Symbol, right As Symbol) As Boolean - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Inequality* - nameWithType.vb: Symbol.<>(Symbol, Symbol) - fullName.vb: Ubiquity.NET.Llvm.ObjectFile.Symbol.<>(Ubiquity.NET.Llvm.ObjectFile.Symbol, Ubiquity.NET.Llvm.ObjectFile.Symbol) - name.vb: <>(Symbol, Symbol) -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - commentId: M:Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - id: Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - parent: Ubiquity.NET.Llvm.ObjectFile.Symbol - langs: - - csharp - - vb - name: Equals(Symbol) - nameWithType: Symbol.Equals(Symbol) - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/ObjectFile/Symbol.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Tests an for equality - example: [] - syntax: - content: public bool Equals(Symbol other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.ObjectFile.Symbol - description: to compare with this instance - return: - type: System.Boolean - description: true if the - content.vb: Public Function Equals(other As Symbol) As Boolean - overload: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol}.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) -references: -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - commentId: T:Ubiquity.NET.Llvm.ObjectFile.TargetBinary - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html - name: TargetBinary - nameWithType: TargetBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.html - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Symbol) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.ObjectFile.Symbol) - name.vb: IEquatable(Of Symbol) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - name: Symbol - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - name: Symbol - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_ContainingBinary - name: ContainingBinary - nameWithType: Symbol.ContainingBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.ContainingBinary -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Section* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.Section - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_Section - name: Section - nameWithType: Symbol.Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Section -- uid: Ubiquity.NET.Llvm.ObjectFile.Section - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Section - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.Section.html - name: Section - nameWithType: Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Section -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Name* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.Name - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_Name - name: Name - nameWithType: Symbol.Name - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Address* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.Address - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_Address - name: Address - nameWithType: Symbol.Address - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Address -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Size* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.Size - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_Size - name: Size - nameWithType: Symbol.Size - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Size -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_Equals_System_Object_ - name: Equals - nameWithType: Symbol.Equals - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Equals -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.Section - commentId: P:Ubiquity.NET.Llvm.ObjectFile.Symbol.Section - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_Section - name: Section - nameWithType: Symbol.Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.Section -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_GetHashCode - name: GetHashCode - nameWithType: Symbol.GetHashCode - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Equality* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Equality - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_op_Equality_Ubiquity_NET_Llvm_ObjectFile_Symbol_Ubiquity_NET_Llvm_ObjectFile_Symbol_ - name: operator == - nameWithType: Symbol.operator == - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.operator == - nameWithType.vb: Symbol.= - fullName.vb: Ubiquity.NET.Llvm.ObjectFile.Symbol.= - name.vb: = - spec.csharp: - - name: operator - - name: " " - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Equality* - name: == - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_op_Equality_Ubiquity_NET_Llvm_ObjectFile_Symbol_Ubiquity_NET_Llvm_ObjectFile_Symbol_ -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Symbol - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - name: Symbol - nameWithType: Symbol - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Inequality* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Inequality - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_op_Inequality_Ubiquity_NET_Llvm_ObjectFile_Symbol_Ubiquity_NET_Llvm_ObjectFile_Symbol_ - name: operator != - nameWithType: Symbol.operator != - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol.operator != - nameWithType.vb: Symbol.<> - fullName.vb: Ubiquity.NET.Llvm.ObjectFile.Symbol.<> - name.vb: <> - spec.csharp: - - name: operator - - name: " " - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol.op_Inequality* - name: '!=' - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html#Ubiquity_NET_Llvm_ObjectFile_Symbol_op_Inequality_Ubiquity_NET_Llvm_ObjectFile_Symbol_Ubiquity_NET_Llvm_ObjectFile_Symbol_ -- uid: System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol}.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol}.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - parent: System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(Symbol) - nameWithType: IEquatable.Equals(Symbol) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - nameWithType.vb: IEquatable(Of Symbol).Equals(Symbol) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.ObjectFile.Symbol).Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol}.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - name: Symbol - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.ObjectFile.Symbol}.Equals(Ubiquity.NET.Llvm.ObjectFile.Symbol) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - name: Symbol - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - - name: ) -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.TargetBinary.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.TargetBinary.yml deleted file mode 100644 index 986b3ad07c..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.TargetBinary.yml +++ /dev/null @@ -1,619 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - commentId: T:Ubiquity.NET.Llvm.ObjectFile.TargetBinary - id: TargetBinary - parent: Ubiquity.NET.Llvm.ObjectFile - children: - - Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose - - Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind - - Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections - - Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols - langs: - - csharp - - vb - name: TargetBinary - nameWithType: TargetBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetBinary - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Object file information - example: [] - syntax: - content: 'public sealed class TargetBinary : IDisposable' - content.vb: Public NotInheritable Class TargetBinary Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind - commentId: P:Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind - id: Kind - parent: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - langs: - - csharp - - vb - name: Kind - nameWithType: TargetBinary.Kind - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kind - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the kind of binary this instance contains - example: [] - syntax: - content: public BinaryKind Kind { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - content.vb: Public ReadOnly Property Kind As BinaryKind - overload: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind* -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols - commentId: P:Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols - id: Symbols - parent: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - langs: - - csharp - - vb - name: Symbols - nameWithType: TargetBinary.Symbols - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Symbols - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the symbols in this - example: [] - syntax: - content: public IEnumerable Symbols { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Symbol} - content.vb: Public ReadOnly Property Symbols As IEnumerable(Of Symbol) - overload: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols* -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections - commentId: P:Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections - id: Sections - parent: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - langs: - - csharp - - vb - name: Sections - nameWithType: TargetBinary.Sections - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Sections - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 90 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Gets the sections in this - example: [] - syntax: - content: public IEnumerable
Sections { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Section} - content.vb: Public ReadOnly Property Sections As IEnumerable(Of Section) - overload: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections* -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose - commentId: M:Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - langs: - - csharp - - vb - name: Dispose() - nameWithType: TargetBinary.Dispose() - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/ObjectFile/TargetBinary.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.ObjectFile - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose* - implements: - - System.IDisposable.Dispose -references: -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.html - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html#Ubiquity_NET_Llvm_ObjectFile_TargetBinary_Kind - name: Kind - nameWithType: TargetBinary.Kind - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Kind -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - commentId: T:Ubiquity.NET.Llvm.ObjectFile.BinaryKind - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.html - name: BinaryKind - nameWithType: BinaryKind - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - commentId: T:Ubiquity.NET.Llvm.ObjectFile.TargetBinary - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html - name: TargetBinary - nameWithType: TargetBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html#Ubiquity_NET_Llvm_ObjectFile_TargetBinary_Symbols - name: Symbols - nameWithType: TargetBinary.Symbols - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Symbols -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Symbol} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Symbol} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Symbol) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.ObjectFile.Symbol) - name.vb: IEnumerable(Of Symbol) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - name: Symbol - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - name: Symbol - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html#Ubiquity_NET_Llvm_ObjectFile_TargetBinary_Sections - name: Sections - nameWithType: TargetBinary.Sections - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Sections -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Section} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.ObjectFile.Section} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable
- nameWithType: IEnumerable
- fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Section) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.ObjectFile.Section) - name.vb: IEnumerable(Of Section) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.ObjectFile.Section - name: Section - href: Ubiquity.NET.Llvm.ObjectFile.Section.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.ObjectFile.Section - name: Section - href: Ubiquity.NET.Llvm.ObjectFile.Section.html - - name: ) -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html#Ubiquity_NET_Llvm_ObjectFile_TargetBinary_Dispose - name: Dispose - nameWithType: TargetBinary.Dispose - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.yml deleted file mode 100644 index bbd0c49bd0..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFile.yml +++ /dev/null @@ -1,93 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - id: Ubiquity.NET.Llvm.ObjectFile - children: - - Ubiquity.NET.Llvm.ObjectFile.BinaryKind - - Ubiquity.NET.Llvm.ObjectFile.Relocation - - Ubiquity.NET.Llvm.ObjectFile.Section - - Ubiquity.NET.Llvm.ObjectFile.Symbol - - Ubiquity.NET.Llvm.ObjectFile.TargetBinary - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.ObjectFile.Relocation - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Relocation - href: Ubiquity.NET.Llvm.ObjectFile.Relocation.html - name: Relocation - nameWithType: Relocation - fullName: Ubiquity.NET.Llvm.ObjectFile.Relocation -- uid: Ubiquity.NET.Llvm.ObjectFile.Section - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Section - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.Section.html - name: Section - nameWithType: Section - fullName: Ubiquity.NET.Llvm.ObjectFile.Section -- uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - commentId: T:Ubiquity.NET.Llvm.ObjectFile.Symbol - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.Symbol.html - name: Symbol - nameWithType: Symbol - fullName: Ubiquity.NET.Llvm.ObjectFile.Symbol -- uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - commentId: T:Ubiquity.NET.Llvm.ObjectFile.BinaryKind - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.BinaryKind.html - name: BinaryKind - nameWithType: BinaryKind - fullName: Ubiquity.NET.Llvm.ObjectFile.BinaryKind -- uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - commentId: T:Ubiquity.NET.Llvm.ObjectFile.TargetBinary - parent: Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.TargetBinary.html - name: TargetBinary - nameWithType: TargetBinary - fullName: Ubiquity.NET.Llvm.ObjectFile.TargetBinary -- uid: Ubiquity.NET.Llvm.ObjectFile - commentId: N:Ubiquity.NET.Llvm.ObjectFile - href: Ubiquity.html - name: Ubiquity.NET.Llvm.ObjectFile - nameWithType: Ubiquity.NET.Llvm.ObjectFile - fullName: Ubiquity.NET.Llvm.ObjectFile - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.ObjectFile - name: ObjectFile - href: Ubiquity.NET.Llvm.ObjectFile.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFormatKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFormatKind.yml deleted file mode 100644 index fac7cb67ec..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.ObjectFormatKind.yml +++ /dev/null @@ -1,284 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.ObjectFormatKind - commentId: T:Ubiquity.NET.Llvm.ObjectFormatKind - id: ObjectFormatKind - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ObjectFormatKind.COFF - - Ubiquity.NET.Llvm.ObjectFormatKind.DXContainer - - Ubiquity.NET.Llvm.ObjectFormatKind.ELF - - Ubiquity.NET.Llvm.ObjectFormatKind.MachO - - Ubiquity.NET.Llvm.ObjectFormatKind.SpirV - - Ubiquity.NET.Llvm.ObjectFormatKind.Unknown - - Ubiquity.NET.Llvm.ObjectFormatKind.Wasm - - Ubiquity.NET.Llvm.ObjectFormatKind.XCOFF - langs: - - csharp - - vb - name: ObjectFormatKind - nameWithType: ObjectFormatKind - fullName: Ubiquity.NET.Llvm.ObjectFormatKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ObjectFormatKind - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 589 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Object format type for a Triple - example: [] - syntax: - content: public enum ObjectFormatKind - content.vb: Public Enum ObjectFormatKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind.Unknown - commentId: F:Ubiquity.NET.Llvm.ObjectFormatKind.Unknown - id: Unknown - parent: Ubiquity.NET.Llvm.ObjectFormatKind - langs: - - csharp - - vb - name: Unknown - nameWithType: ObjectFormatKind.Unknown - fullName: Ubiquity.NET.Llvm.ObjectFormatKind.Unknown - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unknown - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 593 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Unknown = 0 - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind.COFF - commentId: F:Ubiquity.NET.Llvm.ObjectFormatKind.COFF - id: COFF - parent: Ubiquity.NET.Llvm.ObjectFormatKind - langs: - - csharp - - vb - name: COFF - nameWithType: ObjectFormatKind.COFF - fullName: Ubiquity.NET.Llvm.ObjectFormatKind.COFF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: COFF - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 594 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: COFF = 1 - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind.DXContainer - commentId: F:Ubiquity.NET.Llvm.ObjectFormatKind.DXContainer - id: DXContainer - parent: Ubiquity.NET.Llvm.ObjectFormatKind - langs: - - csharp - - vb - name: DXContainer - nameWithType: ObjectFormatKind.DXContainer - fullName: Ubiquity.NET.Llvm.ObjectFormatKind.DXContainer - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXContainer - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 595 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXContainer = 2 - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind.ELF - commentId: F:Ubiquity.NET.Llvm.ObjectFormatKind.ELF - id: ELF - parent: Ubiquity.NET.Llvm.ObjectFormatKind - langs: - - csharp - - vb - name: ELF - nameWithType: ObjectFormatKind.ELF - fullName: Ubiquity.NET.Llvm.ObjectFormatKind.ELF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ELF - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 596 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: ELF = 3 - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind.MachO - commentId: F:Ubiquity.NET.Llvm.ObjectFormatKind.MachO - id: MachO - parent: Ubiquity.NET.Llvm.ObjectFormatKind - langs: - - csharp - - vb - name: MachO - nameWithType: ObjectFormatKind.MachO - fullName: Ubiquity.NET.Llvm.ObjectFormatKind.MachO - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MachO - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 597 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: MachO = 5 - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind.SpirV - commentId: F:Ubiquity.NET.Llvm.ObjectFormatKind.SpirV - id: SpirV - parent: Ubiquity.NET.Llvm.ObjectFormatKind - langs: - - csharp - - vb - name: SpirV - nameWithType: ObjectFormatKind.SpirV - fullName: Ubiquity.NET.Llvm.ObjectFormatKind.SpirV - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SpirV - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 598 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: SpirV = 6 - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind.Wasm - commentId: F:Ubiquity.NET.Llvm.ObjectFormatKind.Wasm - id: Wasm - parent: Ubiquity.NET.Llvm.ObjectFormatKind - langs: - - csharp - - vb - name: Wasm - nameWithType: ObjectFormatKind.Wasm - fullName: Ubiquity.NET.Llvm.ObjectFormatKind.Wasm - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Wasm - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 599 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: Wasm = 7 - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind.XCOFF - commentId: F:Ubiquity.NET.Llvm.ObjectFormatKind.XCOFF - id: XCOFF - parent: Ubiquity.NET.Llvm.ObjectFormatKind - langs: - - csharp - - vb - name: XCOFF - nameWithType: ObjectFormatKind.XCOFF - fullName: Ubiquity.NET.Llvm.ObjectFormatKind.XCOFF - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: XCOFF - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 600 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: XCOFF = 8 - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.ObjectFormatKind - commentId: T:Ubiquity.NET.Llvm.ObjectFormatKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ObjectFormatKind.html - name: ObjectFormatKind - nameWithType: ObjectFormatKind - fullName: Ubiquity.NET.Llvm.ObjectFormatKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OptimizationSizeLevel.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OptimizationSizeLevel.yml deleted file mode 100644 index bdac47efb1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OptimizationSizeLevel.yml +++ /dev/null @@ -1,155 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OptimizationSizeLevel - commentId: T:Ubiquity.NET.Llvm.OptimizationSizeLevel - id: OptimizationSizeLevel - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.OptimizationSizeLevel.None - - Ubiquity.NET.Llvm.OptimizationSizeLevel.Os - - Ubiquity.NET.Llvm.OptimizationSizeLevel.Oz - langs: - - csharp - - vb - name: OptimizationSizeLevel - nameWithType: OptimizationSizeLevel - fullName: Ubiquity.NET.Llvm.OptimizationSizeLevel - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OptimizationSizeLevel - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Optimization Size preference - example: [] - syntax: - content: public enum OptimizationSizeLevel - content.vb: Public Enum OptimizationSizeLevel -- uid: Ubiquity.NET.Llvm.OptimizationSizeLevel.None - commentId: F:Ubiquity.NET.Llvm.OptimizationSizeLevel.None - id: None - parent: Ubiquity.NET.Llvm.OptimizationSizeLevel - langs: - - csharp - - vb - name: None - nameWithType: OptimizationSizeLevel.None - fullName: Ubiquity.NET.Llvm.OptimizationSizeLevel.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Default optimization - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.OptimizationSizeLevel -- uid: Ubiquity.NET.Llvm.OptimizationSizeLevel.Os - commentId: F:Ubiquity.NET.Llvm.OptimizationSizeLevel.Os - id: Os - parent: Ubiquity.NET.Llvm.OptimizationSizeLevel - langs: - - csharp - - vb - name: Os - nameWithType: OptimizationSizeLevel.Os - fullName: Ubiquity.NET.Llvm.OptimizationSizeLevel.Os - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Os - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Equivalent to -Os - example: [] - syntax: - content: Os = 1 - return: - type: Ubiquity.NET.Llvm.OptimizationSizeLevel -- uid: Ubiquity.NET.Llvm.OptimizationSizeLevel.Oz - commentId: F:Ubiquity.NET.Llvm.OptimizationSizeLevel.Oz - id: Oz - parent: Ubiquity.NET.Llvm.OptimizationSizeLevel - langs: - - csharp - - vb - name: Oz - nameWithType: OptimizationSizeLevel.Oz - fullName: Ubiquity.NET.Llvm.OptimizationSizeLevel.Oz - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Oz - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Equivalent to -Oz - example: [] - syntax: - content: Oz = 2 - return: - type: Ubiquity.NET.Llvm.OptimizationSizeLevel -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.OptimizationSizeLevel - commentId: T:Ubiquity.NET.Llvm.OptimizationSizeLevel - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.OptimizationSizeLevel.html - name: OptimizationSizeLevel - nameWithType: OptimizationSizeLevel - fullName: Ubiquity.NET.Llvm.OptimizationSizeLevel diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.yml deleted file mode 100644 index 9cec9508ea..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.yml +++ /dev/null @@ -1,605 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - id: AbsoluteMaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.#ctor(System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol}}) - langs: - - csharp - - vb - name: AbsoluteMaterializationUnit - nameWithType: AbsoluteMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/AbsoluteMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AbsoluteMaterializationUnit - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/AbsoluteMaterializationUnit.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Materialization unit for absolute symbols in an LLVM ORC v2 JIT - example: [] - syntax: - content: 'public class AbsoluteMaterializationUnit : MaterializationUnit, IDisposable' - content.vb: Public Class AbsoluteMaterializationUnit Inherits MaterializationUnit Implements IDisposable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DisposableObject - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - implements: - - System.IDisposable - inheritedMembers: - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - - Ubiquity.NET.Llvm.DisposableObject.Dispose - - Ubiquity.NET.Llvm.DisposableObject.IsDisposed - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.#ctor(System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol}}) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.#ctor(System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol}}) - id: '#ctor(System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol}})' - parent: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - langs: - - csharp - - vb - name: AbsoluteMaterializationUnit(IReadOnlyCollection>) - nameWithType: AbsoluteMaterializationUnit.AbsoluteMaterializationUnit(IReadOnlyCollection>) - fullName: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.AbsoluteMaterializationUnit(System.Collections.Generic.IReadOnlyCollection>) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/AbsoluteMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/AbsoluteMaterializationUnit.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public AbsoluteMaterializationUnit(IReadOnlyCollection> absoluteSymbols) - parameters: - - id: absoluteSymbols - type: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol}} - description: Absolute (pre-evaluated) symbols to add to the JIT - content.vb: Public Sub New(absoluteSymbols As IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, EvaluatedSymbol))) - overload: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.#ctor* - nameWithType.vb: AbsoluteMaterializationUnit.New(IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, EvaluatedSymbol))) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.New(System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol))) - name.vb: New(IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, EvaluatedSymbol))) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DisposableObject - commentId: T:Ubiquity.NET.Llvm.DisposableObject - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisposableObject.html - name: DisposableObject - nameWithType: DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html - name: MaterializationUnit - nameWithType: MaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - isExternal: true - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationUnit_Dispose_System_Boolean_ - name: Dispose(bool) - nameWithType: MaterializationUnit.Dispose(bool) - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(bool) - nameWithType.vb: MaterializationUnit.Dispose(Boolean) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(Boolean) - name.vb: Dispose(Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationUnit_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationUnit_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - name: Dispose() - nameWithType: DisposableObject.Dispose() - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.IsDisposed - commentId: P:Ubiquity.NET.Llvm.DisposableObject.IsDisposed - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_IsDisposed - name: IsDisposed - nameWithType: DisposableObject.IsDisposed - fullName: Ubiquity.NET.Llvm.DisposableObject.IsDisposed -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - href: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.html - name: AbsoluteMaterializationUnit - nameWithType: AbsoluteMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit -- uid: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_AbsoluteMaterializationUnit__ctor_System_Collections_Generic_IReadOnlyCollection_System_Collections_Generic_KeyValuePair_Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Ubiquity_NET_Llvm_OrcJITv2_EvaluatedSymbol___ - name: AbsoluteMaterializationUnit - nameWithType: AbsoluteMaterializationUnit.AbsoluteMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.AbsoluteMaterializationUnit - nameWithType.vb: AbsoluteMaterializationUnit.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.New - name.vb: New -- uid: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol}} - commentId: T:System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection> - nameWithType: IReadOnlyCollection> - fullName: System.Collections.Generic.IReadOnlyCollection> - nameWithType.vb: IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, EvaluatedSymbol)) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol)) - name.vb: IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, EvaluatedSymbol)) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: < - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - name: EvaluatedSymbol - href: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.html - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - name: EvaluatedSymbol - href: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.html - - name: ) - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.yml deleted file mode 100644 index 9541fd40d6..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.yml +++ /dev/null @@ -1,671 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - id: CustomMaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - - Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,Ubiquity.NET.Llvm.OrcJITv2.DiscardAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - langs: - - csharp - - vb - name: CustomMaterializationUnit - nameWithType: CustomMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CustomMaterializationUnit - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: LLVM ORC JIT v2 custom materialization unit - remarks: >- - This is used for the bulk of "Lazy" JIT support. However, it is important to - - note that this class does not (and cannot) retain any instance data. All - - data used by the actual materialization is owned by the provided delegates or the - - implementation. - example: [] - syntax: - content: 'public sealed class CustomMaterializationUnit : MaterializationUnit, IDisposable' - content.vb: Public NotInheritable Class CustomMaterializationUnit Inherits MaterializationUnit Implements IDisposable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DisposableObject - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - implements: - - System.IDisposable - inheritedMembers: - - Ubiquity.NET.Llvm.DisposableObject.Dispose - - Ubiquity.NET.Llvm.DisposableObject.IsDisposed - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - id: '#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry)' - parent: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - langs: - - csharp - - vb - name: CustomMaterializationUnit(LazyEncodedString, MaterializationAction, IReadOnlyCollection>, SymbolStringPoolEntry?) - nameWithType: CustomMaterializationUnit.CustomMaterializationUnit(LazyEncodedString, MaterializationAction, IReadOnlyCollection>, SymbolStringPoolEntry?) - fullName: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.CustomMaterializationUnit(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction, System.Collections.Generic.IReadOnlyCollection>, Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry?) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public CustomMaterializationUnit(LazyEncodedString name, MaterializationAction materializeAction, IReadOnlyCollection> symbols, SymbolStringPoolEntry? initSymbol = null) - parameters: - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Name of this instance - - id: materializeAction - type: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - description: Action to perform to materialize the symbol - - id: symbols - type: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}} - description: symbols the materializer works on - - id: initSymbol - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: Symbol of static initializer (if any) - content.vb: Public Sub New(name As LazyEncodedString, materializeAction As MaterializationAction, symbols As IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolFlags)), initSymbol As SymbolStringPoolEntry = Nothing) - overload: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor* - nameWithType.vb: CustomMaterializationUnit.New(LazyEncodedString, MaterializationAction, IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolFlags)), SymbolStringPoolEntry) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.New(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction, System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags)), Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name.vb: New(LazyEncodedString, MaterializationAction, IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolFlags)), SymbolStringPoolEntry) -- uid: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,Ubiquity.NET.Llvm.OrcJITv2.DiscardAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,Ubiquity.NET.Llvm.OrcJITv2.DiscardAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - id: '#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction,Ubiquity.NET.Llvm.OrcJITv2.DiscardAction,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}},Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry)' - parent: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - langs: - - csharp - - vb - name: CustomMaterializationUnit(LazyEncodedString, MaterializationAction, DiscardAction?, IReadOnlyCollection>, SymbolStringPoolEntry?) - nameWithType: CustomMaterializationUnit.CustomMaterializationUnit(LazyEncodedString, MaterializationAction, DiscardAction?, IReadOnlyCollection>, SymbolStringPoolEntry?) - fullName: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.CustomMaterializationUnit(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction, Ubiquity.NET.Llvm.OrcJITv2.DiscardAction?, System.Collections.Generic.IReadOnlyCollection>, Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry?) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - remarks: >- - This implementation will maintain the lifetime of the provided delegates via an internally allocated disposable - - until the materialization is completed or abandoned. If materializeAction is not called, then - - the discardAction is. This allows for cases where the data used by the materializeAction - - is not held by the action itself or needs to support early disposal instead of remaining at the whims of the GC. - example: [] - syntax: - content: public CustomMaterializationUnit(LazyEncodedString name, MaterializationAction materializeAction, DiscardAction? discardAction, IReadOnlyCollection> symbols, SymbolStringPoolEntry? initSymbol = null) - parameters: - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Name of this instance - - id: materializeAction - type: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - description: Action to perform to materialize the symbol - - id: discardAction - type: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - description: Action to perform when the JIT discards/replaces a symbol - - id: symbols - type: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}} - description: symbols the materializer works on - - id: initSymbol - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: Symbol of static initializer (if any) - content.vb: Public Sub New(name As LazyEncodedString, materializeAction As MaterializationAction, discardAction As DiscardAction, symbols As IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolFlags)), initSymbol As SymbolStringPoolEntry = Nothing) - overload: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor* - nameWithType.vb: CustomMaterializationUnit.New(LazyEncodedString, MaterializationAction, DiscardAction, IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolFlags)), SymbolStringPoolEntry) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.New(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction, Ubiquity.NET.Llvm.OrcJITv2.DiscardAction, System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags)), Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name.vb: New(LazyEncodedString, MaterializationAction, DiscardAction, IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolFlags)), SymbolStringPoolEntry) -references: -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DisposableObject - commentId: T:Ubiquity.NET.Llvm.DisposableObject - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisposableObject.html - name: DisposableObject - nameWithType: DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html - name: MaterializationUnit - nameWithType: MaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - name: Dispose() - nameWithType: DisposableObject.Dispose() - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.IsDisposed - commentId: P:Ubiquity.NET.Llvm.DisposableObject.IsDisposed - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_IsDisposed - name: IsDisposed - nameWithType: DisposableObject.IsDisposed - fullName: Ubiquity.NET.Llvm.DisposableObject.IsDisposed -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - href: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.html - name: CustomMaterializationUnit - nameWithType: CustomMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit -- uid: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_CustomMaterializationUnit__ctor_Ubiquity_NET_InteropHelpers_LazyEncodedString_Ubiquity_NET_Llvm_OrcJITv2_MaterializationAction_System_Collections_Generic_IReadOnlyCollection_System_Collections_Generic_KeyValuePair_Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Ubiquity_NET_Llvm_OrcJITv2_SymbolFlags___Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ - name: CustomMaterializationUnit - nameWithType: CustomMaterializationUnit.CustomMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.CustomMaterializationUnit - nameWithType.vb: CustomMaterializationUnit.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.New - name.vb: New -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction.html - name: MaterializationAction - nameWithType: MaterializationAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction -- uid: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}} - commentId: T:System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection> - nameWithType: IReadOnlyCollection> - fullName: System.Collections.Generic.IReadOnlyCollection> - nameWithType.vb: IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolFlags)) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags)) - name.vb: IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolFlags)) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: < - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - name: SymbolFlags - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - name: SymbolFlags - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction.html - name: DiscardAction - nameWithType: DiscardAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.DiscardAction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.DiscardAction.yml deleted file mode 100644 index 7db7a804b7..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.DiscardAction.yml +++ /dev/null @@ -1,128 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - id: DiscardAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: [] - langs: - - csharp - - vb - name: DiscardAction - nameWithType: DiscardAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - type: Delegate - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DiscardAction - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Delegate to perform action on discard - remarks: >- - This must be a "custom" delegate as the is a - - ref type that is NOT allowed as a type parameter for . - example: [] - syntax: - content: public delegate void DiscardAction(JITDyLib jitLib, SymbolStringPoolEntry symbol) - parameters: - - id: jitLib - type: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - description: Library the symbols is discarded from - - id: symbol - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: Symbol being discarded - content.vb: Public Delegate Sub DiscardAction(jitLib As JITDyLib, symbol As SymbolStringPoolEntry) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib -- uid: System.Action`2 - commentId: T:System.Action`2 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.action-2 - name: Action - nameWithType: Action - fullName: System.Action - nameWithType.vb: Action(Of T1, T2) - fullName.vb: System.Action(Of T1, T2) - name.vb: Action(Of T1, T2) - spec.csharp: - - uid: System.Action`2 - name: Action - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.action-2 - - name: < - - name: T1 - - name: ',' - - name: " " - - name: T2 - - name: '>' - spec.vb: - - uid: System.Action`2 - name: Action - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.action-2 - - name: ( - - name: Of - - name: " " - - name: T1 - - name: ',' - - name: " " - - name: T2 - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter.yml deleted file mode 100644 index 904ffd5192..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter.yml +++ /dev/null @@ -1,110 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter - id: ErrorReporter - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: [] - langs: - - csharp - - vb - name: ErrorReporter - nameWithType: ErrorReporter - fullName: Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter - type: Delegate - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ErrorReporter - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Delegate for an error reporter callback - example: [] - syntax: - content: public delegate void ErrorReporter(ref readonly ErrorInfo info) - parameters: - - id: info - type: Ubiquity.NET.Llvm.ErrorInfo - description: Information about the error - content.vb: Public Delegate Sub ErrorReporter(info As ErrorInfo) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ErrorInfo.html - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.yml deleted file mode 100644 index dab7b2857d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.yml +++ /dev/null @@ -1,498 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - id: EvaluatedSymbol - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.#ctor(System.UInt64,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - - Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address - - Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags - langs: - - csharp - - vb - name: EvaluatedSymbol - nameWithType: EvaluatedSymbol - fullName: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/EvaluatedSymbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EvaluatedSymbol - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/EvaluatedSymbol.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Evaluated JIT symbol - example: [] - syntax: - content: 'public readonly record struct EvaluatedSymbol : IEquatable' - content.vb: Public Structure EvaluatedSymbol Implements IEquatable(Of EvaluatedSymbol) - implements: - - System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol} - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.#ctor(System.UInt64,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.#ctor(System.UInt64,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - id: '#ctor(System.UInt64,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags)' - parent: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - langs: - - csharp - - vb - name: EvaluatedSymbol(ulong, SymbolFlags) - nameWithType: EvaluatedSymbol.EvaluatedSymbol(ulong, SymbolFlags) - fullName: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.EvaluatedSymbol(ulong, Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/EvaluatedSymbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/EvaluatedSymbol.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Evaluated JIT symbol - example: [] - syntax: - content: public EvaluatedSymbol(ulong Address, SymbolFlags Flags) - parameters: - - id: Address - type: System.UInt64 - description: JIT engine address of the symbol - - id: Flags - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - description: flags for this symbol - content.vb: Public Sub New(Address As ULong, Flags As SymbolFlags) - overload: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.#ctor* - nameWithType.vb: EvaluatedSymbol.New(ULong, SymbolFlags) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.New(ULong, Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - name.vb: New(ULong, SymbolFlags) -- uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address - id: Address - parent: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - langs: - - csharp - - vb - name: Address - nameWithType: EvaluatedSymbol.Address - fullName: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/EvaluatedSymbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Address - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/EvaluatedSymbol.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: JIT engine address of the symbol - example: [] - syntax: - content: public ulong Address { get; init; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public Property Address As ULong - overload: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address* -- uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags - id: Flags - parent: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - langs: - - csharp - - vb - name: Flags - nameWithType: EvaluatedSymbol.Flags - fullName: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/EvaluatedSymbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Flags - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/EvaluatedSymbol.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: flags for this symbol - example: [] - syntax: - content: public SymbolFlags Flags { get; init; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - content.vb: Public Property Flags As SymbolFlags - overload: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags* -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of EvaluatedSymbol) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol) - name.vb: IEquatable(Of EvaluatedSymbol) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - name: EvaluatedSymbol - href: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - name: EvaluatedSymbol - href: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.html - - name: ) -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.html#Ubiquity_NET_Llvm_OrcJITv2_EvaluatedSymbol__ctor_System_UInt64_Ubiquity_NET_Llvm_OrcJITv2_SymbolFlags_ - name: EvaluatedSymbol - nameWithType: EvaluatedSymbol.EvaluatedSymbol - fullName: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.EvaluatedSymbol - nameWithType.vb: EvaluatedSymbol.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.New - name.vb: New -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html - name: SymbolFlags - nameWithType: SymbolFlags - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags -- uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address - href: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.html#Ubiquity_NET_Llvm_OrcJITv2_EvaluatedSymbol_Address - name: Address - nameWithType: EvaluatedSymbol.Address - fullName: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Address -- uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags - href: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.html#Ubiquity_NET_Llvm_OrcJITv2_EvaluatedSymbol_Flags - name: Flags - nameWithType: EvaluatedSymbol.Flags - fullName: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.Flags diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml deleted file mode 100644 index af38e4b4fe..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.yml +++ /dev/null @@ -1,736 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - id: ExecutionSession - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager(Ubiquity.NET.InteropHelpers.LazyEncodedString,System.UInt64) - - Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - - Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern(System.String) - - Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool - - Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@) - - Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@,Ubiquity.NET.Llvm.ErrorInfo@) - langs: - - csharp - - vb - name: ExecutionSession - nameWithType: ExecutionSession - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExecutionSession - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: ORC JIT v2 Execution Session - remarks: >- - This is a `ref struct` as the JIT is ultimately the owner - - of the underlying session. Thus, this instance does not - - retain any state not part of the underlying native support. - example: [] - syntax: - content: public readonly ref struct ExecutionSession - content.vb: Public Structure ExecutionSession - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool - id: SymbolStringPool - parent: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - langs: - - csharp - - vb - name: SymbolStringPool - nameWithType: ExecutionSession.SymbolStringPool - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SymbolStringPool - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets a reference to the symbol string pool for this session - example: [] - syntax: - content: public SymbolStringPool SymbolStringPool { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - content.vb: Public ReadOnly Property SymbolStringPool As SymbolStringPool - overload: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager(Ubiquity.NET.InteropHelpers.LazyEncodedString,System.UInt64) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager(Ubiquity.NET.InteropHelpers.LazyEncodedString,System.UInt64) - id: CreateLazyCallThroughManager(Ubiquity.NET.InteropHelpers.LazyEncodedString,System.UInt64) - parent: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - langs: - - csharp - - vb - name: CreateLazyCallThroughManager(LazyEncodedString, ulong) - nameWithType: ExecutionSession.CreateLazyCallThroughManager(LazyEncodedString, ulong) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager(Ubiquity.NET.InteropHelpers.LazyEncodedString, ulong) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateLazyCallThroughManager - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Creates a Lazy Call Through manager for this session - example: [] - syntax: - content: public LazyCallThroughManager CreateLazyCallThroughManager(LazyEncodedString triple, ulong errorHandlerAddress = 0) - parameters: - - id: triple - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Triple to use for this factory - - id: errorHandlerAddress - type: System.UInt64 - description: Native JIT address of an error handler - return: - type: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - description: New call through manager - content.vb: Public Function CreateLazyCallThroughManager(triple As LazyEncodedString, errorHandlerAddress As ULong = 0) As LazyCallThroughManager - overload: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager* - nameWithType.vb: ExecutionSession.CreateLazyCallThroughManager(LazyEncodedString, ULong) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager(Ubiquity.NET.InteropHelpers.LazyEncodedString, ULong) - name.vb: CreateLazyCallThroughManager(LazyEncodedString, ULong) -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - id: GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - parent: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - langs: - - csharp - - vb - name: GetOrCreateBareDyLib(LazyEncodedString) - nameWithType: ExecutionSession.GetOrCreateBareDyLib(LazyEncodedString) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetOrCreateBareDyLib - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - startLine: 136 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets an existing or creates a new one - remarks: >- - This does not populate any symbols for the library when creating a new one. - - All configuration is the responsibility of the caller. - example: [] - syntax: - content: public JITDyLib GetOrCreateBareDyLib(LazyEncodedString name) - parameters: - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: name of the library - return: - type: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - description: The dynamic lib for the name - content.vb: Public Function GetOrCreateBareDyLib(name As LazyEncodedString) As JITDyLib - overload: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@,Ubiquity.NET.Llvm.ErrorInfo@) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@,Ubiquity.NET.Llvm.ErrorInfo@) - id: TryGetOrCreateDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@,Ubiquity.NET.Llvm.ErrorInfo@) - parent: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - langs: - - csharp - - vb - name: TryGetOrCreateDyLib(LazyEncodedString, out JITDyLib, out ErrorInfo) - nameWithType: ExecutionSession.TryGetOrCreateDyLib(LazyEncodedString, out JITDyLib, out ErrorInfo) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString, out Ubiquity.NET.Llvm.OrcJITv2.JITDyLib, out Ubiquity.NET.Llvm.ErrorInfo) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryGetOrCreateDyLib - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - startLine: 163 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Tries to get or create a in this session by name - remarks: >- -

This will add symbols for any attached platforms. If there are no attached platforms then this - - is the same as calling .

- -

name is a LazyEncodedString to allow for the possibility of retrieval of the name from - - native code and then providing it back again without going through any sort of marshal/unmarshal sequence. This - - allows for the most efficient use of data that is likely to come from the underlying native code. - -

- example: [] - syntax: - content: public bool TryGetOrCreateDyLib(LazyEncodedString name, out JITDyLib lib, out ErrorInfo errInfo) - parameters: - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: name of the library - - id: lib - type: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - description: Library or null if not found - - id: errInfo - type: Ubiquity.NET.Llvm.ErrorInfo - description: for any errors in creating the library if it didn't exist - return: - type: System.Boolean - description: true if successful and false if not - content.vb: Public Function TryGetOrCreateDyLib(name As LazyEncodedString, [lib] As JITDyLib, errInfo As ErrorInfo) As Boolean - overload: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib* - nameWithType.vb: ExecutionSession.TryGetOrCreateDyLib(LazyEncodedString, JITDyLib, ErrorInfo) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.Llvm.OrcJITv2.JITDyLib, Ubiquity.NET.Llvm.ErrorInfo) - name.vb: TryGetOrCreateDyLib(LazyEncodedString, JITDyLib, ErrorInfo) -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@) - id: TryGetDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib@) - parent: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - langs: - - csharp - - vb - name: TryGetDyLib(LazyEncodedString, out JITDyLib) - nameWithType: ExecutionSession.TryGetDyLib(LazyEncodedString, out JITDyLib) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString, out Ubiquity.NET.Llvm.OrcJITv2.JITDyLib) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryGetDyLib - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - startLine: 197 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Tries to get a named library from this session - example: [] - syntax: - content: public bool TryGetDyLib(LazyEncodedString name, out JITDyLib lib) - parameters: - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: name of the library - - id: lib - type: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - description: '[out] library if found or null' - return: - type: System.Boolean - description: true if found or false if not - content.vb: Public Function TryGetDyLib(name As LazyEncodedString, [lib] As JITDyLib) As Boolean - overload: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib* - nameWithType.vb: ExecutionSession.TryGetDyLib(LazyEncodedString, JITDyLib) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString, Ubiquity.NET.Llvm.OrcJITv2.JITDyLib) - name.vb: TryGetDyLib(LazyEncodedString, JITDyLib) -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern(System.String) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern(System.String) - id: Intern(System.String) - parent: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - langs: - - csharp - - vb - name: Intern(string) - nameWithType: ExecutionSession.Intern(string) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Intern - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ExecutionSession.cs - startLine: 219 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Interns a string in the pool - example: [] - syntax: - content: public SymbolStringPoolEntry Intern(string name) - parameters: - - id: name - type: System.String - description: NameField of the symbol to intern in the pool for this session - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: Entry to the string in the pool - content.vb: Public Function Intern(name As String) As SymbolStringPoolEntry - overload: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern* - nameWithType.vb: ExecutionSession.Intern(String) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern(String) - name.vb: Intern(String) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_SymbolStringPool - name: SymbolStringPool - nameWithType: ExecutionSession.SymbolStringPool - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.SymbolStringPool -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.html - name: SymbolStringPool - nameWithType: SymbolStringPool - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_CreateLazyCallThroughManager_Ubiquity_NET_InteropHelpers_LazyEncodedString_System_UInt64_ - name: CreateLazyCallThroughManager - nameWithType: ExecutionSession.CreateLazyCallThroughManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.CreateLazyCallThroughManager -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.html - name: LazyCallThroughManager - nameWithType: LazyCallThroughManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_GetOrCreateBareDyLib_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - name: GetOrCreateBareDyLib - nameWithType: ExecutionSession.GetOrCreateBareDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ErrorInfo.html - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_GetOrCreateBareDyLib_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - name: GetOrCreateBareDyLib(LazyEncodedString) - nameWithType: ExecutionSession.GetOrCreateBareDyLib(LazyEncodedString) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - name: GetOrCreateBareDyLib - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_GetOrCreateBareDyLib_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - - name: ( - - uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - name: LazyEncodedString - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.GetOrCreateBareDyLib(Ubiquity.NET.InteropHelpers.LazyEncodedString) - name: GetOrCreateBareDyLib - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_GetOrCreateBareDyLib_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - - name: ( - - uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - name: LazyEncodedString - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_TryGetOrCreateDyLib_Ubiquity_NET_InteropHelpers_LazyEncodedString_Ubiquity_NET_Llvm_OrcJITv2_JITDyLib__Ubiquity_NET_Llvm_ErrorInfo__ - name: TryGetOrCreateDyLib - nameWithType: ExecutionSession.TryGetOrCreateDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetOrCreateDyLib -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_TryGetDyLib_Ubiquity_NET_InteropHelpers_LazyEncodedString_Ubiquity_NET_Llvm_OrcJITv2_JITDyLib__ - name: TryGetDyLib - nameWithType: ExecutionSession.TryGetDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.TryGetDyLib -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html#Ubiquity_NET_Llvm_OrcJITv2_ExecutionSession_Intern_System_String_ - name: Intern - nameWithType: ExecutionSession.Intern - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.Intern -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml deleted file mode 100644 index 0f2149f18d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.yml +++ /dev/null @@ -1,221 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - id: GenericSymbolOption - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Callable - - Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Exported - - Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.MaterializationSideEffectsOnly - - Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.None - - Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Weak - langs: - - csharp - - vb - name: GenericSymbolOption - nameWithType: GenericSymbolOption - fullName: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GenericSymbolOption - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Generic linkage flags for a symbol definition - example: [] - syntax: - content: >- - [Flags] - - public enum GenericSymbolOption - content.vb: >- - - - Public Enum GenericSymbolOption - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.None - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.None - id: None - parent: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - langs: - - csharp - - vb - name: None - nameWithType: GenericSymbolOption.None - fullName: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Exported - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Exported - id: Exported - parent: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - langs: - - csharp - - vb - name: Exported - nameWithType: GenericSymbolOption.Exported - fullName: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Exported - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Exported - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - syntax: - content: Exported = 1 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Weak - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Weak - id: Weak - parent: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - langs: - - csharp - - vb - name: Weak - nameWithType: GenericSymbolOption.Weak - fullName: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Weak - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Weak - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - syntax: - content: Weak = 2 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Callable - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Callable - id: Callable - parent: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - langs: - - csharp - - vb - name: Callable - nameWithType: GenericSymbolOption.Callable - fullName: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.Callable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Callable - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - syntax: - content: Callable = 4 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.MaterializationSideEffectsOnly - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.MaterializationSideEffectsOnly - id: MaterializationSideEffectsOnly - parent: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - langs: - - csharp - - vb - name: MaterializationSideEffectsOnly - nameWithType: GenericSymbolOption.MaterializationSideEffectsOnly - fullName: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.MaterializationSideEffectsOnly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MaterializationSideEffectsOnly - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/Enumerations.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - syntax: - content: MaterializationSideEffectsOnly = 8 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.html - name: GenericSymbolOption - nameWithType: GenericSymbolOption - fullName: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.yml deleted file mode 100644 index 59d7ea43a8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.yml +++ /dev/null @@ -1,395 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - id: IrTransformLayer - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit(Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - - Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform(Ubiquity.NET.Llvm.OrcJITv2.TransformAction) - langs: - - csharp - - vb - name: IrTransformLayer - nameWithType: IrTransformLayer - fullName: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/IrTransformLayer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IrTransformLayer - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/IrTransformLayer.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: LLVM ORC JIT v2 IR Transform Layer - example: [] - syntax: - content: public readonly ref struct IrTransformLayer - content.vb: Public Structure IrTransformLayer - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit(Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit(Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - id: Emit(Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - parent: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - langs: - - csharp - - vb - name: Emit(MaterializationResponsibility, ThreadSafeModule) - nameWithType: IrTransformLayer.Emit(MaterializationResponsibility, ThreadSafeModule) - fullName: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit(Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility, Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/IrTransformLayer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Emit - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/IrTransformLayer.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Emit a module - example: [] - syntax: - content: public void Emit(MaterializationResponsibility r, ThreadSafeModule tsm) - parameters: - - id: r - type: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - description: Responsibility provided in materialization call back - - id: tsm - type: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - description: Thread safe module to emit - content.vb: Public Sub Emit(r As MaterializationResponsibility, tsm As ThreadSafeModule) - overload: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit* -- uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform(Ubiquity.NET.Llvm.OrcJITv2.TransformAction) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform(Ubiquity.NET.Llvm.OrcJITv2.TransformAction) - id: SetTransform(Ubiquity.NET.Llvm.OrcJITv2.TransformAction) - parent: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - langs: - - csharp - - vb - name: SetTransform(TransformAction) - nameWithType: IrTransformLayer.SetTransform(TransformAction) - fullName: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform(Ubiquity.NET.Llvm.OrcJITv2.TransformAction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/IrTransformLayer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetTransform - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/IrTransformLayer.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Sets the transform function for the transform layer - example: [] - syntax: - content: public void SetTransform(TransformAction transformAction) - parameters: - - id: transformAction - type: Ubiquity.NET.Llvm.OrcJITv2.TransformAction - description: Action to perform that transforms modules materialized in a JIT - content.vb: Public Sub SetTransform(transformAction As TransformAction) - overload: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform* -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit - href: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.html#Ubiquity_NET_Llvm_OrcJITv2_IrTransformLayer_Emit_Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_ - name: Emit - nameWithType: IrTransformLayer.Emit - fullName: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.Emit -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html - name: MaterializationResponsibility - nameWithType: MaterializationResponsibility - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - name: ThreadSafeModule - nameWithType: ThreadSafeModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule -- uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform - href: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.html#Ubiquity_NET_Llvm_OrcJITv2_IrTransformLayer_SetTransform_Ubiquity_NET_Llvm_OrcJITv2_TransformAction_ - name: SetTransform - nameWithType: IrTransformLayer.SetTransform - fullName: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.SetTransform -- uid: Ubiquity.NET.Llvm.OrcJITv2.TransformAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.TransformAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.TransformAction.html - name: TransformAction - nameWithType: TransformAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.TransformAction diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.yml deleted file mode 100644 index d0f7200041..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.yml +++ /dev/null @@ -1,429 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - id: JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker - - Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define(Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit) - langs: - - csharp - - vb - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/JITDyLib.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: JITDyLib - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/JITDyLib.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: struct for an LLVM ORC JIT v2 Dynamic Library - example: [] - syntax: - content: public readonly ref struct JITDyLib - content.vb: Public Structure JITDyLib - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define(Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define(Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit) - id: Define(Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit) - parent: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - langs: - - csharp - - vb - name: Define(MaterializationUnit) - nameWithType: JITDyLib.Define(MaterializationUnit) - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define(Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/JITDyLib.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Define - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/JITDyLib.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Defines (Adds) the materialization unit to this library - remarks: >- - On success, the materializationUnit is no longer valid. - - Ownership is transferred to the JIT. On failure, an exception is thrown - - but ownership remains with the caller. The invalidation leaves the - - call as a NOP and any operations on the unit throw an . - example: [] - syntax: - content: public void Define(MaterializationUnit materializationUnit) - parameters: - - id: materializationUnit - type: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - description: Unit to add - content.vb: Public Sub Define(materializationUnit As MaterializationUnit) - overload: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define* -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker - id: CreateResourceTracker - parent: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - langs: - - csharp - - vb - name: CreateResourceTracker() - nameWithType: JITDyLib.CreateResourceTracker() - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/JITDyLib.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateResourceTracker - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/JITDyLib.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Creates a associated with this library - example: [] - syntax: - content: public ResourceTracker CreateResourceTracker() - return: - type: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - description: New resource tracker - content.vb: Public Function CreateResourceTracker() As ResourceTracker - overload: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker* -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: System.ObjectDisposedException - commentId: T:System.ObjectDisposedException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.objectdisposedexception - name: ObjectDisposedException - nameWithType: ObjectDisposedException - fullName: System.ObjectDisposedException -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html#Ubiquity_NET_Llvm_OrcJITv2_JITDyLib_Define_Ubiquity_NET_Llvm_OrcJITv2_MaterializationUnit_ - name: Define - nameWithType: JITDyLib.Define - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.Define -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html - name: MaterializationUnit - nameWithType: MaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html - name: ResourceTracker - nameWithType: ResourceTracker - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html#Ubiquity_NET_Llvm_OrcJITv2_JITDyLib_CreateResourceTracker - name: CreateResourceTracker - nameWithType: JITDyLib.CreateResourceTracker - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.CreateResourceTracker diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.yml deleted file mode 100644 index 57b8d809d9..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.yml +++ /dev/null @@ -1,360 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - id: LazyCallThroughManager - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose - langs: - - csharp - - vb - name: LazyCallThroughManager - nameWithType: LazyCallThroughManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LazyCallThroughManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LazyCallThroughManager - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LazyCallThroughManager.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: LLVM ORC JIT v2 Lazy Call Through Manager - example: [] - syntax: - content: 'public sealed class LazyCallThroughManager : IDisposable' - content.vb: Public NotInheritable Class LazyCallThroughManager Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - langs: - - csharp - - vb - name: Dispose() - nameWithType: LazyCallThroughManager.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LazyCallThroughManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LazyCallThroughManager.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose* - implements: - - System.IDisposable.Dispose -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.html#Ubiquity_NET_Llvm_OrcJITv2_LazyCallThroughManager_Dispose - name: Dispose - nameWithType: LazyCallThroughManager.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.yml deleted file mode 100644 index b7937d8be7..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.yml +++ /dev/null @@ -1,635 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - id: LazyReExportsMaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.#ctor(Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager,Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry}}) - langs: - - csharp - - vb - name: LazyReExportsMaterializationUnit - nameWithType: LazyReExportsMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LazyReExportsMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LazyReExportsMaterializationUnit - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LazyReExportsMaterializationUnit.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: LLVM ORC JIT v2 Lazy Re-exports Materialization unit - example: [] - syntax: - content: 'public class LazyReExportsMaterializationUnit : MaterializationUnit, IDisposable' - content.vb: Public Class LazyReExportsMaterializationUnit Inherits MaterializationUnit Implements IDisposable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DisposableObject - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - implements: - - System.IDisposable - inheritedMembers: - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - - Ubiquity.NET.Llvm.DisposableObject.Dispose - - Ubiquity.NET.Llvm.DisposableObject.IsDisposed - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.#ctor(Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager,Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry}}) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.#ctor(Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager,Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry}}) - id: '#ctor(Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager,Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager,Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry}})' - parent: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - langs: - - csharp - - vb - name: LazyReExportsMaterializationUnit(LazyCallThroughManager, LocalIndirectStubsManager, JITDyLib, IReadOnlyCollection>) - nameWithType: LazyReExportsMaterializationUnit.LazyReExportsMaterializationUnit(LazyCallThroughManager, LocalIndirectStubsManager, JITDyLib, IReadOnlyCollection>) - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.LazyReExportsMaterializationUnit(Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager, Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager, Ubiquity.NET.Llvm.OrcJITv2.JITDyLib, System.Collections.Generic.IReadOnlyCollection>) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LazyReExportsMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LazyReExportsMaterializationUnit.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public LazyReExportsMaterializationUnit(LazyCallThroughManager callThruMgr, LocalIndirectStubsManager stubsMgr, JITDyLib srcLib, IReadOnlyCollection> symbols) - parameters: - - id: callThruMgr - type: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - description: Call through manager for this unit - - id: stubsMgr - type: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - description: Stub manager for this unit - - id: srcLib - type: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - description: Src library for this unit - - id: symbols - type: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry}} - description: symbols for this unit - content.vb: Public Sub New(callThruMgr As LazyCallThroughManager, stubsMgr As LocalIndirectStubsManager, srcLib As JITDyLib, symbols As IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolAliasMapEntry))) - overload: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.#ctor* - nameWithType.vb: LazyReExportsMaterializationUnit.New(LazyCallThroughManager, LocalIndirectStubsManager, JITDyLib, IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolAliasMapEntry))) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.New(Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager, Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager, Ubiquity.NET.Llvm.OrcJITv2.JITDyLib, System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry))) - name.vb: New(LazyCallThroughManager, LocalIndirectStubsManager, JITDyLib, IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolAliasMapEntry))) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DisposableObject - commentId: T:Ubiquity.NET.Llvm.DisposableObject - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisposableObject.html - name: DisposableObject - nameWithType: DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html - name: MaterializationUnit - nameWithType: MaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - isExternal: true - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationUnit_Dispose_System_Boolean_ - name: Dispose(bool) - nameWithType: MaterializationUnit.Dispose(bool) - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(bool) - nameWithType.vb: MaterializationUnit.Dispose(Boolean) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(Boolean) - name.vb: Dispose(Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationUnit_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationUnit_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - name: Dispose() - nameWithType: DisposableObject.Dispose() - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.IsDisposed - commentId: P:Ubiquity.NET.Llvm.DisposableObject.IsDisposed - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_IsDisposed - name: IsDisposed - nameWithType: DisposableObject.IsDisposed - fullName: Ubiquity.NET.Llvm.DisposableObject.IsDisposed -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - href: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.html - name: LazyReExportsMaterializationUnit - nameWithType: LazyReExportsMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_LazyReExportsMaterializationUnit__ctor_Ubiquity_NET_Llvm_OrcJITv2_LazyCallThroughManager_Ubiquity_NET_Llvm_OrcJITv2_LocalIndirectStubsManager_Ubiquity_NET_Llvm_OrcJITv2_JITDyLib_System_Collections_Generic_IReadOnlyCollection_System_Collections_Generic_KeyValuePair_Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Ubiquity_NET_Llvm_OrcJITv2_SymbolAliasMapEntry___ - name: LazyReExportsMaterializationUnit - nameWithType: LazyReExportsMaterializationUnit.LazyReExportsMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.LazyReExportsMaterializationUnit - nameWithType.vb: LazyReExportsMaterializationUnit.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.New - name.vb: New -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.html - name: LazyCallThroughManager - nameWithType: LazyCallThroughManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager -- uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.html - name: LocalIndirectStubsManager - nameWithType: LocalIndirectStubsManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib -- uid: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry}} - commentId: T:System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection> - nameWithType: IReadOnlyCollection> - fullName: System.Collections.Generic.IReadOnlyCollection> - nameWithType.vb: IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolAliasMapEntry)) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry)) - name.vb: IReadOnlyCollection(Of KeyValuePair(Of SymbolStringPoolEntry, SymbolAliasMapEntry)) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: < - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - name: SymbolAliasMapEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - name: SymbolAliasMapEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html - - name: ) - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml deleted file mode 100644 index e844af92c1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LlJIT.yml +++ /dev/null @@ -1,1036 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LlJIT - id: LlJIT - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.#ctor - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose(System.Boolean) - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup(Ubiquity.NET.InteropHelpers.LazyEncodedString) - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern(Ubiquity.NET.InteropHelpers.LazyEncodedString) - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString - langs: - - csharp - - vb - name: LlJIT - nameWithType: LlJIT - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LlJIT - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: ORC v2 LLJIT instance - example: [] - syntax: - content: 'public class LlJIT : DisposableObject, IDisposable' - content.vb: Public Class LlJIT Inherits DisposableObject Implements IDisposable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DisposableObject - implements: - - System.IDisposable - inheritedMembers: - - Ubiquity.NET.Llvm.DisposableObject.Dispose - - Ubiquity.NET.Llvm.DisposableObject.IsDisposed - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.#ctor - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.#ctor - id: '#ctor' - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: LlJIT() - nameWithType: LlJIT.LlJIT() - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.LlJIT() - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public LlJIT() - content.vb: Public Sub New() - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.#ctor* - nameWithType.vb: LlJIT.New() - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.New() - name.vb: New() -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib - id: MainLib - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: MainLib - nameWithType: LlJIT.MainLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MainLib - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the main library for this JIT instance - example: [] - syntax: - content: public JITDyLib MainLib { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - content.vb: Public ReadOnly Property MainLib As JITDyLib - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib* -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString - id: DataLayoutString - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: DataLayoutString - nameWithType: LlJIT.DataLayoutString - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DataLayoutString - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the data layout string for this JIT - example: [] - syntax: - content: public LazyEncodedString DataLayoutString { get; } - parameters: [] - return: - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - content.vb: Public ReadOnly Property DataLayoutString As LazyEncodedString - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString* -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString - id: TripleString - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: TripleString - nameWithType: LlJIT.TripleString - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TripleString - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets a string representation of the target triple for this JIT - example: [] - syntax: - content: public LazyEncodedString TripleString { get; } - parameters: [] - return: - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - content.vb: Public ReadOnly Property TripleString As LazyEncodedString - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString* -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup(Ubiquity.NET.InteropHelpers.LazyEncodedString) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup(Ubiquity.NET.InteropHelpers.LazyEncodedString) - id: Lookup(Ubiquity.NET.InteropHelpers.LazyEncodedString) - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: Lookup(LazyEncodedString) - nameWithType: LlJIT.Lookup(LazyEncodedString) - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup(Ubiquity.NET.InteropHelpers.LazyEncodedString) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Lookup - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Looks up the native address of a symbol - example: [] - syntax: - content: public ulong Lookup(LazyEncodedString name) - parameters: - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: NameField of the symbol to find the address of - return: - type: System.UInt64 - description: Address of the symbol - content.vb: Public Function Lookup(name As LazyEncodedString) As ULong - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup* - exceptions: - - type: Ubiquity.NET.Llvm.Interop.LlvmException - commentId: T:Ubiquity.NET.Llvm.Interop.LlvmException - description: Error occurred with lookup [Most likely the symbol is not found] -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - id: AddModule(Ubiquity.NET.Llvm.OrcJITv2.JITDyLib,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: AddModule(JITDyLib, ThreadSafeModule) - nameWithType: LlJIT.AddModule(JITDyLib, ThreadSafeModule) - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.JITDyLib, Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddModule - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 89 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Adds a module to the JIT - remarks: >- - This function has "move" semantics in that the JIT takes ownership of the - - input module and it is no longer useable (Generates ) - - for any use other than Dispose(). This allows normal clean up in the event of an exception - - to occur. - -
important

- - Transfer of ownership does NOT occur in the face of an error (exception)! However the - - method is idempotent and will NOT throw an exception - - if disposed so it is safe to declare instances with a "using". - -

- example: [] - syntax: - content: public void AddModule(JITDyLib lib, ThreadSafeModule module) - parameters: - - id: lib - type: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - description: Library to add the module to in this JIT - - id: module - type: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - description: Module to add - content.vb: Public Sub AddModule([lib] As JITDyLib, [module] As ThreadSafeModule) - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule* -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - id: AddModule(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker,Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: AddModule(ResourceTracker, ThreadSafeModule) - nameWithType: LlJIT.AddModule(ResourceTracker, ThreadSafeModule) - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker, Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddModule - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 112 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Adds a module to the JIT - remarks: >- - This function has "move" semantics in that the JIT takes ownership of the - - input module and it is no longer useable (Generates ) - - for any use other than Dispose(). This allows normal clean up in the event of an exception - - to occur. - -
important

- - Transfer of ownership does NOT occur in the face of an error (exception)! However the - - method is idempotent and will NOT throw an exception - - if disposed so it is safe to declare instances with a "using". - -

- example: [] - syntax: - content: public void AddModule(ResourceTracker tracker, ThreadSafeModule module) - parameters: - - id: tracker - type: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - description: Resource tracker to manage the module - - id: module - type: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - description: Module to add - content.vb: Public Sub AddModule(tracker As ResourceTracker, [module] As ThreadSafeModule) - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule* -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern(Ubiquity.NET.InteropHelpers.LazyEncodedString) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern(Ubiquity.NET.InteropHelpers.LazyEncodedString) - id: MangleAndIntern(Ubiquity.NET.InteropHelpers.LazyEncodedString) - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: MangleAndIntern(LazyEncodedString) - nameWithType: LlJIT.MangleAndIntern(LazyEncodedString) - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern(Ubiquity.NET.InteropHelpers.LazyEncodedString) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MangleAndIntern - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 125 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Mangles and interns a symbol in the JIT's symbol pool - example: [] - syntax: - content: public SymbolStringPoolEntry MangleAndIntern(LazyEncodedString name) - parameters: - - id: name - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Symbol name to add - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: Entry to the string pool for the symbol - content.vb: Public Function MangleAndIntern(name As LazyEncodedString) As SymbolStringPoolEntry - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern* -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer - id: TransformLayer - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: TransformLayer - nameWithType: LlJIT.TransformLayer - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TransformLayer - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 137 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the IR transform layer for this JIT - example: [] - syntax: - content: public IrTransformLayer TransformLayer { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - content.vb: Public ReadOnly Property TransformLayer As IrTransformLayer - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer* -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session - id: Session - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: Session - nameWithType: LlJIT.Session - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Session - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 140 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the Execution session for this JIT - example: [] - syntax: - content: public ExecutionSession Session { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - content.vb: Public ReadOnly Property Session As ExecutionSession - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session* -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose(System.Boolean) - id: Dispose(System.Boolean) - parent: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - langs: - - csharp - - vb - name: Dispose(bool) - nameWithType: LlJIT.Dispose(bool) - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose(bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LlJIT.cs - startLine: 143 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Abstract method that is implemented by derived types to perform the dispose operation - remarks: >- - This is guaranteed to only be called if returns false - - so the implementation should only be concerned with the actual release of resources. If disposing - - is true then the implementation should release managed and unmanaged resources, otherwise it should - - only release the unmanaged resources - example: [] - syntax: - content: protected override void Dispose(bool disposing) - parameters: - - id: disposing - type: System.Boolean - description: Indicates if this is a dispose or finalize operation - content.vb: Protected Overrides Sub Dispose(disposing As Boolean) - overridden: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - overload: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose* - nameWithType.vb: LlJIT.Dispose(Boolean) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose(Boolean) - name.vb: Dispose(Boolean) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DisposableObject - commentId: T:Ubiquity.NET.Llvm.DisposableObject - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisposableObject.html - name: DisposableObject - nameWithType: DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - name: Dispose() - nameWithType: DisposableObject.Dispose() - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.IsDisposed - commentId: P:Ubiquity.NET.Llvm.DisposableObject.IsDisposed - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_IsDisposed - name: IsDisposed - nameWithType: DisposableObject.IsDisposed - fullName: Ubiquity.NET.Llvm.DisposableObject.IsDisposed -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LlJIT - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html - name: LlJIT - nameWithType: LlJIT - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT__ctor - name: LlJIT - nameWithType: LlJIT.LlJIT - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.LlJIT - nameWithType.vb: LlJIT.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.New - name.vb: New -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_MainLib - name: MainLib - nameWithType: LlJIT.MainLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MainLib -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_DataLayoutString - name: DataLayoutString - nameWithType: LlJIT.DataLayoutString - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.DataLayoutString -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_TripleString - name: TripleString - nameWithType: LlJIT.TripleString - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TripleString -- uid: Ubiquity.NET.Llvm.Interop.LlvmException - commentId: T:Ubiquity.NET.Llvm.Interop.LlvmException - name: LlvmException - nameWithType: LlvmException - fullName: Ubiquity.NET.Llvm.Interop.LlvmException -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_Lookup_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - name: Lookup - nameWithType: LlJIT.Lookup - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Lookup -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: System.ObjectDisposedException - commentId: T:System.ObjectDisposedException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.objectdisposedexception - name: ObjectDisposedException - nameWithType: ObjectDisposedException - fullName: System.ObjectDisposedException -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_Dispose - name: Dispose() - nameWithType: ThreadSafeModule.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_AddModule_Ubiquity_NET_Llvm_OrcJITv2_JITDyLib_Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_ - name: AddModule - nameWithType: LlJIT.AddModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.AddModule -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - name: ThreadSafeModule - nameWithType: ThreadSafeModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html - name: ResourceTracker - nameWithType: ResourceTracker - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_MangleAndIntern_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - name: MangleAndIntern - nameWithType: LlJIT.MangleAndIntern - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.MangleAndIntern -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_TransformLayer - name: TransformLayer - nameWithType: LlJIT.TransformLayer - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.TransformLayer -- uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.html - name: IrTransformLayer - nameWithType: IrTransformLayer - fullName: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_Session - name: Session - nameWithType: LlJIT.Session - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Session -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html - name: ExecutionSession - nameWithType: ExecutionSession - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - parent: Ubiquity.NET.Llvm.DisposableObject - isExternal: true - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - name: Dispose(bool) - nameWithType: DisposableObject.Dispose(bool) - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose(bool) - nameWithType.vb: DisposableObject.Dispose(Boolean) - fullName.vb: Ubiquity.NET.Llvm.DisposableObject.Dispose(Boolean) - name.vb: Dispose(Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html#Ubiquity_NET_Llvm_OrcJITv2_LlJIT_Dispose_System_Boolean_ - name: Dispose - nameWithType: LlJIT.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.Dispose -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.yml deleted file mode 100644 index 208e1b90ea..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.yml +++ /dev/null @@ -1,441 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - id: LocalIndirectStubsManager - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString) - - Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose - langs: - - csharp - - vb - name: LocalIndirectStubsManager - nameWithType: LocalIndirectStubsManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LocalIndirectStubsManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LocalIndirectStubsManager - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LocalIndirectStubsManager.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: LLVM ORC JIT v2 Local Indirect Stubs Manager - example: [] - syntax: - content: 'public sealed class LocalIndirectStubsManager : IDisposable' - content.vb: Public NotInheritable Class LocalIndirectStubsManager Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString) - id: '#ctor(Ubiquity.NET.InteropHelpers.LazyEncodedString)' - parent: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - langs: - - csharp - - vb - name: LocalIndirectStubsManager(LazyEncodedString) - nameWithType: LocalIndirectStubsManager.LocalIndirectStubsManager(LazyEncodedString) - fullName: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.LocalIndirectStubsManager(Ubiquity.NET.InteropHelpers.LazyEncodedString) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LocalIndirectStubsManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LocalIndirectStubsManager.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public LocalIndirectStubsManager(LazyEncodedString triple) - parameters: - - id: triple - type: Ubiquity.NET.InteropHelpers.LazyEncodedString - description: Triple string for the manager - content.vb: Public Sub New(triple As LazyEncodedString) - overload: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.#ctor* - nameWithType.vb: LocalIndirectStubsManager.New(LazyEncodedString) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.New(Ubiquity.NET.InteropHelpers.LazyEncodedString) - name.vb: New(LazyEncodedString) -- uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - langs: - - csharp - - vb - name: Dispose() - nameWithType: LocalIndirectStubsManager.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/LocalIndirectStubsManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/LocalIndirectStubsManager.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose* - implements: - - System.IDisposable.Dispose -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.html - name: LocalIndirectStubsManager - nameWithType: LocalIndirectStubsManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager -- uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.html#Ubiquity_NET_Llvm_OrcJITv2_LocalIndirectStubsManager__ctor_Ubiquity_NET_InteropHelpers_LazyEncodedString_ - name: LocalIndirectStubsManager - nameWithType: LocalIndirectStubsManager.LocalIndirectStubsManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.LocalIndirectStubsManager - nameWithType.vb: LocalIndirectStubsManager.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.New - name.vb: New -- uid: Ubiquity.NET.InteropHelpers.LazyEncodedString - commentId: T:Ubiquity.NET.InteropHelpers.LazyEncodedString - parent: Ubiquity.NET.InteropHelpers - name: LazyEncodedString - nameWithType: LazyEncodedString - fullName: Ubiquity.NET.InteropHelpers.LazyEncodedString -- uid: Ubiquity.NET.InteropHelpers - commentId: N:Ubiquity.NET.InteropHelpers - name: Ubiquity.NET.InteropHelpers - nameWithType: Ubiquity.NET.InteropHelpers - fullName: Ubiquity.NET.InteropHelpers - spec.csharp: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers - spec.vb: - - uid: Ubiquity - name: Ubiquity - - name: . - - uid: Ubiquity.NET - name: NET - - name: . - - uid: Ubiquity.NET.InteropHelpers - name: InteropHelpers -- uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.html#Ubiquity_NET_Llvm_OrcJITv2_LocalIndirectStubsManager_Dispose - name: Dispose - nameWithType: LocalIndirectStubsManager.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction.yml deleted file mode 100644 index 23d4ffed5b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction.yml +++ /dev/null @@ -1,125 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - id: MaterializationAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: [] - langs: - - csharp - - vb - name: MaterializationAction - nameWithType: MaterializationAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - type: Delegate - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MaterializationAction - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/CustomMaterializationUnit.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Delegate to perform action on Materialization - remarks: >- - This must be a "custom" delegate as the is a - - ref type that is NOT allowed as a type parameter for . - example: [] - syntax: - content: public delegate void MaterializationAction(MaterializationResponsibility r) - parameters: - - id: r - type: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - description: that serves as the context for this materialization - content.vb: Public Delegate Sub MaterializationAction(r As MaterializationResponsibility) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html - name: MaterializationResponsibility - nameWithType: MaterializationResponsibility - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib -- uid: System.Action`2 - commentId: T:System.Action`2 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.action-2 - name: Action - nameWithType: Action - fullName: System.Action - nameWithType.vb: Action(Of T1, T2) - fullName.vb: System.Action(Of T1, T2) - name.vb: Action(Of T1, T2) - spec.csharp: - - uid: System.Action`2 - name: Action - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.action-2 - - name: < - - name: T1 - - name: ',' - - name: " " - - name: T2 - - name: '>' - spec.vb: - - uid: System.Action`2 - name: Action - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.action-2 - - name: ( - - name: Of - - name: " " - - name: T1 - - name: ',' - - name: " " - - name: T2 - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml deleted file mode 100644 index ef5734de6d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.yml +++ /dev/null @@ -1,595 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - id: MaterializationResponsibility - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed - langs: - - csharp - - vb - name: MaterializationResponsibility - nameWithType: MaterializationResponsibility - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MaterializationResponsibility - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: LLVM ORC JIT v2 MaterializationResponsibility - example: [] - syntax: - content: public readonly ref struct MaterializationResponsibility - content.vb: Public Structure MaterializationResponsibility - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - langs: - - csharp - - vb - name: IsDisposed - nameWithType: MaterializationResponsibility.IsDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets a value indicating whether this instance is disposed - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed* -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed - id: ThrowIfIDisposed - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - langs: - - csharp - - vb - name: ThrowIfIDisposed() - nameWithType: MaterializationResponsibility.ThrowIfIDisposed() - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ThrowIfIDisposed - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Throws an if is true - example: [] - syntax: - content: public void ThrowIfIDisposed() - content.vb: Public Sub ThrowIfIDisposed() - overload: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed* -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols - id: GetRequestedSymbols - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - langs: - - csharp - - vb - name: GetRequestedSymbols() - nameWithType: MaterializationResponsibility.GetRequestedSymbols() - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetRequestedSymbols - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the symbols associated with this request - example: [] - syntax: - content: public SymbolStringPoolEntryList GetRequestedSymbols() - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - description: Array of symbols - content.vb: Public Function GetRequestedSymbols() As SymbolStringPoolEntryList - overload: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols* -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail - id: Fail - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - langs: - - csharp - - vb - name: Fail() - nameWithType: MaterializationResponsibility.Fail() - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Fail - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Indicates to the JIT that this materialization unit has failed - example: [] - syntax: - content: public void Fail() - content.vb: Public Sub Fail() - overload: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail* -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - langs: - - csharp - - vb - name: Dispose() - nameWithType: MaterializationResponsibility.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Disposes of this instance - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose* -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib - id: TargetDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - langs: - - csharp - - vb - name: TargetDyLib - nameWithType: MaterializationResponsibility.TargetDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetDyLib - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the library associated with thee current materialization - example: [] - syntax: - content: public JITDyLib TargetDyLib { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - content.vb: Public ReadOnly Property TargetDyLib As JITDyLib - overload: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib* -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session - id: Session - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - langs: - - csharp - - vb - name: Session - nameWithType: MaterializationResponsibility.Session - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Session - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationResponsibility.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the session associated with thee current materialization - example: [] - syntax: - content: public ExecutionSession Session { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - content.vb: Public ReadOnly Property Session As ExecutionSession - overload: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session* -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_IsDisposed - name: IsDisposed - nameWithType: MaterializationResponsibility.IsDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.ObjectDisposedException - commentId: T:System.ObjectDisposedException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.objectdisposedexception - name: ObjectDisposedException - nameWithType: ObjectDisposedException - fullName: System.ObjectDisposedException -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_IsDisposed - name: IsDisposed - nameWithType: MaterializationResponsibility.IsDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.IsDisposed -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_ThrowIfIDisposed - name: ThrowIfIDisposed - nameWithType: MaterializationResponsibility.ThrowIfIDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.ThrowIfIDisposed -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_GetRequestedSymbols - name: GetRequestedSymbols - nameWithType: MaterializationResponsibility.GetRequestedSymbols - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.GetRequestedSymbols -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.html - name: SymbolStringPoolEntryList - nameWithType: SymbolStringPoolEntryList - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_Fail - name: Fail - nameWithType: MaterializationResponsibility.Fail - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Fail -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_Dispose - name: Dispose - nameWithType: MaterializationResponsibility.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Dispose -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_TargetDyLib - name: TargetDyLib - nameWithType: MaterializationResponsibility.TargetDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.TargetDyLib -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationResponsibility_Session - name: Session - nameWithType: MaterializationResponsibility.Session - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.Session -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html - name: ExecutionSession - nameWithType: ExecutionSession - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.yml deleted file mode 100644 index cc0b2458d5..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.yml +++ /dev/null @@ -1,489 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - id: MaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - langs: - - csharp - - vb - name: MaterializationUnit - nameWithType: MaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MaterializationUnit - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationUnit.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Abstract base class for an LLVM ORC JIT v2 Materialization Unit - example: [] - syntax: - content: 'public abstract class MaterializationUnit : DisposableObject, IDisposable' - content.vb: Public MustInherit Class MaterializationUnit Inherits DisposableObject Implements IDisposable - inheritance: - - System.Object - - Ubiquity.NET.Llvm.DisposableObject - derivedClasses: - - Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - - Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - - Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - implements: - - System.IDisposable - inheritedMembers: - - Ubiquity.NET.Llvm.DisposableObject.Dispose - - Ubiquity.NET.Llvm.DisposableObject.IsDisposed - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(System.Boolean) - id: Dispose(System.Boolean) - parent: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - langs: - - csharp - - vb - name: Dispose(bool) - nameWithType: MaterializationUnit.Dispose(bool) - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationUnit.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/MaterializationUnit.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Abstract method that is implemented by derived types to perform the dispose operation - remarks: >- - This is guaranteed to only be called if returns false - - so the implementation should only be concerned with the actual release of resources. If disposing - - is true then the implementation should release managed and unmanaged resources, otherwise it should - - only release the unmanaged resources - example: [] - syntax: - content: protected override void Dispose(bool disposing) - parameters: - - id: disposing - type: System.Boolean - description: Indicates if this is a dispose or finalize operation - content.vb: Protected Overrides Sub Dispose(disposing As Boolean) - overridden: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - overload: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose* - nameWithType.vb: MaterializationUnit.Dispose(Boolean) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose(Boolean) - name.vb: Dispose(Boolean) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.DisposableObject - commentId: T:Ubiquity.NET.Llvm.DisposableObject - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisposableObject.html - name: DisposableObject - nameWithType: DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - name: Dispose() - nameWithType: DisposableObject.Dispose() - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.DisposableObject.IsDisposed - commentId: P:Ubiquity.NET.Llvm.DisposableObject.IsDisposed - parent: Ubiquity.NET.Llvm.DisposableObject - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_IsDisposed - name: IsDisposed - nameWithType: DisposableObject.IsDisposed - fullName: Ubiquity.NET.Llvm.DisposableObject.IsDisposed -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - commentId: M:Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - parent: Ubiquity.NET.Llvm.DisposableObject - isExternal: true - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - name: Dispose(bool) - nameWithType: DisposableObject.Dispose(bool) - fullName: Ubiquity.NET.Llvm.DisposableObject.Dispose(bool) - nameWithType.vb: DisposableObject.Dispose(Boolean) - fullName.vb: Ubiquity.NET.Llvm.DisposableObject.Dispose(Boolean) - name.vb: Dispose(Boolean) - spec.csharp: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: bool - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.DisposableObject.Dispose(System.Boolean) - name: Dispose - href: Ubiquity.NET.Llvm.DisposableObject.html#Ubiquity_NET_Llvm_DisposableObject_Dispose_System_Boolean_ - - name: ( - - uid: System.Boolean - name: Boolean - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html#Ubiquity_NET_Llvm_OrcJITv2_MaterializationUnit_Dispose_System_Boolean_ - name: Dispose - nameWithType: MaterializationUnit.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.Dispose -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml deleted file mode 100644 index 5a48e62822..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.yml +++ /dev/null @@ -1,532 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - id: ResourceTracker - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose - - Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed - - Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker) - - Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll - - Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed - langs: - - csharp - - vb - name: ResourceTracker - nameWithType: ResourceTracker - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ResourceTracker - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: LLVM ORC JIT v2 Resource tracker - example: [] - syntax: - content: 'public sealed class ResourceTracker : IDisposable' - content.vb: Public NotInheritable Class ResourceTracker Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - langs: - - csharp - - vb - name: IsDisposed - nameWithType: ResourceTracker.IsDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets a value indicating whether this instance is disposed or not - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed - id: ThrowIfDisposed - parent: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - langs: - - csharp - - vb - name: ThrowIfDisposed() - nameWithType: ResourceTracker.ThrowIfDisposed() - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ThrowIfDisposed - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Throws an if this instance is already disposed - example: [] - syntax: - content: public void ThrowIfDisposed() - content.vb: Public Sub ThrowIfDisposed() - overload: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker) - id: MoveTo(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker) - parent: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - langs: - - csharp - - vb - name: MoveTo(ResourceTracker) - nameWithType: ResourceTracker.MoveTo(ResourceTracker) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo(Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MoveTo - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Moves all resources associated with this tracker to other - example: [] - syntax: - content: public void MoveTo(ResourceTracker other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - description: Destination tracker to receive all the resources - content.vb: Public Sub MoveTo(other As ResourceTracker) - overload: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll - id: RemoveAll - parent: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - langs: - - csharp - - vb - name: RemoveAll() - nameWithType: ResourceTracker.RemoveAll() - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAll - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Removes all resources managed by this tracker - example: [] - syntax: - content: public void RemoveAll() - content.vb: Public Sub RemoveAll() - overload: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - langs: - - csharp - - vb - name: Dispose() - nameWithType: ResourceTracker.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ResourceTracker.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose* - implements: - - System.IDisposable.Dispose -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html#Ubiquity_NET_Llvm_OrcJITv2_ResourceTracker_IsDisposed - name: IsDisposed - nameWithType: ResourceTracker.IsDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.IsDisposed -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.ObjectDisposedException - commentId: T:System.ObjectDisposedException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.objectdisposedexception - name: ObjectDisposedException - nameWithType: ObjectDisposedException - fullName: System.ObjectDisposedException -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html#Ubiquity_NET_Llvm_OrcJITv2_ResourceTracker_ThrowIfDisposed - name: ThrowIfDisposed - nameWithType: ResourceTracker.ThrowIfDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.ThrowIfDisposed -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html#Ubiquity_NET_Llvm_OrcJITv2_ResourceTracker_MoveTo_Ubiquity_NET_Llvm_OrcJITv2_ResourceTracker_ - name: MoveTo - nameWithType: ResourceTracker.MoveTo - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.MoveTo -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html - name: ResourceTracker - nameWithType: ResourceTracker - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html#Ubiquity_NET_Llvm_OrcJITv2_ResourceTracker_RemoveAll - name: RemoveAll - nameWithType: ResourceTracker.RemoveAll - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.RemoveAll -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html#Ubiquity_NET_Llvm_OrcJITv2_ResourceTracker_Dispose - name: Dispose - nameWithType: ResourceTracker.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.yml deleted file mode 100644 index 91295b69a1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.yml +++ /dev/null @@ -1,589 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - id: SymbolAliasMapEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - - Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose - - Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags - - Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName - langs: - - csharp - - vb - name: SymbolAliasMapEntry - nameWithType: SymbolAliasMapEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SymbolAliasMapEntry - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Entry in a symbol alias collection - example: [] - syntax: - content: 'public readonly record struct SymbolAliasMapEntry : IDisposable, IEquatable' - content.vb: Public Structure SymbolAliasMapEntry Implements IDisposable, IEquatable(Of SymbolAliasMapEntry) - implements: - - System.IDisposable - - System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry} - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - id: '#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry,Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags)' - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - langs: - - csharp - - vb - name: SymbolAliasMapEntry(SymbolStringPoolEntry, SymbolFlags) - nameWithType: SymbolAliasMapEntry.SymbolAliasMapEntry(SymbolStringPoolEntry, SymbolFlags) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.SymbolAliasMapEntry(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public SymbolAliasMapEntry(SymbolStringPoolEntry name, SymbolFlags flags) - parameters: - - id: name - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: NameField of the symbol - - id: flags - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - description: FlagsField for this symbol - content.vb: Public Sub New(name As SymbolStringPoolEntry, flags As SymbolFlags) - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.#ctor* - nameWithType.vb: SymbolAliasMapEntry.New(SymbolStringPoolEntry, SymbolFlags) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.New(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry, Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - name.vb: New(SymbolStringPoolEntry, SymbolFlags) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName - id: GetName - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - langs: - - csharp - - vb - name: GetName() - nameWithType: SymbolAliasMapEntry.GetName() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetName - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the name of the alias - remarks: >- - The returned entry has it's own ref count and callers must use the - - method to release it. - example: [] - syntax: - content: public SymbolStringPoolEntry GetName() - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - content.vb: Public Function GetName() As SymbolStringPoolEntry - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName* -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags - id: Flags - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - langs: - - csharp - - vb - name: Flags - nameWithType: SymbolAliasMapEntry.Flags - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Flags - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the flags for this instance - example: [] - syntax: - content: public SymbolFlags Flags { get; init; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - content.vb: Public Property Flags As SymbolFlags - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags* -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - langs: - - csharp - - vb - name: Dispose() - nameWithType: SymbolAliasMapEntry.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolAliasMapEntry.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose* - implements: - - System.IDisposable.Dispose -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of SymbolAliasMapEntry) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry) - name.vb: IEquatable(Of SymbolAliasMapEntry) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - name: SymbolAliasMapEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - name: SymbolAliasMapEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html - - name: ) -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html - name: SymbolAliasMapEntry - nameWithType: SymbolAliasMapEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolAliasMapEntry__ctor_Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Ubiquity_NET_Llvm_OrcJITv2_SymbolFlags_ - name: SymbolAliasMapEntry - nameWithType: SymbolAliasMapEntry.SymbolAliasMapEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.SymbolAliasMapEntry - nameWithType.vb: SymbolAliasMapEntry.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.New - name.vb: New -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html - name: SymbolFlags - nameWithType: SymbolFlags - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Dispose - name: Dispose() - nameWithType: SymbolStringPoolEntry.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolAliasMapEntry_GetName - name: GetName - nameWithType: SymbolAliasMapEntry.GetName - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.GetName -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolAliasMapEntry_Flags - name: Flags - nameWithType: SymbolAliasMapEntry.Flags - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Flags -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolAliasMapEntry_Dispose - name: Dispose - nameWithType: SymbolAliasMapEntry.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.yml deleted file mode 100644 index 70042c65f3..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.yml +++ /dev/null @@ -1,541 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - id: SymbolFlags - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption) - - Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption,System.Byte) - - Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic - - Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target - langs: - - csharp - - vb - name: SymbolFlags - nameWithType: SymbolFlags - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SymbolFlags - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Generic and target specific flags for a symbol - example: [] - syntax: - content: 'public readonly record struct SymbolFlags : IEquatable' - content.vb: Public Structure SymbolFlags Implements IEquatable(Of SymbolFlags) - implements: - - System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags} - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption,System.Byte) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption,System.Byte) - id: '#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption,System.Byte)' - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - langs: - - csharp - - vb - name: SymbolFlags(SymbolGenericOption, byte) - nameWithType: SymbolFlags.SymbolFlags(SymbolGenericOption, byte) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.SymbolFlags(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption, byte) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Generic and target specific flags for a symbol - example: [] - syntax: - content: public SymbolFlags(SymbolGenericOption Generic, byte Target) - parameters: - - id: Generic - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - description: Generic options for this symbol - - id: Target - type: System.Byte - description: Target specific flags for this symbol - content.vb: Public Sub New(Generic As SymbolGenericOption, Target As Byte) - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor* - nameWithType.vb: SymbolFlags.New(SymbolGenericOption, Byte) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.New(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption, Byte) - name.vb: New(SymbolGenericOption, Byte) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic - id: Generic - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - langs: - - csharp - - vb - name: Generic - nameWithType: SymbolFlags.Generic - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Generic - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Generic options for this symbol - example: [] - syntax: - content: public SymbolGenericOption Generic { get; init; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - content.vb: Public Property Generic As SymbolGenericOption - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic* -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target - id: Target - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - langs: - - csharp - - vb - name: Target - nameWithType: SymbolFlags.Target - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Target - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Target specific flags for this symbol - example: [] - syntax: - content: public byte Target { get; init; } - parameters: [] - return: - type: System.Byte - content.vb: Public Property Target As Byte - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target* -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption) - id: '#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption)' - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - langs: - - csharp - - vb - name: SymbolFlags(SymbolGenericOption) - nameWithType: SymbolFlags.SymbolFlags(SymbolGenericOption) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.SymbolFlags(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolFlags.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public SymbolFlags(SymbolGenericOption genericOptions) - parameters: - - id: genericOptions - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - description: Generic options for this symbol - content.vb: Public Sub New(genericOptions As SymbolGenericOption) - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor* - nameWithType.vb: SymbolFlags.New(SymbolGenericOption) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.New(Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption) - name.vb: New(SymbolGenericOption) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of SymbolFlags) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags) - name.vb: IEquatable(Of SymbolFlags) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - name: SymbolFlags - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - name: SymbolFlags - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html - - name: ) -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolFlags__ctor_Ubiquity_NET_Llvm_OrcJITv2_SymbolGenericOption_System_Byte_ - name: SymbolFlags - nameWithType: SymbolFlags.SymbolFlags - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.SymbolFlags - nameWithType.vb: SymbolFlags.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.New - name.vb: New -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.html - name: SymbolGenericOption - nameWithType: SymbolGenericOption - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolFlags_Generic - name: Generic - nameWithType: SymbolFlags.Generic - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Generic -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolFlags_Target - name: Target - nameWithType: SymbolFlags.Target - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.Target -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html - name: SymbolFlags - nameWithType: SymbolFlags - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml deleted file mode 100644 index 25b18ad742..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.yml +++ /dev/null @@ -1,231 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - id: SymbolGenericOption - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Callable - - Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Exported - - Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.MaterializationSideEffectsOnly - - Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.None - - Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Weak - langs: - - csharp - - vb - name: SymbolGenericOption - nameWithType: SymbolGenericOption - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SymbolGenericOption - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Linkage flags for a symbol in the JIT - example: [] - syntax: - content: >- - [Flags] - - public enum SymbolGenericOption : byte - content.vb: >- - - - Public Enum SymbolGenericOption As Byte - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.None - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.None - id: None - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - langs: - - csharp - - vb - name: None - nameWithType: SymbolGenericOption.None - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: No specific linkage - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Exported - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Exported - id: Exported - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - langs: - - csharp - - vb - name: Exported - nameWithType: SymbolGenericOption.Exported - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Exported - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Exported - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Symbol is exported - example: [] - syntax: - content: Exported = 1 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Weak - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Weak - id: Weak - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - langs: - - csharp - - vb - name: Weak - nameWithType: SymbolGenericOption.Weak - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Weak - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Weak - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Symbol is weak - example: [] - syntax: - content: Weak = 2 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Callable - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Callable - id: Callable - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - langs: - - csharp - - vb - name: Callable - nameWithType: SymbolGenericOption.Callable - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.Callable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Callable - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Symbol is callable - example: [] - syntax: - content: Callable = 4 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.MaterializationSideEffectsOnly - commentId: F:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.MaterializationSideEffectsOnly - id: MaterializationSideEffectsOnly - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - langs: - - csharp - - vb - name: MaterializationSideEffectsOnly - nameWithType: SymbolGenericOption.MaterializationSideEffectsOnly - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.MaterializationSideEffectsOnly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MaterializationSideEffectsOnly - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolGenericOption.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Symbol has materialization side effects only (normally used for static initializers) - example: [] - syntax: - content: MaterializationSideEffectsOnly = 8 - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.html - name: SymbolGenericOption - nameWithType: SymbolGenericOption - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.yml deleted file mode 100644 index f042175fc1..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.yml +++ /dev/null @@ -1,354 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - id: SymbolStringPool - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries - langs: - - csharp - - vb - name: SymbolStringPool - nameWithType: SymbolStringPool - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPool.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SymbolStringPool - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPool.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: ORC JIT v2 symbol string pool - example: [] - syntax: - content: public readonly ref struct SymbolStringPool - content.vb: Public Structure SymbolStringPool - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries - id: ClearDeadEntries - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - langs: - - csharp - - vb - name: ClearDeadEntries() - nameWithType: SymbolStringPool.ClearDeadEntries() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPool.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ClearDeadEntries - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPool.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Clears all unreferenced strings in the symbol pool - remarks: >- - This clears all the unused entries in an . - - Since this must lock the pool for the duration, which prevents interning - - new strings, it is recommended that this is called infrequently. Ideally - - this is only called when the caller has reason to know that some entries - - will no longer have references such as after removing a module or closing - - a . - example: [] - syntax: - content: public void ClearDeadEntries() - content.vb: Public Sub ClearDeadEntries() - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries* -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.html - name: SymbolStringPool - nameWithType: SymbolStringPool - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPool_ClearDeadEntries - name: ClearDeadEntries - nameWithType: SymbolStringPool.ClearDeadEntries - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.ClearDeadEntries diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml deleted file mode 100644 index 821aa1a787..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.yml +++ /dev/null @@ -1,1060 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - id: SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.Object) - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.ReadOnlySpan{System.Byte}) - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode(System.StringComparison) - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString - langs: - - csharp - - vb - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SymbolStringPoolEntry - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Reference to an entry in a symbol string pool for ORC JIT v2 - remarks: >- - This holds a reference to the symbol string which is ONLY marshalled/converted to - - a managed string in the method. This allows comparing strings - - etc... without the need of conversion. - -
information

- - String conversion is lazy, so that once it is converted the managed string is cached - - and used as needed. Thus, the overhead of marshalling the string is realized only the - - first time it is needed. - -

- example: [] - syntax: - content: 'public sealed class SymbolStringPoolEntry : IEquatable, IEquatable>, IDisposable' - content.vb: Public NotInheritable Class SymbolStringPoolEntry Implements IEquatable(Of SymbolStringPoolEntry), IEquatable(Of ReadOnlySpan(Of Byte)), IDisposable - inheritance: - - System.Object - implements: - - System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry} - - System.IEquatable{System.ReadOnlySpan{System.Byte}} - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - id: '#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry)' - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: SymbolStringPoolEntry(SymbolStringPoolEntry) - nameWithType: SymbolStringPoolEntry.SymbolStringPoolEntry(SymbolStringPoolEntry) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.SymbolStringPoolEntry(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class from another entry (Add ref construction) - remarks: >- - In LLVM a is a pointer to a reference counted string. This constructor will create a new - - entry that "owns" a ref count bump (AddRefHandle) on a source string (other). Callers must dispose of the new - - instance the same as the original one or the ref count is never reduced and the native memory never reclaimed (That is, it leaks!) - example: [] - syntax: - content: public SymbolStringPoolEntry(SymbolStringPoolEntry other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: Other string to make a new entry from - content.vb: Public Sub New(other As SymbolStringPoolEntry) - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor* - nameWithType.vb: SymbolStringPoolEntry.New(SymbolStringPoolEntry) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.New(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name.vb: New(SymbolStringPoolEntry) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString - id: ToString - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: ToString() - nameWithType: SymbolStringPoolEntry.ToString() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the managed string form of the native string - example: [] - syntax: - content: public override string? ToString() - return: - type: System.String - description: managed string for this handle - content.vb: Public Overrides Function ToString() As String - overridden: System.Object.ToString - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString* -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.Object) - id: Equals(System.Object) - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: SymbolStringPoolEntry.Equals(object?) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(object?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Determines whether the specified object is equal to the current object. - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: The object to compare with the current object. - return: - type: System.Boolean - description: true if the specified object is equal to the current object; otherwise, false. - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.Object.Equals(System.Object) - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals* - nameWithType.vb: SymbolStringPoolEntry.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(Object) - name.vb: Equals(Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - id: Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: Equals(SymbolStringPoolEntry?) - nameWithType: SymbolStringPoolEntry.Equals(SymbolStringPoolEntry?) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Compares this string with another to determine if they contain the same contents - remarks: >- -
information

- - A string pool interns the strings such that no two entries in a pool will ever be equal so this is - - only useful with entries from different pools. - -

- example: [] - syntax: - content: public bool Equals(SymbolStringPoolEntry? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: Other entry to compare against - return: - type: System.Boolean - description: true if the strings contain the same data or false if not - content.vb: Public Function Equals(other As SymbolStringPoolEntry) As Boolean - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry}.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - nameWithType.vb: SymbolStringPoolEntry.Equals(SymbolStringPoolEntry) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name.vb: Equals(SymbolStringPoolEntry) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.ReadOnlySpan{System.Byte}) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.ReadOnlySpan{System.Byte}) - id: Equals(System.ReadOnlySpan{System.Byte}) - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: Equals(ReadOnlySpan) - nameWithType: SymbolStringPoolEntry.Equals(ReadOnlySpan) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.ReadOnlySpan) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Tests if the span of characters for this string is identical to the provided span - example: [] - syntax: - content: public bool Equals(ReadOnlySpan otherSpan) - parameters: - - id: otherSpan - type: System.ReadOnlySpan{System.Byte} - description: Span of bytes to compare this string to - return: - type: System.Boolean - description: true if the spans contain the same data or false if not - content.vb: Public Function Equals(otherSpan As ReadOnlySpan(Of Byte)) As Boolean - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals* - implements: - - System.IEquatable{System.ReadOnlySpan{System.Byte}}.Equals(System.ReadOnlySpan{System.Byte}) - nameWithType.vb: SymbolStringPoolEntry.Equals(ReadOnlySpan(Of Byte)) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals(System.ReadOnlySpan(Of Byte)) - name.vb: Equals(ReadOnlySpan(Of Byte)) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: SymbolStringPoolEntry.GetHashCode() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Serves as the default hash function. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A hash code for the current object. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.Object.GetHashCode - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode* -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode(System.StringComparison) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode(System.StringComparison) - id: GetHashCode(System.StringComparison) - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: GetHashCode(StringComparison) - nameWithType: SymbolStringPoolEntry.GetHashCode(StringComparison) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode(System.StringComparison) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 93 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the hash code for the managed string - example: [] - syntax: - content: public int GetHashCode(StringComparison comparisonType) - parameters: - - id: comparisonType - type: System.StringComparison - description: Kind of comparison to perform when computing the hash code - return: - type: System.Int32 - description: Hash code for the managed string - content.vb: Public Function GetHashCode(comparisonType As StringComparison) As Integer - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode* -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: Dispose() - nameWithType: SymbolStringPoolEntry.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 102 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Release the reference to the string - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan - id: ReadOnlySpan - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - langs: - - csharp - - vb - name: ReadOnlySpan - nameWithType: SymbolStringPoolEntry.ReadOnlySpan - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReadOnlySpan - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntry.cs - startLine: 113 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets a readonly span for the data in this string - remarks: >- - This does NOT make a managed copy of the underlying string memory. Instead - - the returned span refers directly to the unmanaged memory of the string. - example: [] - syntax: - content: public ReadOnlySpan ReadOnlySpan { get; } - parameters: [] - return: - type: System.ReadOnlySpan{System.Byte} - description: Span of the native characters in this string (as byte) - content.vb: Public ReadOnly Property ReadOnlySpan As ReadOnlySpan(Of Byte) - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan* -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ToString - name: ToString() - nameWithType: SymbolStringPoolEntry.ToString() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString - name: ToString - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString - name: ToString - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of SymbolStringPoolEntry) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name.vb: IEquatable(Of SymbolStringPoolEntry) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ) -- uid: System.IEquatable{System.ReadOnlySpan{System.Byte}} - commentId: T:System.IEquatable{System.ReadOnlySpan{System.Byte}} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable> - nameWithType: IEquatable> - fullName: System.IEquatable> - nameWithType.vb: IEquatable(Of ReadOnlySpan(Of Byte)) - fullName.vb: System.IEquatable(Of System.ReadOnlySpan(Of Byte)) - name.vb: IEquatable(Of ReadOnlySpan(Of Byte)) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ) -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry__ctor_Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry.SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.SymbolStringPoolEntry - nameWithType.vb: SymbolStringPoolEntry.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.New - name.vb: New -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ToString - name: ToString - nameWithType: SymbolStringPoolEntry.ToString - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ToString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Equals_System_Object_ - name: Equals - nameWithType: SymbolStringPoolEntry.Equals - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Equals -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry}.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry}.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - parent: System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(SymbolStringPoolEntry) - nameWithType: IEquatable.Equals(SymbolStringPoolEntry) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - nameWithType.vb: IEquatable(Of SymbolStringPoolEntry).Equals(SymbolStringPoolEntry) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry).Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry}.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry}.Equals(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ) -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{System.ReadOnlySpan{System.Byte}}.Equals(System.ReadOnlySpan{System.Byte}) - commentId: M:System.IEquatable{System.ReadOnlySpan{System.Byte}}.Equals(System.ReadOnlySpan{System.Byte}) - parent: System.IEquatable{System.ReadOnlySpan{System.Byte}} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ReadOnlySpan) - nameWithType: IEquatable>.Equals(ReadOnlySpan) - fullName: System.IEquatable>.Equals(System.ReadOnlySpan) - nameWithType.vb: IEquatable(Of ReadOnlySpan(Of Byte)).Equals(ReadOnlySpan(Of Byte)) - fullName.vb: System.IEquatable(Of System.ReadOnlySpan(Of Byte)).Equals(System.ReadOnlySpan(Of Byte)) - name.vb: Equals(ReadOnlySpan(Of Byte)) - spec.csharp: - - uid: System.IEquatable{System.ReadOnlySpan{System.Byte}}.Equals(System.ReadOnlySpan{System.Byte}) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - - name: ) - spec.vb: - - uid: System.IEquatable{System.ReadOnlySpan{System.Byte}}.Equals(System.ReadOnlySpan{System.Byte}) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) - - name: ) -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_GetHashCode - name: GetHashCode - nameWithType: SymbolStringPoolEntry.GetHashCode - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.StringComparison - commentId: T:System.StringComparison - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.stringcomparison - name: StringComparison - nameWithType: StringComparison - fullName: System.StringComparison -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_Dispose - name: Dispose - nameWithType: SymbolStringPoolEntry.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ReadOnlySpan - name: ReadOnlySpan - nameWithType: SymbolStringPoolEntry.ReadOnlySpan - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.ReadOnlySpan diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.yml deleted file mode 100644 index c1ca606cd8..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.yml +++ /dev/null @@ -1,493 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - id: SymbolStringPoolEntryList - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Item(System.UInt64) - langs: - - csharp - - vb - name: SymbolStringPoolEntryList - nameWithType: SymbolStringPoolEntryList - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntryList.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SymbolStringPoolEntryList - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntryList.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: List of symbol string pool entries - remarks: >- - The entries in this list are NOT owned by this implementation. The - - method will dispose this list but NOT the individual strings themselves. - example: [] - syntax: - content: public ref struct SymbolStringPoolEntryList - content.vb: Public Structure SymbolStringPoolEntryList - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Item(System.UInt64) - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Item(System.UInt64) - id: Item(System.UInt64) - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - langs: - - csharp - - vb - name: this[ulong] - nameWithType: SymbolStringPoolEntryList.this[ulong] - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.this[ulong] - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntryList.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: this[] - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntryList.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets a single entry from the list - remarks: >- - The returned is an 'alias' to the actual entry - - there is NO ownership implied. Therefore the instance MUST not be stored anywhere. - - If an instance that outlives the underlying native owner is desired then you can - - use the - - "add ref constructor" to gain ownership of the instance. - example: [] - syntax: - content: public readonly SymbolStringPoolEntry this[ulong index] { get; } - parameters: - - id: index - type: System.UInt64 - description: Index of the entry to retrieve - return: - type: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - description: Entry for this list - content.vb: Public ReadOnly Default Property this[](index As ULong) As SymbolStringPoolEntry - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Item* - nameWithType.vb: SymbolStringPoolEntryList.this[](ULong) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.this[](ULong) - name.vb: this[](ULong) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count - id: Count - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - langs: - - csharp - - vb - name: Count - nameWithType: SymbolStringPoolEntryList.Count - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntryList.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Count - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntryList.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the number of elements in this list - example: [] - syntax: - content: public readonly ulong Count { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property Count As ULong - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count* -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - langs: - - csharp - - vb - name: Dispose() - nameWithType: SymbolStringPoolEntryList.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntryList.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/SymbolStringPoolEntryList.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Disposes of this array of entries - remarks: >- - This does not alter the items in the list as this instance does - - NOT own the entries. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose* -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntryList_Dispose - name: Dispose() - nameWithType: SymbolStringPoolEntryList.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose() - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntryList_Dispose - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose - name: Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntryList_Dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry__ctor_Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ - name: SymbolStringPoolEntry(SymbolStringPoolEntry) - nameWithType: SymbolStringPoolEntry.SymbolStringPoolEntry(SymbolStringPoolEntry) - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.SymbolStringPoolEntry(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - nameWithType.vb: SymbolStringPoolEntry.New(SymbolStringPoolEntry) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.New(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name.vb: New(SymbolStringPoolEntry) - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.#ctor(Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry) - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry__ctor_Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntry_ - - name: ( - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ) - spec.vb: - - name: New - - name: ( - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Item* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Item - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntryList_Item_System_UInt64_ - name: this - nameWithType: SymbolStringPoolEntryList.this - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.this - nameWithType.vb: SymbolStringPoolEntryList.this[] - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.this[] - name.vb: this[] -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntryList_Count - name: Count - nameWithType: SymbolStringPoolEntryList.Count - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Count -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.html#Ubiquity_NET_Llvm_OrcJITv2_SymbolStringPoolEntryList_Dispose - name: Dispose - nameWithType: SymbolStringPoolEntryList.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.Dispose diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.yml deleted file mode 100644 index 5601c966f6..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.yml +++ /dev/null @@ -1,559 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - id: ThreadSafeContext - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.#ctor - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule(Ubiquity.NET.Llvm.Module) - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext - langs: - - csharp - - vb - name: ThreadSafeContext - nameWithType: ThreadSafeContext - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ThreadSafeContext - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Thread safe ContextAlias for use with LLVM ORC JIT v2 - example: [] - syntax: - content: 'public sealed class ThreadSafeContext : IDisposable' - content.vb: Public NotInheritable Class ThreadSafeContext Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.#ctor - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.#ctor - id: '#ctor' - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - langs: - - csharp - - vb - name: ThreadSafeContext() - nameWithType: ThreadSafeContext.ThreadSafeContext() - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.ThreadSafeContext() - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public ThreadSafeContext() - content.vb: Public Sub New() - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.#ctor* - nameWithType.vb: ThreadSafeContext.New() - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.New() - name.vb: New() -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule(Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule(Ubiquity.NET.Llvm.Module) - id: AddModule(Ubiquity.NET.Llvm.Module) - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - langs: - - csharp - - vb - name: AddModule(Module) - nameWithType: ThreadSafeContext.AddModule(Module) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule(Ubiquity.NET.Llvm.Module) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddModule - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Adds a module to this context - remarks: >- -

This creates a new in this context. The - - resulting has a ref count on the context and - - therefore it is safe (and appropriate) to dispose of this instance.

- -
important

- - Ownership of the input perThreadModule is transferred to - - the returned value and is NOT usable after this call completes without exception - - (Except to call Dispose which is a NOP). However if an exception occurs, then - - ownership remains with the caller. Thus callers should ALWAYS call Dispose on the - - result and should NOT assume it is valid. - -

- example: [] - syntax: - content: public ThreadSafeModule AddModule(Module perThreadModule) - parameters: - - id: perThreadModule - type: Ubiquity.NET.Llvm.Module - description: Module to add - return: - type: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - description: ThreadSafe module added to this context - content.vb: Public Function AddModule(perThreadModule As [Module]) As ThreadSafeModule - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - langs: - - csharp - - vb - name: Dispose() - nameWithType: ThreadSafeContext.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext - id: PerThreadContext - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - langs: - - csharp - - vb - name: PerThreadContext - nameWithType: ThreadSafeContext.PerThreadContext - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PerThreadContext - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeContext.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets the PerThreadContext for this instance - example: [] - syntax: - content: public IContext PerThreadContext { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: Public ReadOnly Property PerThreadContext As IContext - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext* -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.html - name: ThreadSafeContext - nameWithType: ThreadSafeContext - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeContext__ctor - name: ThreadSafeContext - nameWithType: ThreadSafeContext.ThreadSafeContext - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.ThreadSafeContext - nameWithType.vb: ThreadSafeContext.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.New - name.vb: New -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - name: ThreadSafeModule - nameWithType: ThreadSafeModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeContext_AddModule_Ubiquity_NET_Llvm_Module_ - name: AddModule - nameWithType: ThreadSafeContext.AddModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.AddModule -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeContext_Dispose - name: Dispose - nameWithType: ThreadSafeContext.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeContext_PerThreadContext - name: PerThreadContext - nameWithType: ThreadSafeContext.PerThreadContext - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.PerThreadContext -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation.yml deleted file mode 100644 index a795b22924..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation.yml +++ /dev/null @@ -1,126 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - id: ThreadSafeModule.GenericModuleOperation - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: [] - langs: - - csharp - - vb - name: ThreadSafeModule.GenericModuleOperation - nameWithType: ThreadSafeModule.GenericModuleOperation - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - type: Delegate - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GenericModuleOperation - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Delegate declaration for a generic operation on a module - remarks: >- - Implementations of this delegate should not throw exceptions. Any exceptions - - are caught and translated to an LLVMErrorRef for the native code so they do NOT - - pass up into the native layer as that knows nothing about managed code exceptions. - example: [] - syntax: - content: public delegate ErrorInfo ThreadSafeModule.GenericModuleOperation(IModule module) - parameters: - - id: module - type: Ubiquity.NET.Llvm.IModule - description: module to operate on - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error info from the operation - content.vb: Public Delegate Function ThreadSafeModule.GenericModuleOperation([module] As IModule) As ErrorInfo -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IModule.html - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ErrorInfo.html - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml deleted file mode 100644 index 75a601dd5a..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.yml +++ /dev/null @@ -1,626 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - id: ThreadSafeModule - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.#ctor(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext,Ubiquity.NET.Llvm.Module) - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation) - langs: - - csharp - - vb - name: ThreadSafeModule - nameWithType: ThreadSafeModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ThreadSafeModule - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: LLVM ORC JIT v2 Thread Safe Module - example: [] - syntax: - content: 'public sealed class ThreadSafeModule : IDisposable' - content.vb: Public NotInheritable Class ThreadSafeModule Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - langs: - - csharp - - vb - name: Dispose() - nameWithType: ThreadSafeModule.Dispose() - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed - id: IsDisposed - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - langs: - - csharp - - vb - name: IsDisposed - nameWithType: ThreadSafeModule.IsDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDisposed - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Gets a value indicating whether this instance is disposed - example: [] - syntax: - content: public bool IsDisposed { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDisposed As Boolean - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed - id: ThrowIfIDisposed - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - langs: - - csharp - - vb - name: ThrowIfIDisposed() - nameWithType: ThreadSafeModule.ThrowIfIDisposed() - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ThrowIfIDisposed - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Throws an if is true - example: [] - syntax: - content: public void ThrowIfIDisposed() - content.vb: Public Sub ThrowIfIDisposed() - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation) - id: WithPerThreadModule(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation) - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - langs: - - csharp - - vb - name: WithPerThreadModule(GenericModuleOperation) - nameWithType: ThreadSafeModule.WithPerThreadModule(ThreadSafeModule.GenericModuleOperation) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WithPerThreadModule - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Performs an operation op with a per thread module owned by this - example: [] - syntax: - content: public void WithPerThreadModule(ThreadSafeModule.GenericModuleOperation op) - parameters: - - id: op - type: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - description: Operation to perform with the module - content.vb: Public Sub WithPerThreadModule(op As ThreadSafeModule.GenericModuleOperation) - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule* -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.#ctor(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext,Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.#ctor(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext,Ubiquity.NET.Llvm.Module) - id: '#ctor(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext,Ubiquity.NET.Llvm.Module)' - parent: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - langs: - - csharp - - vb - name: ThreadSafeModule(ThreadSafeContext, Module) - nameWithType: ThreadSafeModule.ThreadSafeModule(ThreadSafeContext, Module) - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThreadSafeModule(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext, Ubiquity.NET.Llvm.Module) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/ThreadSafeModule.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Initializes a new instance of the class. - remarks: >- -
important

- - This is a "move" constructor and takes ownership of the module. The module provided is NOT - - useable after this except to dispose it (which is a NOP). - -

- example: [] - syntax: - content: public ThreadSafeModule(ThreadSafeContext context, Module module) - parameters: - - id: context - type: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - description: Thread safe ContextAlias to place the module into - - id: module - type: Ubiquity.NET.Llvm.Module - description: module to make thread safe - content.vb: Public Sub New(context As ThreadSafeContext, [module] As [Module]) - overload: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.#ctor* - nameWithType.vb: ThreadSafeModule.New(ThreadSafeContext, Module) - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.New(Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext, Ubiquity.NET.Llvm.Module) - name.vb: New(ThreadSafeContext, Module) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_Dispose - name: Dispose - nameWithType: ThreadSafeModule.Dispose - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_IsDisposed - name: IsDisposed - nameWithType: ThreadSafeModule.IsDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.ObjectDisposedException - commentId: T:System.ObjectDisposedException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.objectdisposedexception - name: ObjectDisposedException - nameWithType: ObjectDisposedException - fullName: System.ObjectDisposedException -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed - commentId: P:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_IsDisposed - name: IsDisposed - nameWithType: ThreadSafeModule.IsDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.IsDisposed -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_ThrowIfIDisposed - name: ThrowIfIDisposed - nameWithType: ThreadSafeModule.ThrowIfIDisposed - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThrowIfIDisposed -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - name: ThreadSafeModule - nameWithType: ThreadSafeModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_WithPerThreadModule_Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule_GenericModuleOperation_ - name: WithPerThreadModule - nameWithType: ThreadSafeModule.WithPerThreadModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.WithPerThreadModule -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - name: ThreadSafeModule.GenericModuleOperation - nameWithType: ThreadSafeModule.GenericModuleOperation - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - name: ThreadSafeModule - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - name: GenericModuleOperation - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation.html - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - name: ThreadSafeModule - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - name: GenericModuleOperation - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.#ctor - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html#Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeModule__ctor_Ubiquity_NET_Llvm_OrcJITv2_ThreadSafeContext_Ubiquity_NET_Llvm_Module_ - name: ThreadSafeModule - nameWithType: ThreadSafeModule.ThreadSafeModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.ThreadSafeModule - nameWithType.vb: ThreadSafeModule.New - fullName.vb: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.New - name.vb: New -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.html - name: ThreadSafeContext - nameWithType: ThreadSafeContext - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.TransformAction.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.TransformAction.yml deleted file mode 100644 index c9685c71bb..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.TransformAction.yml +++ /dev/null @@ -1,100 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2.TransformAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.TransformAction - id: TransformAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - children: [] - langs: - - csharp - - vb - name: TransformAction - nameWithType: TransformAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.TransformAction - type: Delegate - source: - remote: - path: src/Ubiquity.NET.Llvm/OrcJITv2/IrTransformLayer.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TransformAction - path: ../src/Ubiquity.NET.Llvm/OrcJITv2/IrTransformLayer.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.OrcJITv2 - summary: Delegate for an LLVM ORC JIT v2 transformation function - example: [] - syntax: - content: public delegate void TransformAction(ThreadSafeModule module, MaterializationResponsibility responsibility, out ThreadSafeModule? replacementModule) - parameters: - - id: module - type: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - description: Module transformation is on - - id: responsibility - type: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - description: Responsibility for this transformation - - id: replacementModule - type: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - description: New module if this transform replaces it [Set to null if - content.vb: Public Delegate Sub TransformAction([module] As ThreadSafeModule, responsibility As MaterializationResponsibility, replacementModule As ThreadSafeModule) -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.html - name: IrTransformLayer - nameWithType: IrTransformLayer - fullName: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - name: ThreadSafeModule - nameWithType: ThreadSafeModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html - name: MaterializationResponsibility - nameWithType: MaterializationResponsibility - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.yml deleted file mode 100644 index 56dc9c09b5..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.OrcJITv2.yml +++ /dev/null @@ -1,279 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - id: Ubiquity.NET.Llvm.OrcJITv2 - children: - - Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - - Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - - Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - - Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter - - Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - - Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - - Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - - Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - - Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - - Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - - Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - - Ubiquity.NET.Llvm.OrcJITv2.LlJIT - - Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - - Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - - Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - - Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - - Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - - Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - - Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - - Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - - Ubiquity.NET.Llvm.OrcJITv2.TransformAction - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - href: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit.html - name: AbsoluteMaterializationUnit - nameWithType: AbsoluteMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction.html - name: MaterializationAction - nameWithType: MaterializationAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction -- uid: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction.html - name: DiscardAction - nameWithType: DiscardAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction -- uid: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - href: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit.html - name: CustomMaterializationUnit - nameWithType: CustomMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit -- uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption.html - name: GenericSymbolOption - nameWithType: GenericSymbolOption - fullName: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - href: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol.html - name: EvaluatedSymbol - nameWithType: EvaluatedSymbol - fullName: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol -- uid: Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter - href: Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter.html - name: ErrorReporter - nameWithType: ErrorReporter - fullName: Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter -- uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession.html - name: ExecutionSession - nameWithType: ExecutionSession - fullName: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession -- uid: Ubiquity.NET.Llvm.OrcJITv2.TransformAction - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.TransformAction - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.TransformAction.html - name: TransformAction - nameWithType: TransformAction - fullName: Ubiquity.NET.Llvm.OrcJITv2.TransformAction -- uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer.html - name: IrTransformLayer - nameWithType: IrTransformLayer - fullName: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer -- uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib.html - name: JITDyLib - nameWithType: JITDyLib - fullName: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager.html - name: LazyCallThroughManager - nameWithType: LazyCallThroughManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager -- uid: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - href: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit.html - name: LazyReExportsMaterializationUnit - nameWithType: LazyReExportsMaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit -- uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LlJIT - href: Ubiquity.NET.Llvm.OrcJITv2.LlJIT.html - name: LlJIT - nameWithType: LlJIT - fullName: Ubiquity.NET.Llvm.OrcJITv2.LlJIT -- uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager.html - name: LocalIndirectStubsManager - nameWithType: LocalIndirectStubsManager - fullName: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility.html - name: MaterializationResponsibility - nameWithType: MaterializationResponsibility - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility -- uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit.html - name: MaterializationUnit - nameWithType: MaterializationUnit - fullName: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit -- uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker.html - name: ResourceTracker - nameWithType: ResourceTracker - fullName: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry.html - name: SymbolAliasMapEntry - nameWithType: SymbolAliasMapEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags.html - name: SymbolFlags - nameWithType: SymbolFlags - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption.html - name: SymbolGenericOption - nameWithType: SymbolGenericOption - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool.html - name: SymbolStringPool - nameWithType: SymbolStringPool - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry.html - name: SymbolStringPoolEntry - nameWithType: SymbolStringPoolEntry - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry -- uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList.html - name: SymbolStringPoolEntryList - nameWithType: SymbolStringPoolEntryList - fullName: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext.html - name: ThreadSafeContext - nameWithType: ThreadSafeContext - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - name: ThreadSafeModule - nameWithType: ThreadSafeModule - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule -- uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - commentId: T:Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - parent: Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - name: ThreadSafeModule.GenericModuleOperation - nameWithType: ThreadSafeModule.GenericModuleOperation - fullName: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - spec.csharp: - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - name: ThreadSafeModule - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - name: GenericModuleOperation - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation.html - spec.vb: - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - name: ThreadSafeModule - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - name: GenericModuleOperation - href: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation.html -- uid: Ubiquity.NET.Llvm.OrcJITv2 - commentId: N:Ubiquity.NET.Llvm.OrcJITv2 - href: Ubiquity.html - name: Ubiquity.NET.Llvm.OrcJITv2 - nameWithType: Ubiquity.NET.Llvm.OrcJITv2 - fullName: Ubiquity.NET.Llvm.OrcJITv2 - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.OrcJITv2 - name: OrcJITv2 - href: Ubiquity.NET.Llvm.OrcJITv2.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.PassBuilderOptions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.PassBuilderOptions.yml deleted file mode 100644 index 7618aa04bc..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.PassBuilderOptions.yml +++ /dev/null @@ -1,920 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.PassBuilderOptions - commentId: T:Ubiquity.NET.Llvm.PassBuilderOptions - id: PassBuilderOptions - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.PassBuilderOptions.#ctor - - Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline - - Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile - - Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging - - Ubiquity.NET.Llvm.PassBuilderOptions.Dispose - - Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll - - Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold - - Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap - - Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap - - Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving - - Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling - - Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization - - Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions - - Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization - - Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach - langs: - - csharp - - vb - name: PassBuilderOptions - nameWithType: PassBuilderOptions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PassBuilderOptions - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Class to hold options for an LLVM pass builder - example: [] - syntax: - content: public readonly ref struct PassBuilderOptions - content.vb: Public Structure PassBuilderOptions - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.ValueType.ToString - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.#ctor - commentId: M:Ubiquity.NET.Llvm.PassBuilderOptions.#ctor - id: '#ctor' - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: PassBuilderOptions() - nameWithType: PassBuilderOptions.PassBuilderOptions() - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.PassBuilderOptions() - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the struct. - example: [] - syntax: - content: public PassBuilderOptions() - content.vb: Public Sub New() - overload: Ubiquity.NET.Llvm.PassBuilderOptions.#ctor* - nameWithType.vb: PassBuilderOptions.New() - fullName.vb: Ubiquity.NET.Llvm.PassBuilderOptions.New() - name.vb: New() -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach - id: VerifyEach - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: VerifyEach - nameWithType: PassBuilderOptions.VerifyEach - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VerifyEach - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether the Verifier pass is added. - remarks: >- - The verifier pass ensures that all functions in the module are valid. This - - is especially useful during debugging and IR generation development. - example: [] - syntax: - content: public bool VerifyEach { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property VerifyEach As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging - id: DebugLogging - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: DebugLogging - nameWithType: PassBuilderOptions.DebugLogging - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugLogging - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether debug logging is used when running passes - example: [] - syntax: - content: public bool DebugLogging { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property DebugLogging As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving - id: LoopInterleaving - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: LoopInterleaving - nameWithType: PassBuilderOptions.LoopInterleaving - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LoopInterleaving - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether the optimization should honor this functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public bool LoopInterleaving { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property LoopInterleaving As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization - id: LoopVectorization - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: LoopVectorization - nameWithType: PassBuilderOptions.LoopVectorization - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LoopVectorization - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether the optimization should honor this functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public bool LoopVectorization { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property LoopVectorization As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization - id: SLPVectorization - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: SLPVectorization - nameWithType: PassBuilderOptions.SLPVectorization - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SLPVectorization - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether the optimization should honor this functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public bool SLPVectorization { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property SLPVectorization As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling - id: LoopUnrolling - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: LoopUnrolling - nameWithType: PassBuilderOptions.LoopUnrolling - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LoopUnrolling - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether the optimization should honor this functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public bool LoopUnrolling { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property LoopUnrolling As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll - id: ForgetAllSCEVInLoopUnroll - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: ForgetAllSCEVInLoopUnroll - nameWithType: PassBuilderOptions.ForgetAllSCEVInLoopUnroll - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ForgetAllSCEVInLoopUnroll - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 86 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether the optimization should honor this functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public bool ForgetAllSCEVInLoopUnroll { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property ForgetAllSCEVInLoopUnroll As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile - id: CallGraphProfile - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: CallGraphProfile - nameWithType: PassBuilderOptions.CallGraphProfile - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallGraphProfile - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 96 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether the optimization should honor this functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public bool CallGraphProfile { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property CallGraphProfile As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions - id: MergeFunctions - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: MergeFunctions - nameWithType: PassBuilderOptions.MergeFunctions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MergeFunctions - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 106 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value indicating whether the optimization should honor this functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public bool MergeFunctions { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property MergeFunctions As Boolean - overload: Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline - id: AliasAnalysisPipeline - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: AliasAnalysisPipeline - nameWithType: PassBuilderOptions.AliasAnalysisPipeline - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AliasAnalysisPipeline - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 113 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or sets a value for a custom Alias Analysis pipeline - example: [] - syntax: - content: public string AliasAnalysisPipeline { get; set; } - parameters: [] - return: - type: System.String - content.vb: Public Property AliasAnalysisPipeline As String - overload: Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap - id: LicmMssaOptCap - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: LicmMssaOptCap - nameWithType: PassBuilderOptions.LicmMssaOptCap - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LicmMssaOptCap - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 123 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value for the limit of the optimization functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public uint LicmMssaOptCap { get; set; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public Property LicmMssaOptCap As UInteger - overload: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap - id: LicmMssaNoAccForPromotionCap - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: LicmMssaNoAccForPromotionCap - nameWithType: PassBuilderOptions.LicmMssaNoAccForPromotionCap - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LicmMssaNoAccForPromotionCap - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 133 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value for the limit of the optimization functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public uint LicmMssaNoAccForPromotionCap { get; set; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public Property LicmMssaNoAccForPromotionCap As UInteger - overload: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold - commentId: P:Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold - id: InlinerThreshold - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: InlinerThreshold - nameWithType: PassBuilderOptions.InlinerThreshold - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InlinerThreshold - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 143 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets or Sets a value for the limit of the optimization functionality - remarks: LLVM-C APIs are lacking documentation on this, so the information is sadly vague. - example: [] - syntax: - content: public int InlinerThreshold { get; set; } - parameters: [] - return: - type: System.Int32 - content.vb: Public Property InlinerThreshold As Integer - overload: Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold* -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.Dispose - commentId: M:Ubiquity.NET.Llvm.PassBuilderOptions.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.PassBuilderOptions - langs: - - csharp - - vb - name: Dispose() - nameWithType: PassBuilderOptions.Dispose() - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/PassBuilderOptions.cs - startLine: 150 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Disposes the underlying LLVM handle - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.PassBuilderOptions.Dispose* -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.PassBuilderOptions - commentId: T:Ubiquity.NET.Llvm.PassBuilderOptions - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - name: PassBuilderOptions - nameWithType: PassBuilderOptions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.#ctor - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions__ctor - name: PassBuilderOptions - nameWithType: PassBuilderOptions.PassBuilderOptions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.PassBuilderOptions - nameWithType.vb: PassBuilderOptions.New - fullName.vb: Ubiquity.NET.Llvm.PassBuilderOptions.New - name.vb: New -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_VerifyEach - name: VerifyEach - nameWithType: PassBuilderOptions.VerifyEach - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.VerifyEach -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_DebugLogging - name: DebugLogging - nameWithType: PassBuilderOptions.DebugLogging - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.DebugLogging -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_LoopInterleaving - name: LoopInterleaving - nameWithType: PassBuilderOptions.LoopInterleaving - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LoopInterleaving -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_LoopVectorization - name: LoopVectorization - nameWithType: PassBuilderOptions.LoopVectorization - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LoopVectorization -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_SLPVectorization - name: SLPVectorization - nameWithType: PassBuilderOptions.SLPVectorization - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.SLPVectorization -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_LoopUnrolling - name: LoopUnrolling - nameWithType: PassBuilderOptions.LoopUnrolling - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LoopUnrolling -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_ForgetAllSCEVInLoopUnroll - name: ForgetAllSCEVInLoopUnroll - nameWithType: PassBuilderOptions.ForgetAllSCEVInLoopUnroll - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.ForgetAllSCEVInLoopUnroll -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_CallGraphProfile - name: CallGraphProfile - nameWithType: PassBuilderOptions.CallGraphProfile - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.CallGraphProfile -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_MergeFunctions - name: MergeFunctions - nameWithType: PassBuilderOptions.MergeFunctions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.MergeFunctions -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_AliasAnalysisPipeline - name: AliasAnalysisPipeline - nameWithType: PassBuilderOptions.AliasAnalysisPipeline - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.AliasAnalysisPipeline -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_LicmMssaOptCap - name: LicmMssaOptCap - nameWithType: PassBuilderOptions.LicmMssaOptCap - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaOptCap -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_LicmMssaNoAccForPromotionCap - name: LicmMssaNoAccForPromotionCap - nameWithType: PassBuilderOptions.LicmMssaNoAccForPromotionCap - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.LicmMssaNoAccForPromotionCap -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_InlinerThreshold - name: InlinerThreshold - nameWithType: PassBuilderOptions.InlinerThreshold - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.InlinerThreshold -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.PassBuilderOptions.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.PassBuilderOptions.Dispose - href: Ubiquity.NET.Llvm.PassBuilderOptions.html#Ubiquity_NET_Llvm_PassBuilderOptions_Dispose - name: Dispose - nameWithType: PassBuilderOptions.Dispose - fullName: Ubiquity.NET.Llvm.PassBuilderOptions.Dispose diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.RelocationMode.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.RelocationMode.yml deleted file mode 100644 index 11843b6257..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.RelocationMode.yml +++ /dev/null @@ -1,184 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.RelocationMode - commentId: T:Ubiquity.NET.Llvm.RelocationMode - id: RelocationMode - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.RelocationMode.Default - - Ubiquity.NET.Llvm.RelocationMode.Dynamic - - Ubiquity.NET.Llvm.RelocationMode.PositionIndependent - - Ubiquity.NET.Llvm.RelocationMode.Static - langs: - - csharp - - vb - name: RelocationMode - nameWithType: RelocationMode - fullName: Ubiquity.NET.Llvm.RelocationMode - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RelocationMode - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Relocation type for target code generation - example: [] - syntax: - content: public enum RelocationMode - content.vb: Public Enum RelocationMode -- uid: Ubiquity.NET.Llvm.RelocationMode.Default - commentId: F:Ubiquity.NET.Llvm.RelocationMode.Default - id: Default - parent: Ubiquity.NET.Llvm.RelocationMode - langs: - - csharp - - vb - name: Default - nameWithType: RelocationMode.Default - fullName: Ubiquity.NET.Llvm.RelocationMode.Default - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Default - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Default relocation model for the target - example: [] - syntax: - content: Default = 0 - return: - type: Ubiquity.NET.Llvm.RelocationMode -- uid: Ubiquity.NET.Llvm.RelocationMode.Static - commentId: F:Ubiquity.NET.Llvm.RelocationMode.Static - id: Static - parent: Ubiquity.NET.Llvm.RelocationMode - langs: - - csharp - - vb - name: Static - nameWithType: RelocationMode.Static - fullName: Ubiquity.NET.Llvm.RelocationMode.Static - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Static - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Static relocation model - example: [] - syntax: - content: Static = 1 - return: - type: Ubiquity.NET.Llvm.RelocationMode -- uid: Ubiquity.NET.Llvm.RelocationMode.PositionIndependent - commentId: F:Ubiquity.NET.Llvm.RelocationMode.PositionIndependent - id: PositionIndependent - parent: Ubiquity.NET.Llvm.RelocationMode - langs: - - csharp - - vb - name: PositionIndependent - nameWithType: RelocationMode.PositionIndependent - fullName: Ubiquity.NET.Llvm.RelocationMode.PositionIndependent - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PositionIndependent - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Position independent relocation model - example: [] - syntax: - content: PositionIndependent = 2 - return: - type: Ubiquity.NET.Llvm.RelocationMode -- uid: Ubiquity.NET.Llvm.RelocationMode.Dynamic - commentId: F:Ubiquity.NET.Llvm.RelocationMode.Dynamic - id: Dynamic - parent: Ubiquity.NET.Llvm.RelocationMode - langs: - - csharp - - vb - name: Dynamic - nameWithType: RelocationMode.Dynamic - fullName: Ubiquity.NET.Llvm.RelocationMode.Dynamic - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dynamic - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 50 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Dynamic relocation model - example: [] - syntax: - content: Dynamic = 3 - return: - type: Ubiquity.NET.Llvm.RelocationMode -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.RelocationMode - commentId: T:Ubiquity.NET.Llvm.RelocationMode - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.RelocationMode.html - name: RelocationMode - nameWithType: RelocationMode - fullName: Ubiquity.NET.Llvm.RelocationMode diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.SubArchKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.SubArchKind.yml deleted file mode 100644 index ffe4e3df7c..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.SubArchKind.yml +++ /dev/null @@ -1,1745 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.SubArchKind - commentId: T:Ubiquity.NET.Llvm.SubArchKind - id: SubArchKind - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64e - - Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64ec - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v4t - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5 - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5te - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6 - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6k - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6m - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6t2 - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7 - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7em - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7k - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7m - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7s - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7ve - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8 - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1m_Mainline - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_2a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_3a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_4a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_5a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_6a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_7a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_8a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_9a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Baseline - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Mainline - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8r - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9 - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_1a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_2a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_3a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_4a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_5a - - Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_6a - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_0 - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_1 - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_2 - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_3 - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_4 - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_5 - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_6 - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_7 - - Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_8 - - Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v3 - - Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v4 - - Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v5 - - Ubiquity.NET.Llvm.SubArchKind.LatestDXILSubArch - - Ubiquity.NET.Llvm.SubArchKind.MipsSubArch_r6 - - Ubiquity.NET.Llvm.SubArchKind.NoSubArch - - Ubiquity.NET.Llvm.SubArchKind.PowerPC_SPE - - Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v10 - - Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v11 - - Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v12 - - Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v13 - - Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v14 - - Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v15 - - Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v16 - langs: - - csharp - - vb - name: SubArchKind - nameWithType: SubArchKind - fullName: Ubiquity.NET.Llvm.SubArchKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SubArchKind - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 196 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Processor sub architecture type - example: [] - syntax: - content: public enum SubArchKind - content.vb: Public Enum SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.NoSubArch - commentId: F:Ubiquity.NET.Llvm.SubArchKind.NoSubArch - id: NoSubArch - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: NoSubArch - nameWithType: SubArchKind.NoSubArch - fullName: Ubiquity.NET.Llvm.SubArchKind.NoSubArch - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoSubArch - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 200 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: No sub architecture - example: [] - syntax: - content: NoSubArch = 0 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_6a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_6a - id: ARMSubArch_v9_6a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v9_6a - nameWithType: SubArchKind.ARMSubArch_v9_6a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_6a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v9_6a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 203 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v9.6a - example: [] - syntax: - content: ARMSubArch_v9_6a = 1 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_5a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_5a - id: ARMSubArch_v9_5a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v9_5a - nameWithType: SubArchKind.ARMSubArch_v9_5a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_5a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v9_5a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 206 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v9.5a - example: [] - syntax: - content: ARMSubArch_v9_5a = 2 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_4a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_4a - id: ARMSubArch_v9_4a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v9_4a - nameWithType: SubArchKind.ARMSubArch_v9_4a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_4a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v9_4a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 209 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v9.4a - example: [] - syntax: - content: ARMSubArch_v9_4a = 3 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_3a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_3a - id: ARMSubArch_v9_3a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v9_3a - nameWithType: SubArchKind.ARMSubArch_v9_3a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_3a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v9_3a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 212 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v9.3a - example: [] - syntax: - content: ARMSubArch_v9_3a = 4 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_2a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_2a - id: ARMSubArch_v9_2a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v9_2a - nameWithType: SubArchKind.ARMSubArch_v9_2a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_2a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v9_2a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 215 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v9.2a - example: [] - syntax: - content: ARMSubArch_v9_2a = 5 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_1a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_1a - id: ARMSubArch_v9_1a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v9_1a - nameWithType: SubArchKind.ARMSubArch_v9_1a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9_1a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v9_1a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 218 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v9.1a - example: [] - syntax: - content: ARMSubArch_v9_1a = 6 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9 - id: ARMSubArch_v9 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v9 - nameWithType: SubArchKind.ARMSubArch_v9 - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v9 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v9 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 221 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v9 - example: [] - syntax: - content: ARMSubArch_v9 = 7 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_9a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_9a - id: ARMSubArch_v8_9a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_9a - nameWithType: SubArchKind.ARMSubArch_v8_9a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_9a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_9a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 224 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.9a - example: [] - syntax: - content: ARMSubArch_v8_9a = 8 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_8a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_8a - id: ARMSubArch_v8_8a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_8a - nameWithType: SubArchKind.ARMSubArch_v8_8a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_8a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_8a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 227 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.8a - example: [] - syntax: - content: ARMSubArch_v8_8a = 9 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_7a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_7a - id: ARMSubArch_v8_7a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_7a - nameWithType: SubArchKind.ARMSubArch_v8_7a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_7a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_7a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 230 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.7a - example: [] - syntax: - content: ARMSubArch_v8_7a = 10 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_6a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_6a - id: ARMSubArch_v8_6a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_6a - nameWithType: SubArchKind.ARMSubArch_v8_6a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_6a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_6a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 233 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.6a - example: [] - syntax: - content: ARMSubArch_v8_6a = 11 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_5a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_5a - id: ARMSubArch_v8_5a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_5a - nameWithType: SubArchKind.ARMSubArch_v8_5a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_5a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_5a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 236 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.5a - example: [] - syntax: - content: ARMSubArch_v8_5a = 12 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_4a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_4a - id: ARMSubArch_v8_4a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_4a - nameWithType: SubArchKind.ARMSubArch_v8_4a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_4a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_4a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 239 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.4a - example: [] - syntax: - content: ARMSubArch_v8_4a = 13 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_3a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_3a - id: ARMSubArch_v8_3a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_3a - nameWithType: SubArchKind.ARMSubArch_v8_3a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_3a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_3a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 242 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.3a - example: [] - syntax: - content: ARMSubArch_v8_3a = 14 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_2a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_2a - id: ARMSubArch_v8_2a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_2a - nameWithType: SubArchKind.ARMSubArch_v8_2a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_2a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_2a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 245 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.2a - example: [] - syntax: - content: ARMSubArch_v8_2a = 15 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1a - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1a - id: ARMSubArch_v8_1a - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_1a - nameWithType: SubArchKind.ARMSubArch_v8_1a - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1a - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_1a - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 248 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8.1a - example: [] - syntax: - content: ARMSubArch_v8_1a = 16 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8 - id: ARMSubArch_v8 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8 - nameWithType: SubArchKind.ARMSubArch_v8 - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 251 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8 - example: [] - syntax: - content: ARMSubArch_v8 = 17 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8r - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8r - id: ARMSubArch_v8r - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8r - nameWithType: SubArchKind.ARMSubArch_v8r - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8r - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8r - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 254 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8r - example: [] - syntax: - content: ARMSubArch_v8r = 18 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Baseline - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Baseline - id: ARMSubArch_v8m_Baseline - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8m_Baseline - nameWithType: SubArchKind.ARMSubArch_v8m_Baseline - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Baseline - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8m_Baseline - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 257 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8m baseline - example: [] - syntax: - content: ARMSubArch_v8m_Baseline = 19 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Mainline - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Mainline - id: ARMSubArch_v8m_Mainline - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8m_Mainline - nameWithType: SubArchKind.ARMSubArch_v8m_Mainline - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8m_Mainline - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8m_Mainline - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 260 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8m mainline - example: [] - syntax: - content: ARMSubArch_v8m_Mainline = 20 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1m_Mainline - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1m_Mainline - id: ARMSubArch_v8_1m_Mainline - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v8_1m_Mainline - nameWithType: SubArchKind.ARMSubArch_v8_1m_Mainline - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v8_1m_Mainline - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v8_1m_Mainline - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 263 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v8 1m mainline - example: [] - syntax: - content: ARMSubArch_v8_1m_Mainline = 21 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7 - id: ARMSubArch_v7 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v7 - nameWithType: SubArchKind.ARMSubArch_v7 - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v7 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 266 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v7 - example: [] - syntax: - content: ARMSubArch_v7 = 22 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7em - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7em - id: ARMSubArch_v7em - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v7em - nameWithType: SubArchKind.ARMSubArch_v7em - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7em - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v7em - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 269 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v7em - example: [] - syntax: - content: ARMSubArch_v7em = 23 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7m - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7m - id: ARMSubArch_v7m - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v7m - nameWithType: SubArchKind.ARMSubArch_v7m - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7m - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v7m - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 272 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v7m - example: [] - syntax: - content: ARMSubArch_v7m = 24 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7s - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7s - id: ARMSubArch_v7s - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v7s - nameWithType: SubArchKind.ARMSubArch_v7s - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7s - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v7s - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 275 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v7s - example: [] - syntax: - content: ARMSubArch_v7s = 25 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7k - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7k - id: ARMSubArch_v7k - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v7k - nameWithType: SubArchKind.ARMSubArch_v7k - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7k - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v7k - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 278 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v7k - example: [] - syntax: - content: ARMSubArch_v7k = 26 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7ve - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7ve - id: ARMSubArch_v7ve - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v7ve - nameWithType: SubArchKind.ARMSubArch_v7ve - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v7ve - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v7ve - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 281 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v7ve - example: [] - syntax: - content: ARMSubArch_v7ve = 27 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6 - id: ARMSubArch_v6 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v6 - nameWithType: SubArchKind.ARMSubArch_v6 - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v6 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 284 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v6 - example: [] - syntax: - content: ARMSubArch_v6 = 28 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6m - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6m - id: ARMSubArch_v6m - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v6m - nameWithType: SubArchKind.ARMSubArch_v6m - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6m - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v6m - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 287 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v6m - example: [] - syntax: - content: ARMSubArch_v6m = 29 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6k - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6k - id: ARMSubArch_v6k - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v6k - nameWithType: SubArchKind.ARMSubArch_v6k - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6k - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v6k - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 290 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v6k - example: [] - syntax: - content: ARMSubArch_v6k = 30 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6t2 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6t2 - id: ARMSubArch_v6t2 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v6t2 - nameWithType: SubArchKind.ARMSubArch_v6t2 - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v6t2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v6t2 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 293 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v6t2 - example: [] - syntax: - content: ARMSubArch_v6t2 = 31 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5 - id: ARMSubArch_v5 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v5 - nameWithType: SubArchKind.ARMSubArch_v5 - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v5 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 296 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v5 - example: [] - syntax: - content: ARMSubArch_v5 = 32 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5te - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5te - id: ARMSubArch_v5te - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v5te - nameWithType: SubArchKind.ARMSubArch_v5te - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v5te - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v5te - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 299 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v5te - example: [] - syntax: - content: ARMSubArch_v5te = 33 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v4t - commentId: F:Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v4t - id: ARMSubArch_v4t - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: ARMSubArch_v4t - nameWithType: SubArchKind.ARMSubArch_v4t - fullName: Ubiquity.NET.Llvm.SubArchKind.ARMSubArch_v4t - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ARMSubArch_v4t - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 302 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: ARM v4t - example: [] - syntax: - content: ARMSubArch_v4t = 34 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64e - commentId: F:Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64e - id: AArch64SubArch_Arm64e - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: AArch64SubArch_Arm64e - nameWithType: SubArchKind.AArch64SubArch_Arm64e - fullName: Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64e - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AArch64SubArch_Arm64e - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 305 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AArch64SubArch_Arm64e - example: [] - syntax: - content: AArch64SubArch_Arm64e = 35 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64ec - commentId: F:Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64ec - id: AArch64SubArch_Arm64ec - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: AArch64SubArch_Arm64ec - nameWithType: SubArchKind.AArch64SubArch_Arm64ec - fullName: Ubiquity.NET.Llvm.SubArchKind.AArch64SubArch_Arm64ec - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AArch64SubArch_Arm64ec - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 308 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AArch64SubArch_Arm64e - example: [] - syntax: - content: AArch64SubArch_Arm64ec = 36 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v3 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v3 - id: KalimbaSubArch_v3 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: KalimbaSubArch_v3 - nameWithType: SubArchKind.KalimbaSubArch_v3 - fullName: Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v3 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: KalimbaSubArch_v3 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 311 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Kalimba v3 - example: [] - syntax: - content: KalimbaSubArch_v3 = 37 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v4 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v4 - id: KalimbaSubArch_v4 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: KalimbaSubArch_v4 - nameWithType: SubArchKind.KalimbaSubArch_v4 - fullName: Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v4 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: KalimbaSubArch_v4 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 314 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Kalimba v4 - example: [] - syntax: - content: KalimbaSubArch_v4 = 38 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v5 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v5 - id: KalimbaSubArch_v5 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: KalimbaSubArch_v5 - nameWithType: SubArchKind.KalimbaSubArch_v5 - fullName: Ubiquity.NET.Llvm.SubArchKind.KalimbaSubArch_v5 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: KalimbaSubArch_v5 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 317 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Kalimba v5 - example: [] - syntax: - content: KalimbaSubArch_v5 = 39 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.MipsSubArch_r6 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.MipsSubArch_r6 - id: MipsSubArch_r6 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: MipsSubArch_r6 - nameWithType: SubArchKind.MipsSubArch_r6 - fullName: Ubiquity.NET.Llvm.SubArchKind.MipsSubArch_r6 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MipsSubArch_r6 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 320 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: MIPS R6 - example: [] - syntax: - content: MipsSubArch_r6 = 40 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.PowerPC_SPE - commentId: F:Ubiquity.NET.Llvm.SubArchKind.PowerPC_SPE - id: PowerPC_SPE - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: PowerPC_SPE - nameWithType: SubArchKind.PowerPC_SPE - fullName: Ubiquity.NET.Llvm.SubArchKind.PowerPC_SPE - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PowerPC_SPE - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 323 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: PowerPC SPE - example: [] - syntax: - content: PowerPC_SPE = 41 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v10 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v10 - id: SPIRVSubArch_v10 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: SPIRVSubArch_v10 - nameWithType: SubArchKind.SPIRVSubArch_v10 - fullName: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v10 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SPIRVSubArch_v10 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 328 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: SPIRVSubArch_v10 = 42 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v11 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v11 - id: SPIRVSubArch_v11 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: SPIRVSubArch_v11 - nameWithType: SubArchKind.SPIRVSubArch_v11 - fullName: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v11 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SPIRVSubArch_v11 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 329 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: SPIRVSubArch_v11 = 43 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v12 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v12 - id: SPIRVSubArch_v12 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: SPIRVSubArch_v12 - nameWithType: SubArchKind.SPIRVSubArch_v12 - fullName: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v12 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SPIRVSubArch_v12 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 330 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: SPIRVSubArch_v12 = 44 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v13 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v13 - id: SPIRVSubArch_v13 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: SPIRVSubArch_v13 - nameWithType: SubArchKind.SPIRVSubArch_v13 - fullName: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v13 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SPIRVSubArch_v13 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 331 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: SPIRVSubArch_v13 = 45 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v14 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v14 - id: SPIRVSubArch_v14 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: SPIRVSubArch_v14 - nameWithType: SubArchKind.SPIRVSubArch_v14 - fullName: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v14 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SPIRVSubArch_v14 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 332 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: SPIRVSubArch_v14 = 46 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v15 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v15 - id: SPIRVSubArch_v15 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: SPIRVSubArch_v15 - nameWithType: SubArchKind.SPIRVSubArch_v15 - fullName: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v15 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SPIRVSubArch_v15 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 333 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: SPIRVSubArch_v15 = 47 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v16 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v16 - id: SPIRVSubArch_v16 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: SPIRVSubArch_v16 - nameWithType: SubArchKind.SPIRVSubArch_v16 - fullName: Ubiquity.NET.Llvm.SubArchKind.SPIRVSubArch_v16 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SPIRVSubArch_v16 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 334 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: SPIRVSubArch_v16 = 48 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_0 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_0 - id: DXILSubArch_v1_0 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_0 - nameWithType: SubArchKind.DXILSubArch_v1_0 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_0 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_0 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 337 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_0 = 49 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_1 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_1 - id: DXILSubArch_v1_1 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_1 - nameWithType: SubArchKind.DXILSubArch_v1_1 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_1 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_1 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 338 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_1 = 50 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_2 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_2 - id: DXILSubArch_v1_2 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_2 - nameWithType: SubArchKind.DXILSubArch_v1_2 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_2 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_2 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 339 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_2 = 51 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_3 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_3 - id: DXILSubArch_v1_3 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_3 - nameWithType: SubArchKind.DXILSubArch_v1_3 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_3 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_3 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 340 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_3 = 52 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_4 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_4 - id: DXILSubArch_v1_4 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_4 - nameWithType: SubArchKind.DXILSubArch_v1_4 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_4 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_4 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 341 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_4 = 53 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_5 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_5 - id: DXILSubArch_v1_5 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_5 - nameWithType: SubArchKind.DXILSubArch_v1_5 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_5 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_5 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 342 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_5 = 54 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_6 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_6 - id: DXILSubArch_v1_6 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_6 - nameWithType: SubArchKind.DXILSubArch_v1_6 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_6 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_6 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 343 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_6 = 55 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_7 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_7 - id: DXILSubArch_v1_7 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_7 - nameWithType: SubArchKind.DXILSubArch_v1_7 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_7 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_7 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 344 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_7 = 56 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_8 - commentId: F:Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_8 - id: DXILSubArch_v1_8 - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: DXILSubArch_v1_8 - nameWithType: SubArchKind.DXILSubArch_v1_8 - fullName: Ubiquity.NET.Llvm.SubArchKind.DXILSubArch_v1_8 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DXILSubArch_v1_8 - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 345 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: DXILSubArch_v1_8 = 57 - return: - type: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind.LatestDXILSubArch - commentId: F:Ubiquity.NET.Llvm.SubArchKind.LatestDXILSubArch - id: LatestDXILSubArch - parent: Ubiquity.NET.Llvm.SubArchKind - langs: - - csharp - - vb - name: LatestDXILSubArch - nameWithType: SubArchKind.LatestDXILSubArch - fullName: Ubiquity.NET.Llvm.SubArchKind.LatestDXILSubArch - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LatestDXILSubArch - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 346 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - syntax: - content: LatestDXILSubArch = 57 - return: - type: Ubiquity.NET.Llvm.SubArchKind -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.SubArchKind - commentId: T:Ubiquity.NET.Llvm.SubArchKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.SubArchKind.html - name: SubArchKind - nameWithType: SubArchKind - fullName: Ubiquity.NET.Llvm.SubArchKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Target.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Target.yml deleted file mode 100644 index 63baee9c8b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Target.yml +++ /dev/null @@ -1,893 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Target - commentId: T:Ubiquity.NET.Llvm.Target - id: Target - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.Target.AvailableTargets - - Ubiquity.NET.Llvm.Target.CreateTargetMachine(System.String,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - - Ubiquity.NET.Llvm.Target.CreateTargetMachine(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - - Ubiquity.NET.Llvm.Target.Description - - Ubiquity.NET.Llvm.Target.FromTriple(System.String) - - Ubiquity.NET.Llvm.Target.FromTriple(Ubiquity.NET.Llvm.Triple) - - Ubiquity.NET.Llvm.Target.HasAsmBackEnd - - Ubiquity.NET.Llvm.Target.HasJIT - - Ubiquity.NET.Llvm.Target.HasTargetMachine - - Ubiquity.NET.Llvm.Target.Name - langs: - - csharp - - vb - name: Target - nameWithType: Target - fullName: Ubiquity.NET.Llvm.Target - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Target - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 89 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: LLVM Target Instruction Set Architecture - example: [] - syntax: - content: public class Target - content.vb: Public Class Target - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Target.Name - commentId: P:Ubiquity.NET.Llvm.Target.Name - id: Name - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: Name - nameWithType: Target.Name - fullName: Ubiquity.NET.Llvm.Target.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 92 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the name of this target - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.Target.Name* -- uid: Ubiquity.NET.Llvm.Target.Description - commentId: P:Ubiquity.NET.Llvm.Target.Description - id: Description - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: Description - nameWithType: Target.Description - fullName: Ubiquity.NET.Llvm.Target.Description - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Description - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 95 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the description of this target - example: [] - syntax: - content: public string Description { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Description As String - overload: Ubiquity.NET.Llvm.Target.Description* -- uid: Ubiquity.NET.Llvm.Target.HasJIT - commentId: P:Ubiquity.NET.Llvm.Target.HasJIT - id: HasJIT - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: HasJIT - nameWithType: Target.HasJIT - fullName: Ubiquity.NET.Llvm.Target.HasJIT - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HasJIT - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 98 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this target has JIT support - example: [] - syntax: - content: public bool HasJIT { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property HasJIT As Boolean - overload: Ubiquity.NET.Llvm.Target.HasJIT* -- uid: Ubiquity.NET.Llvm.Target.HasTargetMachine - commentId: P:Ubiquity.NET.Llvm.Target.HasTargetMachine - id: HasTargetMachine - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: HasTargetMachine - nameWithType: Target.HasTargetMachine - fullName: Ubiquity.NET.Llvm.Target.HasTargetMachine - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HasTargetMachine - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 101 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this target has a TargetMachine initialized - example: [] - syntax: - content: public bool HasTargetMachine { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property HasTargetMachine As Boolean - overload: Ubiquity.NET.Llvm.Target.HasTargetMachine* -- uid: Ubiquity.NET.Llvm.Target.HasAsmBackEnd - commentId: P:Ubiquity.NET.Llvm.Target.HasAsmBackEnd - id: HasAsmBackEnd - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: HasAsmBackEnd - nameWithType: Target.HasAsmBackEnd - fullName: Ubiquity.NET.Llvm.Target.HasAsmBackEnd - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HasAsmBackEnd - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a value indicating whether this target has an Assembly code generating back end initialized - example: [] - syntax: - content: public bool HasAsmBackEnd { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property HasAsmBackEnd As Boolean - overload: Ubiquity.NET.Llvm.Target.HasAsmBackEnd* -- uid: Ubiquity.NET.Llvm.Target.CreateTargetMachine(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - commentId: M:Ubiquity.NET.Llvm.Target.CreateTargetMachine(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - id: CreateTargetMachine(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: CreateTargetMachine(Triple, string?, string?, CodeGenOpt, RelocationMode, CodeModel) - nameWithType: Target.CreateTargetMachine(Triple, string?, string?, CodeGenOpt, RelocationMode, CodeModel) - fullName: Ubiquity.NET.Llvm.Target.CreateTargetMachine(Ubiquity.NET.Llvm.Triple, string?, string?, Ubiquity.NET.Llvm.CodeGenOpt, Ubiquity.NET.Llvm.RelocationMode, Ubiquity.NET.Llvm.CodeModel) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateTargetMachine - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 114 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a for the target and specified parameters - example: [] - syntax: - content: public TargetMachine CreateTargetMachine(Triple triple, string? cpu = null, string? features = null, CodeGenOpt optLevel = CodeGenOpt.Default, RelocationMode relocationMode = RelocationMode.Default, CodeModel codeModel = CodeModel.Default) - parameters: - - id: triple - type: Ubiquity.NET.Llvm.Triple - description: Target triple for this machine (e.g. -mtriple) - - id: cpu - type: System.String - description: CPU for this machine (e.g. -mcpu) - - id: features - type: System.String - description: Features for this machine (e.g. -mattr...) - - id: optLevel - type: Ubiquity.NET.Llvm.CodeGenOpt - description: Optimization level - - id: relocationMode - type: Ubiquity.NET.Llvm.RelocationMode - description: Relocation mode for generated code - - id: codeModel - type: Ubiquity.NET.Llvm.CodeModel - description: to use for generated code - return: - type: Ubiquity.NET.Llvm.TargetMachine - description: based on the specified parameters - content.vb: Public Function CreateTargetMachine(triple As Triple, cpu As String = Nothing, features As String = Nothing, optLevel As CodeGenOpt = CodeGenOpt.Default, relocationMode As RelocationMode = RelocationMode.Default, codeModel As CodeModel = CodeModel.Default) As TargetMachine - overload: Ubiquity.NET.Llvm.Target.CreateTargetMachine* - nameWithType.vb: Target.CreateTargetMachine(Triple, String, String, CodeGenOpt, RelocationMode, CodeModel) - fullName.vb: Ubiquity.NET.Llvm.Target.CreateTargetMachine(Ubiquity.NET.Llvm.Triple, String, String, Ubiquity.NET.Llvm.CodeGenOpt, Ubiquity.NET.Llvm.RelocationMode, Ubiquity.NET.Llvm.CodeModel) - name.vb: CreateTargetMachine(Triple, String, String, CodeGenOpt, RelocationMode, CodeModel) -- uid: Ubiquity.NET.Llvm.Target.CreateTargetMachine(System.String,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - commentId: M:Ubiquity.NET.Llvm.Target.CreateTargetMachine(System.String,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - id: CreateTargetMachine(System.String,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: CreateTargetMachine(string, string?, string?, CodeGenOpt, RelocationMode, CodeModel) - nameWithType: Target.CreateTargetMachine(string, string?, string?, CodeGenOpt, RelocationMode, CodeModel) - fullName: Ubiquity.NET.Llvm.Target.CreateTargetMachine(string, string?, string?, Ubiquity.NET.Llvm.CodeGenOpt, Ubiquity.NET.Llvm.RelocationMode, Ubiquity.NET.Llvm.CodeModel) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateTargetMachine - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 134 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a for the target and specified parameters - example: [] - syntax: - content: public TargetMachine CreateTargetMachine(string triple, string? cpu = null, string? features = null, CodeGenOpt optLevel = CodeGenOpt.Default, RelocationMode relocationMode = RelocationMode.Default, CodeModel codeModel = CodeModel.Default) - parameters: - - id: triple - type: System.String - description: Target triple for this machine (e.g. -mtriple) - - id: cpu - type: System.String - description: CPU for this machine (e.g. -mcpu) - - id: features - type: System.String - description: Features for this machine (e.g. -mattr...) - - id: optLevel - type: Ubiquity.NET.Llvm.CodeGenOpt - description: Optimization level - - id: relocationMode - type: Ubiquity.NET.Llvm.RelocationMode - description: Relocation mode for generated code - - id: codeModel - type: Ubiquity.NET.Llvm.CodeModel - description: to use for generated code - return: - type: Ubiquity.NET.Llvm.TargetMachine - description: based on the specified parameters - content.vb: Public Function CreateTargetMachine(triple As String, cpu As String = Nothing, features As String = Nothing, optLevel As CodeGenOpt = CodeGenOpt.Default, relocationMode As RelocationMode = RelocationMode.Default, codeModel As CodeModel = CodeModel.Default) As TargetMachine - overload: Ubiquity.NET.Llvm.Target.CreateTargetMachine* - nameWithType.vb: Target.CreateTargetMachine(String, String, String, CodeGenOpt, RelocationMode, CodeModel) - fullName.vb: Ubiquity.NET.Llvm.Target.CreateTargetMachine(String, String, String, Ubiquity.NET.Llvm.CodeGenOpt, Ubiquity.NET.Llvm.RelocationMode, Ubiquity.NET.Llvm.CodeModel) - name.vb: CreateTargetMachine(String, String, String, CodeGenOpt, RelocationMode, CodeModel) -- uid: Ubiquity.NET.Llvm.Target.AvailableTargets - commentId: P:Ubiquity.NET.Llvm.Target.AvailableTargets - id: AvailableTargets - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: AvailableTargets - nameWithType: Target.AvailableTargets - fullName: Ubiquity.NET.Llvm.Target.AvailableTargets - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AvailableTargets - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 147 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets an enumerable collection of the available targets built into this library - example: [] - syntax: - content: public static IEnumerable AvailableTargets { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Target} - content.vb: Public Shared ReadOnly Property AvailableTargets As IEnumerable(Of Target) - overload: Ubiquity.NET.Llvm.Target.AvailableTargets* -- uid: Ubiquity.NET.Llvm.Target.FromTriple(Ubiquity.NET.Llvm.Triple) - commentId: M:Ubiquity.NET.Llvm.Target.FromTriple(Ubiquity.NET.Llvm.Triple) - id: FromTriple(Ubiquity.NET.Llvm.Triple) - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: FromTriple(Triple) - nameWithType: Target.FromTriple(Triple) - fullName: Ubiquity.NET.Llvm.Target.FromTriple(Ubiquity.NET.Llvm.Triple) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FromTriple - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 163 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the target for a given target "triple" value - example: [] - syntax: - content: public static Target FromTriple(Triple triple) - parameters: - - id: triple - type: Ubiquity.NET.Llvm.Triple - description: Target describing the target - return: - type: Ubiquity.NET.Llvm.Target - description: Target for the given triple - content.vb: Public Shared Function FromTriple(triple As Triple) As Target - overload: Ubiquity.NET.Llvm.Target.FromTriple* -- uid: Ubiquity.NET.Llvm.Target.FromTriple(System.String) - commentId: M:Ubiquity.NET.Llvm.Target.FromTriple(System.String) - id: FromTriple(System.String) - parent: Ubiquity.NET.Llvm.Target - langs: - - csharp - - vb - name: FromTriple(string) - nameWithType: Target.FromTriple(string) - fullName: Ubiquity.NET.Llvm.Target.FromTriple(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Target.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FromTriple - path: ../src/Ubiquity.NET.Llvm/Target.cs - startLine: 168 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the target for a given target "triple" value - example: [] - syntax: - content: public static Target FromTriple(string targetTriple) - parameters: - - id: targetTriple - type: System.String - description: Target triple string describing the target - return: - type: Ubiquity.NET.Llvm.Target - description: Target for the given triple - content.vb: Public Shared Function FromTriple(targetTriple As String) As Target - overload: Ubiquity.NET.Llvm.Target.FromTriple* - nameWithType.vb: Target.FromTriple(String) - fullName.vb: Ubiquity.NET.Llvm.Target.FromTriple(String) - name.vb: FromTriple(String) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Target.Name* - commentId: Overload:Ubiquity.NET.Llvm.Target.Name - href: Ubiquity.NET.Llvm.Target.html#Ubiquity_NET_Llvm_Target_Name - name: Name - nameWithType: Target.Name - fullName: Ubiquity.NET.Llvm.Target.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Target.Description* - commentId: Overload:Ubiquity.NET.Llvm.Target.Description - href: Ubiquity.NET.Llvm.Target.html#Ubiquity_NET_Llvm_Target_Description - name: Description - nameWithType: Target.Description - fullName: Ubiquity.NET.Llvm.Target.Description -- uid: Ubiquity.NET.Llvm.Target.HasJIT* - commentId: Overload:Ubiquity.NET.Llvm.Target.HasJIT - href: Ubiquity.NET.Llvm.Target.html#Ubiquity_NET_Llvm_Target_HasJIT - name: HasJIT - nameWithType: Target.HasJIT - fullName: Ubiquity.NET.Llvm.Target.HasJIT -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Target.HasTargetMachine* - commentId: Overload:Ubiquity.NET.Llvm.Target.HasTargetMachine - href: Ubiquity.NET.Llvm.Target.html#Ubiquity_NET_Llvm_Target_HasTargetMachine - name: HasTargetMachine - nameWithType: Target.HasTargetMachine - fullName: Ubiquity.NET.Llvm.Target.HasTargetMachine -- uid: Ubiquity.NET.Llvm.Target.HasAsmBackEnd* - commentId: Overload:Ubiquity.NET.Llvm.Target.HasAsmBackEnd - href: Ubiquity.NET.Llvm.Target.html#Ubiquity_NET_Llvm_Target_HasAsmBackEnd - name: HasAsmBackEnd - nameWithType: Target.HasAsmBackEnd - fullName: Ubiquity.NET.Llvm.Target.HasAsmBackEnd -- uid: Ubiquity.NET.Llvm.TargetMachine - commentId: T:Ubiquity.NET.Llvm.TargetMachine - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetMachine.html - name: TargetMachine - nameWithType: TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine -- uid: Ubiquity.NET.Llvm.CodeModel - commentId: T:Ubiquity.NET.Llvm.CodeModel - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeModel.html - name: CodeModel - nameWithType: CodeModel - fullName: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.Target.CreateTargetMachine* - commentId: Overload:Ubiquity.NET.Llvm.Target.CreateTargetMachine - href: Ubiquity.NET.Llvm.Target.html#Ubiquity_NET_Llvm_Target_CreateTargetMachine_Ubiquity_NET_Llvm_Triple_System_String_System_String_Ubiquity_NET_Llvm_CodeGenOpt_Ubiquity_NET_Llvm_RelocationMode_Ubiquity_NET_Llvm_CodeModel_ - name: CreateTargetMachine - nameWithType: Target.CreateTargetMachine - fullName: Ubiquity.NET.Llvm.Target.CreateTargetMachine -- uid: Ubiquity.NET.Llvm.Triple - commentId: T:Ubiquity.NET.Llvm.Triple - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Triple.html - name: Triple - nameWithType: Triple - fullName: Ubiquity.NET.Llvm.Triple -- uid: Ubiquity.NET.Llvm.CodeGenOpt - commentId: T:Ubiquity.NET.Llvm.CodeGenOpt - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenOpt.html - name: CodeGenOpt - nameWithType: CodeGenOpt - fullName: Ubiquity.NET.Llvm.CodeGenOpt -- uid: Ubiquity.NET.Llvm.RelocationMode - commentId: T:Ubiquity.NET.Llvm.RelocationMode - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.RelocationMode.html - name: RelocationMode - nameWithType: RelocationMode - fullName: Ubiquity.NET.Llvm.RelocationMode -- uid: Ubiquity.NET.Llvm.Target.AvailableTargets* - commentId: Overload:Ubiquity.NET.Llvm.Target.AvailableTargets - href: Ubiquity.NET.Llvm.Target.html#Ubiquity_NET_Llvm_Target_AvailableTargets - name: AvailableTargets - nameWithType: Target.AvailableTargets - fullName: Ubiquity.NET.Llvm.Target.AvailableTargets -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Target} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Target} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Target) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Target) - name.vb: IEnumerable(Of Target) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Target - name: Target - href: Ubiquity.NET.Llvm.Target.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Target - name: Target - href: Ubiquity.NET.Llvm.Target.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Target.FromTriple* - commentId: Overload:Ubiquity.NET.Llvm.Target.FromTriple - href: Ubiquity.NET.Llvm.Target.html#Ubiquity_NET_Llvm_Target_FromTriple_Ubiquity_NET_Llvm_Triple_ - name: FromTriple - nameWithType: Target.FromTriple - fullName: Ubiquity.NET.Llvm.Target.FromTriple -- uid: Ubiquity.NET.Llvm.Target - commentId: T:Ubiquity.NET.Llvm.Target - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Target.html - name: Target - nameWithType: Target - fullName: Ubiquity.NET.Llvm.Target diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.TargetMachine.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.TargetMachine.yml deleted file mode 100644 index 3c56f2c266..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.TargetMachine.yml +++ /dev/null @@ -1,872 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.TargetMachine - commentId: T:Ubiquity.NET.Llvm.TargetMachine - id: TargetMachine - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.TargetMachine.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - - Ubiquity.NET.Llvm.TargetMachine.Cpu - - Ubiquity.NET.Llvm.TargetMachine.CreateTargetData - - Ubiquity.NET.Llvm.TargetMachine.Dispose - - Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer(Ubiquity.NET.Llvm.IModule,Ubiquity.NET.Llvm.CodeGenFileKind) - - Ubiquity.NET.Llvm.TargetMachine.EmitToFile(Ubiquity.NET.Llvm.IModule,System.String,Ubiquity.NET.Llvm.CodeGenFileKind,System.Boolean) - - Ubiquity.NET.Llvm.TargetMachine.Features - - Ubiquity.NET.Llvm.TargetMachine.FromTriple(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - - Ubiquity.NET.Llvm.TargetMachine.Target - - Ubiquity.NET.Llvm.TargetMachine.Triple - langs: - - csharp - - vb - name: TargetMachine - nameWithType: TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetMachine - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Target specific code generation information - example: [] - syntax: - content: 'public sealed class TargetMachine : IDisposable' - content.vb: Public NotInheritable Class TargetMachine Implements IDisposable - inheritance: - - System.Object - implements: - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.TargetMachine.Dispose - commentId: M:Ubiquity.NET.Llvm.TargetMachine.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: Dispose() - nameWithType: TargetMachine.Dispose() - fullName: Ubiquity.NET.Llvm.TargetMachine.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.TargetMachine.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.TargetMachine.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - commentId: M:Ubiquity.NET.Llvm.TargetMachine.#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - id: '#ctor(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel)' - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: TargetMachine(Triple, string?, string?, CodeGenOpt, RelocationMode, CodeModel) - nameWithType: TargetMachine.TargetMachine(Triple, string?, string?, CodeGenOpt, RelocationMode, CodeModel) - fullName: Ubiquity.NET.Llvm.TargetMachine.TargetMachine(Ubiquity.NET.Llvm.Triple, string?, string?, Ubiquity.NET.Llvm.CodeGenOpt, Ubiquity.NET.Llvm.RelocationMode, Ubiquity.NET.Llvm.CodeModel) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public TargetMachine(Triple triple, string? cpu = null, string? features = null, CodeGenOpt optLevel = CodeGenOpt.Default, RelocationMode relocationMode = RelocationMode.Default, CodeModel codeModel = CodeModel.Default) - parameters: - - id: triple - type: Ubiquity.NET.Llvm.Triple - description: Triple for the target machine - - id: cpu - type: System.String - description: CPU options for the machine - - id: features - type: System.String - description: CPU features for the machine - - id: optLevel - type: Ubiquity.NET.Llvm.CodeGenOpt - description: General optimization level for machine code generation - - id: relocationMode - type: Ubiquity.NET.Llvm.RelocationMode - description: Relocation mode for machine code generation - - id: codeModel - type: Ubiquity.NET.Llvm.CodeModel - description: Code model for machine code generation - content.vb: Public Sub New(triple As Triple, cpu As String = Nothing, features As String = Nothing, optLevel As CodeGenOpt = CodeGenOpt.Default, relocationMode As RelocationMode = RelocationMode.Default, codeModel As CodeModel = CodeModel.Default) - overload: Ubiquity.NET.Llvm.TargetMachine.#ctor* - nameWithType.vb: TargetMachine.New(Triple, String, String, CodeGenOpt, RelocationMode, CodeModel) - fullName.vb: Ubiquity.NET.Llvm.TargetMachine.New(Ubiquity.NET.Llvm.Triple, String, String, Ubiquity.NET.Llvm.CodeGenOpt, Ubiquity.NET.Llvm.RelocationMode, Ubiquity.NET.Llvm.CodeModel) - name.vb: New(Triple, String, String, CodeGenOpt, RelocationMode, CodeModel) -- uid: Ubiquity.NET.Llvm.TargetMachine.Target - commentId: P:Ubiquity.NET.Llvm.TargetMachine.Target - id: Target - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: Target - nameWithType: TargetMachine.Target - fullName: Ubiquity.NET.Llvm.TargetMachine.Target - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Target - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the target that owns this - example: [] - syntax: - content: public Target Target { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Target - content.vb: Public ReadOnly Property Target As Target - overload: Ubiquity.NET.Llvm.TargetMachine.Target* -- uid: Ubiquity.NET.Llvm.TargetMachine.Triple - commentId: P:Ubiquity.NET.Llvm.TargetMachine.Triple - id: Triple - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: Triple - nameWithType: TargetMachine.Triple - fullName: Ubiquity.NET.Llvm.TargetMachine.Triple - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Triple - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the target triple describing this machine - example: [] - syntax: - content: public string Triple { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Triple As String - overload: Ubiquity.NET.Llvm.TargetMachine.Triple* -- uid: Ubiquity.NET.Llvm.TargetMachine.Cpu - commentId: P:Ubiquity.NET.Llvm.TargetMachine.Cpu - id: Cpu - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: Cpu - nameWithType: TargetMachine.Cpu - fullName: Ubiquity.NET.Llvm.TargetMachine.Cpu - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cpu - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the CPU Type for this machine - example: [] - syntax: - content: public string Cpu { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Cpu As String - overload: Ubiquity.NET.Llvm.TargetMachine.Cpu* -- uid: Ubiquity.NET.Llvm.TargetMachine.Features - commentId: P:Ubiquity.NET.Llvm.TargetMachine.Features - id: Features - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: Features - nameWithType: TargetMachine.Features - fullName: Ubiquity.NET.Llvm.TargetMachine.Features - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Features - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the CPU specific features for this machine - example: [] - syntax: - content: public string Features { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Features As String - overload: Ubiquity.NET.Llvm.TargetMachine.Features* -- uid: Ubiquity.NET.Llvm.TargetMachine.CreateTargetData - commentId: M:Ubiquity.NET.Llvm.TargetMachine.CreateTargetData - id: CreateTargetData - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: CreateTargetData() - nameWithType: TargetMachine.CreateTargetData() - fullName: Ubiquity.NET.Llvm.TargetMachine.CreateTargetData() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateTargetData - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates Data Layout information for this machine - example: [] - syntax: - content: public DataLayout CreateTargetData() - return: - type: Ubiquity.NET.Llvm.DataLayout - content.vb: Public Function CreateTargetData() As DataLayout - overload: Ubiquity.NET.Llvm.TargetMachine.CreateTargetData* -- uid: Ubiquity.NET.Llvm.TargetMachine.EmitToFile(Ubiquity.NET.Llvm.IModule,System.String,Ubiquity.NET.Llvm.CodeGenFileKind,System.Boolean) - commentId: M:Ubiquity.NET.Llvm.TargetMachine.EmitToFile(Ubiquity.NET.Llvm.IModule,System.String,Ubiquity.NET.Llvm.CodeGenFileKind,System.Boolean) - id: EmitToFile(Ubiquity.NET.Llvm.IModule,System.String,Ubiquity.NET.Llvm.CodeGenFileKind,System.Boolean) - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: EmitToFile(IModule, string, CodeGenFileKind, bool) - nameWithType: TargetMachine.EmitToFile(IModule, string, CodeGenFileKind, bool) - fullName: Ubiquity.NET.Llvm.TargetMachine.EmitToFile(Ubiquity.NET.Llvm.IModule, string, Ubiquity.NET.Llvm.CodeGenFileKind, bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EmitToFile - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Generate code for the target machine from a module - example: [] - syntax: - content: public void EmitToFile(IModule module, string path, CodeGenFileKind fileType, bool skipVerify = false) - parameters: - - id: module - type: Ubiquity.NET.Llvm.IModule - description: to generate the code from - - id: path - type: System.String - description: Path to the output file - - id: fileType - type: Ubiquity.NET.Llvm.CodeGenFileKind - description: Type of file to emit - - id: skipVerify - type: System.Boolean - description: 'Skips verification [Default: false; verification of module performed]' - content.vb: Public Sub EmitToFile([module] As IModule, path As String, fileType As CodeGenFileKind, skipVerify As Boolean = False) - overload: Ubiquity.NET.Llvm.TargetMachine.EmitToFile* - nameWithType.vb: TargetMachine.EmitToFile(IModule, String, CodeGenFileKind, Boolean) - fullName.vb: Ubiquity.NET.Llvm.TargetMachine.EmitToFile(Ubiquity.NET.Llvm.IModule, String, Ubiquity.NET.Llvm.CodeGenFileKind, Boolean) - name.vb: EmitToFile(IModule, String, CodeGenFileKind, Boolean) -- uid: Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer(Ubiquity.NET.Llvm.IModule,Ubiquity.NET.Llvm.CodeGenFileKind) - commentId: M:Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer(Ubiquity.NET.Llvm.IModule,Ubiquity.NET.Llvm.CodeGenFileKind) - id: EmitToBuffer(Ubiquity.NET.Llvm.IModule,Ubiquity.NET.Llvm.CodeGenFileKind) - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: EmitToBuffer(IModule, CodeGenFileKind) - nameWithType: TargetMachine.EmitToBuffer(IModule, CodeGenFileKind) - fullName: Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer(Ubiquity.NET.Llvm.IModule, Ubiquity.NET.Llvm.CodeGenFileKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EmitToBuffer - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Emits the module for the target machine to a - remarks: >- - The must match the for this - - target. - example: [] - syntax: - content: public MemoryBuffer EmitToBuffer(IModule module, CodeGenFileKind fileType) - parameters: - - id: module - type: Ubiquity.NET.Llvm.IModule - description: ModuleHandle to emit to the buffer - - id: fileType - type: Ubiquity.NET.Llvm.CodeGenFileKind - description: Type of file to generate into the buffer - return: - type: Ubiquity.NET.Llvm.MemoryBuffer - description: containing the generated code - content.vb: Public Function EmitToBuffer([module] As IModule, fileType As CodeGenFileKind) As MemoryBuffer - overload: Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer* -- uid: Ubiquity.NET.Llvm.TargetMachine.FromTriple(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - commentId: M:Ubiquity.NET.Llvm.TargetMachine.FromTriple(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - id: FromTriple(Ubiquity.NET.Llvm.Triple,System.String,System.String,Ubiquity.NET.Llvm.CodeGenOpt,Ubiquity.NET.Llvm.RelocationMode,Ubiquity.NET.Llvm.CodeModel) - parent: Ubiquity.NET.Llvm.TargetMachine - langs: - - csharp - - vb - name: FromTriple(Triple, string?, string?, CodeGenOpt, RelocationMode, CodeModel) - nameWithType: TargetMachine.FromTriple(Triple, string?, string?, CodeGenOpt, RelocationMode, CodeModel) - fullName: Ubiquity.NET.Llvm.TargetMachine.FromTriple(Ubiquity.NET.Llvm.Triple, string?, string?, Ubiquity.NET.Llvm.CodeGenOpt, Ubiquity.NET.Llvm.RelocationMode, Ubiquity.NET.Llvm.CodeModel) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/TargetMachine.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FromTriple - path: ../src/Ubiquity.NET.Llvm/TargetMachine.cs - startLine: 125 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Creates a for the triple and specified parameters - example: [] - syntax: - content: public static TargetMachine FromTriple(Triple triple, string? cpu = null, string? features = null, CodeGenOpt optLevel = CodeGenOpt.Default, RelocationMode relocationMode = RelocationMode.Default, CodeModel codeModel = CodeModel.Default) - parameters: - - id: triple - type: Ubiquity.NET.Llvm.Triple - description: Target triple for this machine (e.g. -mtriple) - - id: cpu - type: System.String - description: CPU for this machine (e.g. -mcpu) - - id: features - type: System.String - description: Features for this machine (e.g. -mattr...) - - id: optLevel - type: Ubiquity.NET.Llvm.CodeGenOpt - description: Optimization level - - id: relocationMode - type: Ubiquity.NET.Llvm.RelocationMode - description: Relocation mode for generated code - - id: codeModel - type: Ubiquity.NET.Llvm.CodeModel - description: to use for generated code - return: - type: Ubiquity.NET.Llvm.TargetMachine - description: based on the specified parameters - content.vb: Public Shared Function FromTriple(triple As Triple, cpu As String = Nothing, features As String = Nothing, optLevel As CodeGenOpt = CodeGenOpt.Default, relocationMode As RelocationMode = RelocationMode.Default, codeModel As CodeModel = CodeModel.Default) As TargetMachine - overload: Ubiquity.NET.Llvm.TargetMachine.FromTriple* - nameWithType.vb: TargetMachine.FromTriple(Triple, String, String, CodeGenOpt, RelocationMode, CodeModel) - fullName.vb: Ubiquity.NET.Llvm.TargetMachine.FromTriple(Ubiquity.NET.Llvm.Triple, String, String, Ubiquity.NET.Llvm.CodeGenOpt, Ubiquity.NET.Llvm.RelocationMode, Ubiquity.NET.Llvm.CodeModel) - name.vb: FromTriple(Triple, String, String, CodeGenOpt, RelocationMode, CodeModel) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.TargetMachine.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.Dispose - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_Dispose - name: Dispose - nameWithType: TargetMachine.Dispose - fullName: Ubiquity.NET.Llvm.TargetMachine.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.TargetMachine - commentId: T:Ubiquity.NET.Llvm.TargetMachine - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetMachine.html - name: TargetMachine - nameWithType: TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine -- uid: Ubiquity.NET.Llvm.TargetMachine.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.#ctor - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine__ctor_Ubiquity_NET_Llvm_Triple_System_String_System_String_Ubiquity_NET_Llvm_CodeGenOpt_Ubiquity_NET_Llvm_RelocationMode_Ubiquity_NET_Llvm_CodeModel_ - name: TargetMachine - nameWithType: TargetMachine.TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine.TargetMachine - nameWithType.vb: TargetMachine.New - fullName.vb: Ubiquity.NET.Llvm.TargetMachine.New - name.vb: New -- uid: Ubiquity.NET.Llvm.Triple - commentId: T:Ubiquity.NET.Llvm.Triple - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Triple.html - name: Triple - nameWithType: Triple - fullName: Ubiquity.NET.Llvm.Triple -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.CodeGenOpt - commentId: T:Ubiquity.NET.Llvm.CodeGenOpt - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenOpt.html - name: CodeGenOpt - nameWithType: CodeGenOpt - fullName: Ubiquity.NET.Llvm.CodeGenOpt -- uid: Ubiquity.NET.Llvm.RelocationMode - commentId: T:Ubiquity.NET.Llvm.RelocationMode - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.RelocationMode.html - name: RelocationMode - nameWithType: RelocationMode - fullName: Ubiquity.NET.Llvm.RelocationMode -- uid: Ubiquity.NET.Llvm.CodeModel - commentId: T:Ubiquity.NET.Llvm.CodeModel - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeModel.html - name: CodeModel - nameWithType: CodeModel - fullName: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.TargetMachine.Target* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.Target - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_Target - name: Target - nameWithType: TargetMachine.Target - fullName: Ubiquity.NET.Llvm.TargetMachine.Target -- uid: Ubiquity.NET.Llvm.Target - commentId: T:Ubiquity.NET.Llvm.Target - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Target.html - name: Target - nameWithType: Target - fullName: Ubiquity.NET.Llvm.Target -- uid: Ubiquity.NET.Llvm.TargetMachine.Triple* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.Triple - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_Triple - name: Triple - nameWithType: TargetMachine.Triple - fullName: Ubiquity.NET.Llvm.TargetMachine.Triple -- uid: Ubiquity.NET.Llvm.TargetMachine.Cpu* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.Cpu - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_Cpu - name: Cpu - nameWithType: TargetMachine.Cpu - fullName: Ubiquity.NET.Llvm.TargetMachine.Cpu -- uid: Ubiquity.NET.Llvm.TargetMachine.Features* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.Features - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_Features - name: Features - nameWithType: TargetMachine.Features - fullName: Ubiquity.NET.Llvm.TargetMachine.Features -- uid: Ubiquity.NET.Llvm.TargetMachine.CreateTargetData* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.CreateTargetData - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_CreateTargetData - name: CreateTargetData - nameWithType: TargetMachine.CreateTargetData - fullName: Ubiquity.NET.Llvm.TargetMachine.CreateTargetData -- uid: Ubiquity.NET.Llvm.DataLayout - commentId: T:Ubiquity.NET.Llvm.DataLayout - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DataLayout.html - name: DataLayout - nameWithType: DataLayout - fullName: Ubiquity.NET.Llvm.DataLayout -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm.TargetMachine.EmitToFile* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.EmitToFile - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_EmitToFile_Ubiquity_NET_Llvm_IModule_System_String_Ubiquity_NET_Llvm_CodeGenFileKind_System_Boolean_ - name: EmitToFile - nameWithType: TargetMachine.EmitToFile - fullName: Ubiquity.NET.Llvm.TargetMachine.EmitToFile -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IModule.html - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule -- uid: Ubiquity.NET.Llvm.CodeGenFileKind - commentId: T:Ubiquity.NET.Llvm.CodeGenFileKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenFileKind.html - name: CodeGenFileKind - nameWithType: CodeGenFileKind - fullName: Ubiquity.NET.Llvm.CodeGenFileKind -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.MemoryBuffer - commentId: T:Ubiquity.NET.Llvm.MemoryBuffer - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.MemoryBuffer.html - name: MemoryBuffer - nameWithType: MemoryBuffer - fullName: Ubiquity.NET.Llvm.MemoryBuffer -- uid: Ubiquity.NET.Llvm.Module.TargetTriple - commentId: P:Ubiquity.NET.Llvm.Module.TargetTriple - href: Ubiquity.NET.Llvm.Module.html#Ubiquity_NET_Llvm_Module_TargetTriple - name: TargetTriple - nameWithType: Module.TargetTriple - fullName: Ubiquity.NET.Llvm.Module.TargetTriple -- uid: Ubiquity.NET.Llvm.TargetMachine.Triple - commentId: P:Ubiquity.NET.Llvm.TargetMachine.Triple - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_Triple - name: Triple - nameWithType: TargetMachine.Triple - fullName: Ubiquity.NET.Llvm.TargetMachine.Triple -- uid: Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_EmitToBuffer_Ubiquity_NET_Llvm_IModule_Ubiquity_NET_Llvm_CodeGenFileKind_ - name: EmitToBuffer - nameWithType: TargetMachine.EmitToBuffer - fullName: Ubiquity.NET.Llvm.TargetMachine.EmitToBuffer -- uid: Ubiquity.NET.Llvm.TargetMachine.FromTriple* - commentId: Overload:Ubiquity.NET.Llvm.TargetMachine.FromTriple - href: Ubiquity.NET.Llvm.TargetMachine.html#Ubiquity_NET_Llvm_TargetMachine_FromTriple_Ubiquity_NET_Llvm_Triple_System_String_System_String_Ubiquity_NET_Llvm_CodeGenOpt_Ubiquity_NET_Llvm_RelocationMode_Ubiquity_NET_Llvm_CodeModel_ - name: FromTriple - nameWithType: TargetMachine.FromTriple - fullName: Ubiquity.NET.Llvm.TargetMachine.FromTriple diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.TargetRegistration.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.TargetRegistration.yml deleted file mode 100644 index bc1af07299..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.TargetRegistration.yml +++ /dev/null @@ -1,341 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.TargetRegistration - commentId: T:Ubiquity.NET.Llvm.TargetRegistration - id: TargetRegistration - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.TargetRegistration.All - - Ubiquity.NET.Llvm.TargetRegistration.AsmParser - - Ubiquity.NET.Llvm.TargetRegistration.AsmPrinter - - Ubiquity.NET.Llvm.TargetRegistration.CodeGen - - Ubiquity.NET.Llvm.TargetRegistration.Disassembler - - Ubiquity.NET.Llvm.TargetRegistration.None - - Ubiquity.NET.Llvm.TargetRegistration.Target - - Ubiquity.NET.Llvm.TargetRegistration.TargetInfo - - Ubiquity.NET.Llvm.TargetRegistration.TargetMachine - langs: - - csharp - - vb - name: TargetRegistration - nameWithType: TargetRegistration - fullName: Ubiquity.NET.Llvm.TargetRegistration - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetRegistration - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Target tools to register/enable - example: [] - syntax: - content: >- - [Flags] - - public enum TargetRegistration - content.vb: >- - - - Public Enum TargetRegistration - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: Ubiquity.NET.Llvm.TargetRegistration.None - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.None - id: None - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: None - nameWithType: TargetRegistration.None - fullName: Ubiquity.NET.Llvm.TargetRegistration.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Register nothing - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.TargetRegistration.Target - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.Target - id: Target - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: Target - nameWithType: TargetRegistration.Target - fullName: Ubiquity.NET.Llvm.TargetRegistration.Target - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Target - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Register the Target class - example: [] - syntax: - content: Target = 1 - return: - type: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.TargetRegistration.TargetInfo - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.TargetInfo - id: TargetInfo - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: TargetInfo - nameWithType: TargetRegistration.TargetInfo - fullName: Ubiquity.NET.Llvm.TargetRegistration.TargetInfo - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetInfo - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Register the Target info for the target - example: [] - syntax: - content: TargetInfo = 2 - return: - type: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.TargetRegistration.TargetMachine - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.TargetMachine - id: TargetMachine - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: TargetMachine - nameWithType: TargetRegistration.TargetMachine - fullName: Ubiquity.NET.Llvm.TargetRegistration.TargetMachine - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetMachine - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Register the target machine(s) for a target - example: [] - syntax: - content: TargetMachine = 4 - return: - type: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.TargetRegistration.AsmPrinter - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.AsmPrinter - id: AsmPrinter - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: AsmPrinter - nameWithType: TargetRegistration.AsmPrinter - fullName: Ubiquity.NET.Llvm.TargetRegistration.AsmPrinter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AsmPrinter - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Registers the assembly source code generator for a target - example: [] - syntax: - content: AsmPrinter = 8 - return: - type: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.TargetRegistration.Disassembler - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.Disassembler - id: Disassembler - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: Disassembler - nameWithType: TargetRegistration.Disassembler - fullName: Ubiquity.NET.Llvm.TargetRegistration.Disassembler - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Disassembler - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Registers the Disassembler for a target - example: [] - syntax: - content: Disassembler = 16 - return: - type: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.TargetRegistration.AsmParser - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.AsmParser - id: AsmParser - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: AsmParser - nameWithType: TargetRegistration.AsmParser - fullName: Ubiquity.NET.Llvm.TargetRegistration.AsmParser - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AsmParser - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Registers the assembly source parser for a target - example: [] - syntax: - content: AsmParser = 32 - return: - type: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.TargetRegistration.CodeGen - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.CodeGen - id: CodeGen - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: CodeGen - nameWithType: TargetRegistration.CodeGen - fullName: Ubiquity.NET.Llvm.TargetRegistration.CodeGen - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CodeGen - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Registers all the code generation components - example: [] - syntax: - content: CodeGen = Target | TargetInfo | TargetMachine - return: - type: Ubiquity.NET.Llvm.TargetRegistration - content.vb: CodeGen = Target Or TargetInfo Or TargetMachine -- uid: Ubiquity.NET.Llvm.TargetRegistration.All - commentId: F:Ubiquity.NET.Llvm.TargetRegistration.All - id: All - parent: Ubiquity.NET.Llvm.TargetRegistration - langs: - - csharp - - vb - name: All - nameWithType: TargetRegistration.All - fullName: Ubiquity.NET.Llvm.TargetRegistration.All - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/ILibLLVM.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: All - path: ../src/Ubiquity.NET.Llvm/ILibLLVM.cs - startLine: 97 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Registers all components - example: [] - syntax: - content: All = CodeGen | AsmPrinter | Disassembler | AsmParser - return: - type: Ubiquity.NET.Llvm.TargetRegistration - content.vb: All = CodeGen Or AsmPrinter Or Disassembler Or AsmParser -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.TargetRegistration - commentId: T:Ubiquity.NET.Llvm.TargetRegistration - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetRegistration.html - name: TargetRegistration - nameWithType: TargetRegistration - fullName: Ubiquity.NET.Llvm.TargetRegistration diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.yml deleted file mode 100644 index de19e98f8e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.yml +++ /dev/null @@ -1,607 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - id: FunctionPassManager - parent: Ubiquity.NET.Llvm.Transforms.Legacy - children: - - Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.#ctor(Ubiquity.NET.Llvm.Module) - - Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish - - Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize - - Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run(Ubiquity.NET.Llvm.Values.Function) - langs: - - csharp - - vb - name: FunctionPassManager - nameWithType: FunctionPassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FunctionPassManager - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: LLVM pass manager for functions - example: [] - syntax: - content: >- - [Obsolete("Legacy pass manager support is considered obsolete - use one of the TryRunPasses overloads on Function instead")] - - public sealed class FunctionPassManager : PassManager - content.vb: >- - - - Public NotInheritable Class FunctionPassManager Inherits PassManager - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - inheritedMembers: - - Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Legacy pass manager support is considered obsolete - use one of the TryRunPasses overloads on Function instead -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.#ctor(Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.#ctor(Ubiquity.NET.Llvm.Module) - id: '#ctor(Ubiquity.NET.Llvm.Module)' - parent: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - langs: - - csharp - - vb - name: FunctionPassManager(Module) - nameWithType: FunctionPassManager.FunctionPassManager(Module) - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.FunctionPassManager(Ubiquity.NET.Llvm.Module) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public FunctionPassManager(Module module) - parameters: - - id: module - type: Ubiquity.NET.Llvm.Module - description: Module that owns the functions this manager works on - content.vb: Public Sub New([module] As [Module]) - overload: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.#ctor* - nameWithType.vb: FunctionPassManager.New(Module) - fullName.vb: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.New(Ubiquity.NET.Llvm.Module) - name.vb: New(Module) -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize - id: Initialize - parent: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - langs: - - csharp - - vb - name: Initialize() - nameWithType: FunctionPassManager.Initialize() - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Initialize - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Initializes the passes registered in the pass manager - example: [] - syntax: - content: public bool Initialize() - return: - type: System.Boolean - description: trueif any of the passes modified the module - content.vb: Public Function Initialize() As Boolean - overload: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize* -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run(Ubiquity.NET.Llvm.Values.Function) - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run(Ubiquity.NET.Llvm.Values.Function) - id: Run(Ubiquity.NET.Llvm.Values.Function) - parent: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - langs: - - csharp - - vb - name: Run(Function) - nameWithType: FunctionPassManager.Run(Function) - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run(Ubiquity.NET.Llvm.Values.Function) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Run - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Runs the passes registered in the pass manager - example: [] - syntax: - content: public bool Run(Function target) - parameters: - - id: target - type: Ubiquity.NET.Llvm.Values.Function - description: Function to run the passes on - return: - type: System.Boolean - description: trueif any of the passes modified the module - content.vb: Public Function Run(target As [Function]) As Boolean - overload: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run* -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish - id: Finish - parent: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - langs: - - csharp - - vb - name: Finish() - nameWithType: FunctionPassManager.Finish() - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Finish - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/FunctionPassManager.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Finalizes all of the function passes scheduled in the function pass manager. - example: [] - syntax: - content: public bool Finish() - return: - type: System.Boolean - description: trueif any of the passes modified the module - content.vb: Public Function Finish() As Boolean - overload: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish* -references: -- uid: Ubiquity.NET.Llvm.Transforms.Legacy - commentId: N:Ubiquity.NET.Llvm.Transforms.Legacy - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Transforms.Legacy - nameWithType: Ubiquity.NET.Llvm.Transforms.Legacy - fullName: Ubiquity.NET.Llvm.Transforms.Legacy - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms - name: Transforms - href: Ubiquity.NET.Llvm.Transforms.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms - name: Transforms - href: Ubiquity.NET.Llvm.Transforms.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - parent: Ubiquity.NET.Llvm.Transforms.Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html - name: PassManager - nameWithType: PassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - parent: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_PassManager_AddAnalysisPasses_Ubiquity_NET_Llvm_TargetMachine_ - name: AddAnalysisPasses(TargetMachine) - nameWithType: PassManager.AddAnalysisPasses(TargetMachine) - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - name: AddAnalysisPasses - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_PassManager_AddAnalysisPasses_Ubiquity_NET_Llvm_TargetMachine_ - - name: ( - - uid: Ubiquity.NET.Llvm.TargetMachine - name: TargetMachine - href: Ubiquity.NET.Llvm.TargetMachine.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - name: AddAnalysisPasses - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_PassManager_AddAnalysisPasses_Ubiquity_NET_Llvm_TargetMachine_ - - name: ( - - uid: Ubiquity.NET.Llvm.TargetMachine - name: TargetMachine - href: Ubiquity.NET.Llvm.TargetMachine.html - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - href: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.html - name: FunctionPassManager - nameWithType: FunctionPassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.#ctor - href: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_FunctionPassManager__ctor_Ubiquity_NET_Llvm_Module_ - name: FunctionPassManager - nameWithType: FunctionPassManager.FunctionPassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.FunctionPassManager - nameWithType.vb: FunctionPassManager.New - fullName.vb: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.New - name.vb: New -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize* - commentId: Overload:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize - href: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_FunctionPassManager_Initialize - name: Initialize - nameWithType: FunctionPassManager.Initialize - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Initialize -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run* - commentId: Overload:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run - href: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_FunctionPassManager_Run_Ubiquity_NET_Llvm_Values_Function_ - name: Run - nameWithType: FunctionPassManager.Run - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Run -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish* - commentId: Overload:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish - href: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_FunctionPassManager_Finish - name: Finish - nameWithType: FunctionPassManager.Finish - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.Finish diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.yml deleted file mode 100644 index 4306d7699b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.yml +++ /dev/null @@ -1,482 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - id: ModulePassManager - parent: Ubiquity.NET.Llvm.Transforms.Legacy - children: - - Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.#ctor - - Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run(Ubiquity.NET.Llvm.Module) - langs: - - csharp - - vb - name: ModulePassManager - nameWithType: ModulePassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/ModulePassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ModulePassManager - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/ModulePassManager.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Pass manager for running passes against an entire module - example: [] - syntax: - content: >- - [Obsolete("Legacy pass manager support is considered obsolete - use one of the TryRunPasses overloads on Module instead")] - - public sealed class ModulePassManager : PassManager - content.vb: >- - - - Public NotInheritable Class ModulePassManager Inherits PassManager - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - inheritedMembers: - - Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Legacy pass manager support is considered obsolete - use one of the TryRunPasses overloads on Module instead -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.#ctor - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.#ctor - id: '#ctor' - parent: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - langs: - - csharp - - vb - name: ModulePassManager() - nameWithType: ModulePassManager.ModulePassManager() - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.ModulePassManager() - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/ModulePassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/ModulePassManager.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Initializes a new instance of the class. - example: [] - syntax: - content: public ModulePassManager() - content.vb: Public Sub New() - overload: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.#ctor* - nameWithType.vb: ModulePassManager.New() - fullName.vb: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.New() - name.vb: New() -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run(Ubiquity.NET.Llvm.Module) - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run(Ubiquity.NET.Llvm.Module) - id: Run(Ubiquity.NET.Llvm.Module) - parent: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - langs: - - csharp - - vb - name: Run(Module) - nameWithType: ModulePassManager.Run(Module) - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run(Ubiquity.NET.Llvm.Module) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/ModulePassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Run - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/ModulePassManager.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Runs the passes added to this manager for the target module - example: [] - syntax: - content: public bool Run(Module target) - parameters: - - id: target - type: Ubiquity.NET.Llvm.Module - description: Module to run the passes on - return: - type: System.Boolean - description: true if one of the passes modified the module - content.vb: Public Function Run(target As [Module]) As Boolean - overload: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run* -references: -- uid: Ubiquity.NET.Llvm.Transforms.Legacy - commentId: N:Ubiquity.NET.Llvm.Transforms.Legacy - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Transforms.Legacy - nameWithType: Ubiquity.NET.Llvm.Transforms.Legacy - fullName: Ubiquity.NET.Llvm.Transforms.Legacy - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms - name: Transforms - href: Ubiquity.NET.Llvm.Transforms.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms - name: Transforms - href: Ubiquity.NET.Llvm.Transforms.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - parent: Ubiquity.NET.Llvm.Transforms.Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html - name: PassManager - nameWithType: PassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - parent: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_PassManager_AddAnalysisPasses_Ubiquity_NET_Llvm_TargetMachine_ - name: AddAnalysisPasses(TargetMachine) - nameWithType: PassManager.AddAnalysisPasses(TargetMachine) - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - name: AddAnalysisPasses - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_PassManager_AddAnalysisPasses_Ubiquity_NET_Llvm_TargetMachine_ - - name: ( - - uid: Ubiquity.NET.Llvm.TargetMachine - name: TargetMachine - href: Ubiquity.NET.Llvm.TargetMachine.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - name: AddAnalysisPasses - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_PassManager_AddAnalysisPasses_Ubiquity_NET_Llvm_TargetMachine_ - - name: ( - - uid: Ubiquity.NET.Llvm.TargetMachine - name: TargetMachine - href: Ubiquity.NET.Llvm.TargetMachine.html - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - href: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.html - name: ModulePassManager - nameWithType: ModulePassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.#ctor - href: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_ModulePassManager__ctor - name: ModulePassManager - nameWithType: ModulePassManager.ModulePassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.ModulePassManager - nameWithType.vb: ModulePassManager.New - fullName.vb: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.New - name.vb: New -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run* - commentId: Overload:Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run - href: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_ModulePassManager_Run_Ubiquity_NET_Llvm_Module_ - name: Run - nameWithType: ModulePassManager.Run - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.Run -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.yml deleted file mode 100644 index 610fcca373..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.yml +++ /dev/null @@ -1,415 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - id: PassManager - parent: Ubiquity.NET.Llvm.Transforms.Legacy - children: - - Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - langs: - - csharp - - vb - name: PassManager - nameWithType: PassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/PassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PassManager - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/PassManager.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Common base class for pass managers - example: [] - syntax: - content: >- - [Obsolete("Legacy pass manager support is considered obsolete - use one of the TryRunPasses overloads on Module or Function instead")] - - public class PassManager - content.vb: >- - - - Public Class PassManager - inheritance: - - System.Object - derivedClasses: - - Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - - Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - attributes: - - type: System.ObsoleteAttribute - ctor: System.ObsoleteAttribute.#ctor(System.String) - arguments: - - type: System.String - value: Legacy pass manager support is considered obsolete - use one of the TryRunPasses overloads on Module or Function instead -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - commentId: M:Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - id: AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - parent: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - langs: - - csharp - - vb - name: AddAnalysisPasses(TargetMachine) - nameWithType: PassManager.AddAnalysisPasses(TargetMachine) - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses(Ubiquity.NET.Llvm.TargetMachine) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Transforms/Legacy/PassManager.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAnalysisPasses - path: ../src/Ubiquity.NET.Llvm/Transforms/Legacy/PassManager.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Transforms.Legacy - summary: Add target specific analysis passes to this manager - example: [] - syntax: - content: public void AddAnalysisPasses(TargetMachine targetMachine) - parameters: - - id: targetMachine - type: Ubiquity.NET.Llvm.TargetMachine - description: Target machine to add the passes for - content.vb: Public Sub AddAnalysisPasses(targetMachine As TargetMachine) - overload: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses* -references: -- uid: Ubiquity.NET.Llvm.Transforms.Legacy - commentId: N:Ubiquity.NET.Llvm.Transforms.Legacy - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Transforms.Legacy - nameWithType: Ubiquity.NET.Llvm.Transforms.Legacy - fullName: Ubiquity.NET.Llvm.Transforms.Legacy - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms - name: Transforms - href: Ubiquity.NET.Llvm.Transforms.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms - name: Transforms - href: Ubiquity.NET.Llvm.Transforms.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses* - commentId: Overload:Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html#Ubiquity_NET_Llvm_Transforms_Legacy_PassManager_AddAnalysisPasses_Ubiquity_NET_Llvm_TargetMachine_ - name: AddAnalysisPasses - nameWithType: PassManager.AddAnalysisPasses - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.AddAnalysisPasses -- uid: Ubiquity.NET.Llvm.TargetMachine - commentId: T:Ubiquity.NET.Llvm.TargetMachine - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetMachine.html - name: TargetMachine - nameWithType: TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.yml deleted file mode 100644 index 574911b189..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Transforms.Legacy.yml +++ /dev/null @@ -1,84 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Transforms.Legacy - commentId: N:Ubiquity.NET.Llvm.Transforms.Legacy - id: Ubiquity.NET.Llvm.Transforms.Legacy - children: - - Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - - Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - - Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm.Transforms.Legacy - nameWithType: Ubiquity.NET.Llvm.Transforms.Legacy - fullName: Ubiquity.NET.Llvm.Transforms.Legacy - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - href: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager.html - name: FunctionPassManager - nameWithType: FunctionPassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - href: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager.html - name: ModulePassManager - nameWithType: ModulePassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager -- uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - commentId: T:Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - parent: Ubiquity.NET.Llvm.Transforms.Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager.html - name: PassManager - nameWithType: PassManager - fullName: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager -- uid: Ubiquity.NET.Llvm.Transforms.Legacy - commentId: N:Ubiquity.NET.Llvm.Transforms.Legacy - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Transforms.Legacy - nameWithType: Ubiquity.NET.Llvm.Transforms.Legacy - fullName: Ubiquity.NET.Llvm.Transforms.Legacy - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms - name: Transforms - href: Ubiquity.NET.Llvm.Transforms.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms - name: Transforms - href: Ubiquity.NET.Llvm.Transforms.html - - name: . - - uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Legacy - href: Ubiquity.NET.Llvm.Transforms.Legacy.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Triple.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Triple.yml deleted file mode 100644 index e098326dcb..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Triple.yml +++ /dev/null @@ -1,1365 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Triple - commentId: T:Ubiquity.NET.Llvm.Triple - id: Triple - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.Triple.#ctor(System.String) - - Ubiquity.NET.Llvm.Triple.ArchitectureType - - Ubiquity.NET.Llvm.Triple.Dispose - - Ubiquity.NET.Llvm.Triple.Environment - - Ubiquity.NET.Llvm.Triple.EnvironmentVersion - - Ubiquity.NET.Llvm.Triple.Equals(System.Object) - - Ubiquity.NET.Llvm.Triple.Equals(Ubiquity.NET.Llvm.Triple) - - Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.ArchKind) - - Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.EnvironmentKind) - - Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.OSKind) - - Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.VendorKind) - - Ubiquity.NET.Llvm.Triple.GetHashCode - - Ubiquity.NET.Llvm.Triple.GetHostTriple - - Ubiquity.NET.Llvm.Triple.Normalize(System.String) - - Ubiquity.NET.Llvm.Triple.OS - - Ubiquity.NET.Llvm.Triple.ObjectFormat - - Ubiquity.NET.Llvm.Triple.SubArchitecture - - Ubiquity.NET.Llvm.Triple.ToString - - Ubiquity.NET.Llvm.Triple.Vendor - - Ubiquity.NET.Llvm.Triple.op_Implicit(Ubiquity.NET.Llvm.Triple)~System.String - langs: - - csharp - - vb - name: Triple - nameWithType: Triple - fullName: Ubiquity.NET.Llvm.Triple - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Triple - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 626 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Triple to describe a target - remarks: >- -

The term 'Triple' is a bit of a misnomer. At some point in the past it - - actually consisted of only three parts, but that has changed over the years - - without the name itself changing. The triple is normally represented as a - - string of 4 components delimited by '-'. Some of the components have - - sub components as part of the content. The canonical form of a triple is: - - {Architecture}{SubArchitecture}-{Vendor}-{OS}-{EnvironmentKind}{ObjectFormatKind}

- -

- - A few shorthand variations are allowed and converted to their full normalized form. - - In particular "cygwin" is a shorthand for the OS-EnvironmentKind tuple "windows-cygnus" - - and "mingw" is a shorthand form of "windows-gnu". - -

- -

In addition to shorthand allowances, the OS component may optionally include - - a trailing version of the form Maj.Min.Micro. If any of the version number parts are - - not present, then they default to 0.

- -

- - For the environment "androideabi" is allowed and normalized to android (including - - an optional version number). - -

- example: [] - syntax: - content: 'public sealed class Triple : IEquatable, IDisposable' - content.vb: Public NotInheritable Class Triple Implements IEquatable(Of Triple), IDisposable - inheritance: - - System.Object - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Triple} - - System.IDisposable - inheritedMembers: - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.Triple.Dispose - commentId: M:Ubiquity.NET.Llvm.Triple.Dispose - id: Dispose - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: Dispose() - nameWithType: Triple.Dispose() - fullName: Ubiquity.NET.Llvm.Triple.Dispose() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dispose - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 631 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - example: [] - syntax: - content: public void Dispose() - content.vb: Public Sub Dispose() - overload: Ubiquity.NET.Llvm.Triple.Dispose* - implements: - - System.IDisposable.Dispose -- uid: Ubiquity.NET.Llvm.Triple.#ctor(System.String) - commentId: M:Ubiquity.NET.Llvm.Triple.#ctor(System.String) - id: '#ctor(System.String)' - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: Triple(string) - nameWithType: Triple.Triple(string) - fullName: Ubiquity.NET.Llvm.Triple.Triple(string) - type: Constructor - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: .ctor - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 639 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Initializes a new instance of the class from a triple string - remarks: >- - The tripleTxt string is normalized before parsing to allow for - - common non-canonical forms of triples. - example: [] - syntax: - content: public Triple(string tripleTxt) - parameters: - - id: tripleTxt - type: System.String - description: Triple string to parse - content.vb: Public Sub New(tripleTxt As String) - overload: Ubiquity.NET.Llvm.Triple.#ctor* - nameWithType.vb: Triple.New(String) - fullName.vb: Ubiquity.NET.Llvm.Triple.New(String) - name.vb: New(String) -- uid: Ubiquity.NET.Llvm.Triple.ToString - commentId: M:Ubiquity.NET.Llvm.Triple.ToString - id: ToString - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: ToString() - nameWithType: Triple.ToString() - fullName: Ubiquity.NET.Llvm.Triple.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 646 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the final string form of the triple - example: [] - syntax: - content: public override string? ToString() - return: - type: System.String - description: Normalized Triple string - content.vb: Public Overrides Function ToString() As String - overridden: System.Object.ToString - overload: Ubiquity.NET.Llvm.Triple.ToString* -- uid: Ubiquity.NET.Llvm.Triple.ArchitectureType - commentId: P:Ubiquity.NET.Llvm.Triple.ArchitectureType - id: ArchitectureType - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: ArchitectureType - nameWithType: Triple.ArchitectureType - fullName: Ubiquity.NET.Llvm.Triple.ArchitectureType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ArchitectureType - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 652 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the Architecture of the triple - example: [] - syntax: - content: public ArchKind ArchitectureType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ArchKind - content.vb: Public ReadOnly Property ArchitectureType As ArchKind - overload: Ubiquity.NET.Llvm.Triple.ArchitectureType* -- uid: Ubiquity.NET.Llvm.Triple.SubArchitecture - commentId: P:Ubiquity.NET.Llvm.Triple.SubArchitecture - id: SubArchitecture - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: SubArchitecture - nameWithType: Triple.SubArchitecture - fullName: Ubiquity.NET.Llvm.Triple.SubArchitecture - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SubArchitecture - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 655 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the Sub Architecture type - example: [] - syntax: - content: public SubArchKind SubArchitecture { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.SubArchKind - content.vb: Public ReadOnly Property SubArchitecture As SubArchKind - overload: Ubiquity.NET.Llvm.Triple.SubArchitecture* -- uid: Ubiquity.NET.Llvm.Triple.Vendor - commentId: P:Ubiquity.NET.Llvm.Triple.Vendor - id: Vendor - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: Vendor - nameWithType: Triple.Vendor - fullName: Ubiquity.NET.Llvm.Triple.Vendor - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Vendor - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 658 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the Vendor component of the triple - example: [] - syntax: - content: public VendorKind Vendor { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.VendorKind - content.vb: Public ReadOnly Property Vendor As VendorKind - overload: Ubiquity.NET.Llvm.Triple.Vendor* -- uid: Ubiquity.NET.Llvm.Triple.OS - commentId: P:Ubiquity.NET.Llvm.Triple.OS - id: OS - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: OS - nameWithType: Triple.OS - fullName: Ubiquity.NET.Llvm.Triple.OS - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OS - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 661 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the OS Type for the triple - example: [] - syntax: - content: public OSKind OS { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.OSKind - content.vb: Public ReadOnly Property OS As OSKind - overload: Ubiquity.NET.Llvm.Triple.OS* -- uid: Ubiquity.NET.Llvm.Triple.Environment - commentId: P:Ubiquity.NET.Llvm.Triple.Environment - id: Environment - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: Environment - nameWithType: Triple.Environment - fullName: Ubiquity.NET.Llvm.Triple.Environment - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Environment - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 664 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the environment type for the triple - example: [] - syntax: - content: public EnvironmentKind Environment { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.EnvironmentKind - content.vb: Public ReadOnly Property Environment As EnvironmentKind - overload: Ubiquity.NET.Llvm.Triple.Environment* -- uid: Ubiquity.NET.Llvm.Triple.ObjectFormat - commentId: P:Ubiquity.NET.Llvm.Triple.ObjectFormat - id: ObjectFormat - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: ObjectFormat - nameWithType: Triple.ObjectFormat - fullName: Ubiquity.NET.Llvm.Triple.ObjectFormat - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ObjectFormat - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 667 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the object format type for the triple - example: [] - syntax: - content: public ObjectFormatKind ObjectFormat { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.ObjectFormatKind - content.vb: Public ReadOnly Property ObjectFormat As ObjectFormatKind - overload: Ubiquity.NET.Llvm.Triple.ObjectFormat* -- uid: Ubiquity.NET.Llvm.Triple.EnvironmentVersion - commentId: P:Ubiquity.NET.Llvm.Triple.EnvironmentVersion - id: EnvironmentVersion - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: EnvironmentVersion - nameWithType: Triple.EnvironmentVersion - fullName: Ubiquity.NET.Llvm.Triple.EnvironmentVersion - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EnvironmentVersion - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 670 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets the version number of the environment - example: [] - syntax: - content: public Version EnvironmentVersion { get; } - parameters: [] - return: - type: System.Version - content.vb: Public ReadOnly Property EnvironmentVersion As Version - overload: Ubiquity.NET.Llvm.Triple.EnvironmentVersion* -- uid: Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.ArchKind) - commentId: M:Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.ArchKind) - id: GetCanonicalName(Ubiquity.NET.Llvm.ArchKind) - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: GetCanonicalName(ArchKind) - nameWithType: Triple.GetCanonicalName(ArchKind) - fullName: Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.ArchKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetCanonicalName - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 691 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the canonical name for an architecture type - example: [] - syntax: - content: public static string GetCanonicalName(ArchKind archType) - parameters: - - id: archType - type: Ubiquity.NET.Llvm.ArchKind - description: Architecture type - return: - type: System.String - description: String name for the architecture - content.vb: Public Shared Function GetCanonicalName(archType As ArchKind) As String - overload: Ubiquity.NET.Llvm.Triple.GetCanonicalName* -- uid: Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.VendorKind) - commentId: M:Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.VendorKind) - id: GetCanonicalName(Ubiquity.NET.Llvm.VendorKind) - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: GetCanonicalName(VendorKind) - nameWithType: Triple.GetCanonicalName(VendorKind) - fullName: Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.VendorKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetCanonicalName - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 699 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the canonical name for the vendor component of a triple - example: [] - syntax: - content: public static string GetCanonicalName(VendorKind vendorType) - parameters: - - id: vendorType - type: Ubiquity.NET.Llvm.VendorKind - description: Vendor type - return: - type: System.String - description: String name for the vendor - content.vb: Public Shared Function GetCanonicalName(vendorType As VendorKind) As String - overload: Ubiquity.NET.Llvm.Triple.GetCanonicalName* -- uid: Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.OSKind) - commentId: M:Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.OSKind) - id: GetCanonicalName(Ubiquity.NET.Llvm.OSKind) - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: GetCanonicalName(OSKind) - nameWithType: Triple.GetCanonicalName(OSKind) - fullName: Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.OSKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetCanonicalName - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 707 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the canonical name for the OS component of a triple - example: [] - syntax: - content: public static string GetCanonicalName(OSKind osType) - parameters: - - id: osType - type: Ubiquity.NET.Llvm.OSKind - description: OS type - return: - type: System.String - description: String name for the OS - content.vb: Public Shared Function GetCanonicalName(osType As OSKind) As String - overload: Ubiquity.NET.Llvm.Triple.GetCanonicalName* -- uid: Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.EnvironmentKind) - commentId: M:Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.EnvironmentKind) - id: GetCanonicalName(Ubiquity.NET.Llvm.EnvironmentKind) - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: GetCanonicalName(EnvironmentKind) - nameWithType: Triple.GetCanonicalName(EnvironmentKind) - fullName: Ubiquity.NET.Llvm.Triple.GetCanonicalName(Ubiquity.NET.Llvm.EnvironmentKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetCanonicalName - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 715 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Retrieves the canonical name for the environment component of a triple - example: [] - syntax: - content: public static string GetCanonicalName(EnvironmentKind envType) - parameters: - - id: envType - type: Ubiquity.NET.Llvm.EnvironmentKind - description: Environment type - return: - type: System.String - description: String name for the environment component - content.vb: Public Shared Function GetCanonicalName(envType As EnvironmentKind) As String - overload: Ubiquity.NET.Llvm.Triple.GetCanonicalName* -- uid: Ubiquity.NET.Llvm.Triple.Equals(Ubiquity.NET.Llvm.Triple) - commentId: M:Ubiquity.NET.Llvm.Triple.Equals(Ubiquity.NET.Llvm.Triple) - id: Equals(Ubiquity.NET.Llvm.Triple) - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: Equals(Triple?) - nameWithType: Triple.Equals(Triple?) - fullName: Ubiquity.NET.Llvm.Triple.Equals(Ubiquity.NET.Llvm.Triple?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 721 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(Triple? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Triple - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As Triple) As Boolean - overload: Ubiquity.NET.Llvm.Triple.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Triple}.Equals(Ubiquity.NET.Llvm.Triple) - nameWithType.vb: Triple.Equals(Triple) - fullName.vb: Ubiquity.NET.Llvm.Triple.Equals(Ubiquity.NET.Llvm.Triple) - name.vb: Equals(Triple) -- uid: Ubiquity.NET.Llvm.Triple.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Triple.Equals(System.Object) - id: Equals(System.Object) - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: Triple.Equals(object?) - fullName: Ubiquity.NET.Llvm.Triple.Equals(object?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 727 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Determines whether the specified object is equal to the current object. - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: The object to compare with the current object. - return: - type: System.Boolean - description: true if the specified object is equal to the current object; otherwise, false. - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.Object.Equals(System.Object) - overload: Ubiquity.NET.Llvm.Triple.Equals* - nameWithType.vb: Triple.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Triple.Equals(Object) - name.vb: Equals(Object) -- uid: Ubiquity.NET.Llvm.Triple.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Triple.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: Triple.GetHashCode() - fullName: Ubiquity.NET.Llvm.Triple.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 733 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Serves as the default hash function. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A hash code for the current object. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.Object.GetHashCode - overload: Ubiquity.NET.Llvm.Triple.GetHashCode* -- uid: Ubiquity.NET.Llvm.Triple.Normalize(System.String) - commentId: M:Ubiquity.NET.Llvm.Triple.Normalize(System.String) - id: Normalize(System.String) - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: Normalize(string) - nameWithType: Triple.Normalize(string) - fullName: Ubiquity.NET.Llvm.Triple.Normalize(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Normalize - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 741 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Normalizes a triple string - example: [] - syntax: - content: public static string Normalize(string unNormalizedTriple) - parameters: - - id: unNormalizedTriple - type: System.String - description: triple to normalize - return: - type: System.String - description: Normalized string - content.vb: Public Shared Function Normalize(unNormalizedTriple As String) As String - overload: Ubiquity.NET.Llvm.Triple.Normalize* - nameWithType.vb: Triple.Normalize(String) - fullName.vb: Ubiquity.NET.Llvm.Triple.Normalize(String) - name.vb: Normalize(String) -- uid: Ubiquity.NET.Llvm.Triple.GetHostTriple - commentId: M:Ubiquity.NET.Llvm.Triple.GetHostTriple - id: GetHostTriple - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: GetHostTriple() - nameWithType: Triple.GetHostTriple() - fullName: Ubiquity.NET.Llvm.Triple.GetHostTriple() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHostTriple - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 750 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Gets a triple for the host LLVM is built for - example: [] - syntax: - content: public static Triple GetHostTriple() - return: - type: Ubiquity.NET.Llvm.Triple - description: Host triple - content.vb: Public Shared Function GetHostTriple() As Triple - overload: Ubiquity.NET.Llvm.Triple.GetHostTriple* -- uid: Ubiquity.NET.Llvm.Triple.op_Implicit(Ubiquity.NET.Llvm.Triple)~System.String - commentId: M:Ubiquity.NET.Llvm.Triple.op_Implicit(Ubiquity.NET.Llvm.Triple)~System.String - id: op_Implicit(Ubiquity.NET.Llvm.Triple)~System.String - parent: Ubiquity.NET.Llvm.Triple - langs: - - csharp - - vb - name: implicit operator string(Triple?) - nameWithType: Triple.implicit operator string(Triple?) - fullName: Ubiquity.NET.Llvm.Triple.implicit operator string(Ubiquity.NET.Llvm.Triple?) - type: Operator - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: op_Implicit - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 755 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Implicitly converts a triple to a string - example: [] - syntax: - content: public static implicit operator string(Triple? triple) - parameters: - - id: triple - type: Ubiquity.NET.Llvm.Triple - description: to convert - return: - type: System.String - description: Triple as a string or if triple is null - content.vb: Public Shared Widening Operator CType(triple As Triple) As String - overload: Ubiquity.NET.Llvm.Triple.op_Implicit* - nameWithType.vb: Triple.CType(Triple) - fullName.vb: Ubiquity.NET.Llvm.Triple.CType(Ubiquity.NET.Llvm.Triple) - name.vb: CType(Triple) -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IEquatable{Ubiquity.NET.Llvm.Triple} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Triple} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Triple) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Triple) - name.vb: IEquatable(Of Triple) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Triple - name: Triple - href: Ubiquity.NET.Llvm.Triple.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Triple - name: Triple - href: Ubiquity.NET.Llvm.Triple.html - - name: ) -- uid: System.IDisposable - commentId: T:System.IDisposable - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable - name: IDisposable - nameWithType: IDisposable - fullName: System.IDisposable -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Triple.Dispose* - commentId: Overload:Ubiquity.NET.Llvm.Triple.Dispose - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_Dispose - name: Dispose - nameWithType: Triple.Dispose - fullName: Ubiquity.NET.Llvm.Triple.Dispose -- uid: System.IDisposable.Dispose - commentId: M:System.IDisposable.Dispose - parent: System.IDisposable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - name: Dispose() - nameWithType: IDisposable.Dispose() - fullName: System.IDisposable.Dispose() - spec.csharp: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) - spec.vb: - - uid: System.IDisposable.Dispose - name: Dispose - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Triple - commentId: T:Ubiquity.NET.Llvm.Triple - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Triple.html - name: Triple - nameWithType: Triple - fullName: Ubiquity.NET.Llvm.Triple -- uid: Ubiquity.NET.Llvm.Triple.#ctor* - commentId: Overload:Ubiquity.NET.Llvm.Triple.#ctor - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple__ctor_System_String_ - name: Triple - nameWithType: Triple.Triple - fullName: Ubiquity.NET.Llvm.Triple.Triple - nameWithType.vb: Triple.New - fullName.vb: Ubiquity.NET.Llvm.Triple.New - name.vb: New -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Triple.ToString* - commentId: Overload:Ubiquity.NET.Llvm.Triple.ToString - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_ToString - name: ToString - nameWithType: Triple.ToString - fullName: Ubiquity.NET.Llvm.Triple.ToString -- uid: Ubiquity.NET.Llvm.Triple.ArchitectureType* - commentId: Overload:Ubiquity.NET.Llvm.Triple.ArchitectureType - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_ArchitectureType - name: ArchitectureType - nameWithType: Triple.ArchitectureType - fullName: Ubiquity.NET.Llvm.Triple.ArchitectureType -- uid: Ubiquity.NET.Llvm.ArchKind - commentId: T:Ubiquity.NET.Llvm.ArchKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ArchKind.html - name: ArchKind - nameWithType: ArchKind - fullName: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.Triple.SubArchitecture* - commentId: Overload:Ubiquity.NET.Llvm.Triple.SubArchitecture - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_SubArchitecture - name: SubArchitecture - nameWithType: Triple.SubArchitecture - fullName: Ubiquity.NET.Llvm.Triple.SubArchitecture -- uid: Ubiquity.NET.Llvm.SubArchKind - commentId: T:Ubiquity.NET.Llvm.SubArchKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.SubArchKind.html - name: SubArchKind - nameWithType: SubArchKind - fullName: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.Triple.Vendor* - commentId: Overload:Ubiquity.NET.Llvm.Triple.Vendor - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_Vendor - name: Vendor - nameWithType: Triple.Vendor - fullName: Ubiquity.NET.Llvm.Triple.Vendor -- uid: Ubiquity.NET.Llvm.VendorKind - commentId: T:Ubiquity.NET.Llvm.VendorKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.VendorKind.html - name: VendorKind - nameWithType: VendorKind - fullName: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.Triple.OS* - commentId: Overload:Ubiquity.NET.Llvm.Triple.OS - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_OS - name: OS - nameWithType: Triple.OS - fullName: Ubiquity.NET.Llvm.Triple.OS -- uid: Ubiquity.NET.Llvm.OSKind - commentId: T:Ubiquity.NET.Llvm.OSKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.OSKind.html - name: OSKind - nameWithType: OSKind - fullName: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.Triple.Environment* - commentId: Overload:Ubiquity.NET.Llvm.Triple.Environment - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_Environment - name: Environment - nameWithType: Triple.Environment - fullName: Ubiquity.NET.Llvm.Triple.Environment -- uid: Ubiquity.NET.Llvm.EnvironmentKind - commentId: T:Ubiquity.NET.Llvm.EnvironmentKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.EnvironmentKind.html - name: EnvironmentKind - nameWithType: EnvironmentKind - fullName: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.Triple.ObjectFormat* - commentId: Overload:Ubiquity.NET.Llvm.Triple.ObjectFormat - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_ObjectFormat - name: ObjectFormat - nameWithType: Triple.ObjectFormat - fullName: Ubiquity.NET.Llvm.Triple.ObjectFormat -- uid: Ubiquity.NET.Llvm.ObjectFormatKind - commentId: T:Ubiquity.NET.Llvm.ObjectFormatKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ObjectFormatKind.html - name: ObjectFormatKind - nameWithType: ObjectFormatKind - fullName: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.Triple.EnvironmentVersion* - commentId: Overload:Ubiquity.NET.Llvm.Triple.EnvironmentVersion - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_EnvironmentVersion - name: EnvironmentVersion - nameWithType: Triple.EnvironmentVersion - fullName: Ubiquity.NET.Llvm.Triple.EnvironmentVersion -- uid: System.Version - commentId: T:System.Version - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.version - name: Version - nameWithType: Version - fullName: System.Version -- uid: Ubiquity.NET.Llvm.Triple.GetCanonicalName* - commentId: Overload:Ubiquity.NET.Llvm.Triple.GetCanonicalName - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_GetCanonicalName_Ubiquity_NET_Llvm_ArchKind_ - name: GetCanonicalName - nameWithType: Triple.GetCanonicalName - fullName: Ubiquity.NET.Llvm.Triple.GetCanonicalName -- uid: Ubiquity.NET.Llvm.Triple.Equals* - commentId: Overload:Ubiquity.NET.Llvm.Triple.Equals - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_Equals_Ubiquity_NET_Llvm_Triple_ - name: Equals - nameWithType: Triple.Equals - fullName: Ubiquity.NET.Llvm.Triple.Equals -- uid: System.IEquatable{Ubiquity.NET.Llvm.Triple}.Equals(Ubiquity.NET.Llvm.Triple) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Triple}.Equals(Ubiquity.NET.Llvm.Triple) - parent: System.IEquatable{Ubiquity.NET.Llvm.Triple} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(Triple) - nameWithType: IEquatable.Equals(Triple) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Triple) - nameWithType.vb: IEquatable(Of Triple).Equals(Triple) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Triple).Equals(Ubiquity.NET.Llvm.Triple) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Triple}.Equals(Ubiquity.NET.Llvm.Triple) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Triple - name: Triple - href: Ubiquity.NET.Llvm.Triple.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Triple}.Equals(Ubiquity.NET.Llvm.Triple) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Triple - name: Triple - href: Ubiquity.NET.Llvm.Triple.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Triple.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.Triple.GetHashCode - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_GetHashCode - name: GetHashCode - nameWithType: Triple.GetHashCode - fullName: Ubiquity.NET.Llvm.Triple.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.Triple.Normalize* - commentId: Overload:Ubiquity.NET.Llvm.Triple.Normalize - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_Normalize_System_String_ - name: Normalize - nameWithType: Triple.Normalize - fullName: Ubiquity.NET.Llvm.Triple.Normalize -- uid: Ubiquity.NET.Llvm.Triple.GetHostTriple* - commentId: Overload:Ubiquity.NET.Llvm.Triple.GetHostTriple - href: Ubiquity.NET.Llvm.Triple.html#Ubiquity_NET_Llvm_Triple_GetHostTriple - name: GetHostTriple - nameWithType: Triple.GetHostTriple - fullName: Ubiquity.NET.Llvm.Triple.GetHostTriple -- uid: System.String.Empty - commentId: F:System.String.Empty - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string.empty - name: Empty - nameWithType: string.Empty - fullName: string.Empty - nameWithType.vb: String.Empty - fullName.vb: String.Empty -- uid: Ubiquity.NET.Llvm.Triple.op_Implicit* - commentId: Overload:Ubiquity.NET.Llvm.Triple.op_Implicit - name: implicit operator - nameWithType: Triple.implicit operator - fullName: Ubiquity.NET.Llvm.Triple.implicit operator - nameWithType.vb: Triple.CType - fullName.vb: Ubiquity.NET.Llvm.Triple.CType - name.vb: CType - spec.csharp: - - name: implicit - - name: " " - - name: operator diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IArrayType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IArrayType.yml deleted file mode 100644 index b8e9408699..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IArrayType.yml +++ /dev/null @@ -1,465 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.IArrayType - commentId: T:Ubiquity.NET.Llvm.Types.IArrayType - id: IArrayType - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.IArrayType.Length - langs: - - csharp - - vb - name: IArrayType - nameWithType: IArrayType - fullName: Ubiquity.NET.Llvm.Types.IArrayType - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IArrayType - path: ../src/Ubiquity.NET.Llvm/Types/ArrayType.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Interface for an LLVM array type - example: [] - syntax: - content: 'public interface IArrayType : ISequenceType, ITypeRef, IEquatable' - content.vb: Public Interface IArrayType Inherits ISequenceType, ITypeRef, IEquatable(Of ITypeRef) - inheritedMembers: - - Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.Types.IArrayType.Length - commentId: P:Ubiquity.NET.Llvm.Types.IArrayType.Length - id: Length - parent: Ubiquity.NET.Llvm.Types.IArrayType - langs: - - csharp - - vb - name: Length - nameWithType: IArrayType.Length - fullName: Ubiquity.NET.Llvm.Types.IArrayType.Length - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ArrayType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Length - path: ../src/Ubiquity.NET.Llvm/Types/ArrayType.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the length of the array - example: [] - syntax: - content: uint Length { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: ReadOnly Property Length As UInteger - overload: Ubiquity.NET.Llvm.Types.IArrayType.Length* -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - commentId: P:Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - parent: Ubiquity.NET.Llvm.Types.ISequenceType - href: Ubiquity.NET.Llvm.Types.ISequenceType.html#Ubiquity_NET_Llvm_Types_ISequenceType_ElementType - name: ElementType - nameWithType: ISequenceType.ElementType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ISequenceType - commentId: T:Ubiquity.NET.Llvm.Types.ISequenceType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ISequenceType.html - name: ISequenceType - nameWithType: ISequenceType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.IArrayType.Length* - commentId: Overload:Ubiquity.NET.Llvm.Types.IArrayType.Length - href: Ubiquity.NET.Llvm.Types.IArrayType.html#Ubiquity_NET_Llvm_Types_IArrayType_Length - name: Length - nameWithType: IArrayType.Length - fullName: Ubiquity.NET.Llvm.Types.IArrayType.Length -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IFunctionType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IFunctionType.yml deleted file mode 100644 index a8da723631..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IFunctionType.yml +++ /dev/null @@ -1,624 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - id: IFunctionType - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg - - Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes - - Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType - langs: - - csharp - - vb - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/FunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IFunctionType - path: ../src/Ubiquity.NET.Llvm/Types/FunctionType.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Interface to represent the LLVM type of a function (e.g. a signature) - example: [] - syntax: - content: 'public interface IFunctionType : ITypeRef, IEquatable' - content.vb: Public Interface IFunctionType Inherits ITypeRef, IEquatable(Of ITypeRef) - inheritedMembers: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg - commentId: P:Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg - id: IsVarArg - parent: Ubiquity.NET.Llvm.Types.IFunctionType - langs: - - csharp - - vb - name: IsVarArg - nameWithType: IFunctionType.IsVarArg - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/FunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsVarArg - path: ../src/Ubiquity.NET.Llvm/Types/FunctionType.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether this signature is for a variadic function - example: [] - syntax: - content: bool IsVarArg { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsVarArg As Boolean - overload: Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg* -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType - commentId: P:Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType - id: ReturnType - parent: Ubiquity.NET.Llvm.Types.IFunctionType - langs: - - csharp - - vb - name: ReturnType - nameWithType: IFunctionType.ReturnType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/FunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReturnType - path: ../src/Ubiquity.NET.Llvm/Types/FunctionType.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the return type of the function - example: [] - syntax: - content: ITypeRef ReturnType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property ReturnType As ITypeRef - overload: Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType* -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes - commentId: P:Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes - id: ParameterTypes - parent: Ubiquity.NET.Llvm.Types.IFunctionType - langs: - - csharp - - vb - name: ParameterTypes - nameWithType: IFunctionType.ParameterTypes - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/FunctionType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ParameterTypes - path: ../src/Ubiquity.NET.Llvm/Types/FunctionType.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the types of the parameters for the function - example: [] - syntax: - content: IReadOnlyList ParameterTypes { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - content.vb: ReadOnly Property ParameterTypes As IReadOnlyList(Of ITypeRef) - overload: Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes* -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg* - commentId: Overload:Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg - href: Ubiquity.NET.Llvm.Types.IFunctionType.html#Ubiquity_NET_Llvm_Types_IFunctionType_IsVarArg - name: IsVarArg - nameWithType: IFunctionType.IsVarArg - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.IsVarArg -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType* - commentId: Overload:Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType - href: Ubiquity.NET.Llvm.Types.IFunctionType.html#Ubiquity_NET_Llvm_Types_IFunctionType_ReturnType - name: ReturnType - nameWithType: IFunctionType.ReturnType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.ReturnType -- uid: Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes* - commentId: Overload:Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes - href: Ubiquity.NET.Llvm.Types.IFunctionType.html#Ubiquity_NET_Llvm_Types_IFunctionType_ParameterTypes - name: ParameterTypes - nameWithType: IFunctionType.ParameterTypes - fullName: Ubiquity.NET.Llvm.Types.IFunctionType.ParameterTypes -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of ITypeRef) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IReadOnlyList(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.INamedStructuralType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.INamedStructuralType.yml deleted file mode 100644 index 24cee4fd8f..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.INamedStructuralType.yml +++ /dev/null @@ -1,636 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - commentId: T:Ubiquity.NET.Llvm.Types.INamedStructuralType - id: INamedStructuralType - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - - Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - - Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - langs: - - csharp - - vb - name: INamedStructuralType - nameWithType: INamedStructuralType - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/StructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: INamedStructuralType - path: ../src/Ubiquity.NET.Llvm/Types/StructType.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Interface for a named type with members - remarks: This is a common interface for structures and unions - example: [] - syntax: - content: 'public interface INamedStructuralType : ITypeRef, IEquatable' - content.vb: Public Interface INamedStructuralType Inherits ITypeRef, IEquatable(Of ITypeRef) - inheritedMembers: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - id: Name - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - langs: - - csharp - - vb - name: Name - nameWithType: INamedStructuralType.Name - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/StructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/Types/StructType.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the name of the structure - example: [] - syntax: - content: string Name { get; } - parameters: [] - return: - type: System.String - content.vb: ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name* -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - id: IsOpaque - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - langs: - - csharp - - vb - name: IsOpaque - nameWithType: INamedStructuralType.IsOpaque - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/StructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsOpaque - path: ../src/Ubiquity.NET.Llvm/Types/StructType.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether the structure is opaque (e.g. has no body defined yet) - example: [] - syntax: - content: bool IsOpaque { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsOpaque As Boolean - overload: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque* -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - id: Members - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - langs: - - csharp - - vb - name: Members - nameWithType: INamedStructuralType.Members - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/StructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Members - path: ../src/Ubiquity.NET.Llvm/Types/StructType.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a list of types for all member elements of the structure - example: [] - syntax: - content: IReadOnlyList Members { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - content.vb: ReadOnly Property Members As IReadOnlyList(Of ITypeRef) - overload: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members* -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name* - commentId: Overload:Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_Name - name: Name - nameWithType: INamedStructuralType.Name - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque* - commentId: Overload:Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_IsOpaque - name: IsOpaque - nameWithType: INamedStructuralType.IsOpaque - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members* - commentId: Overload:Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_Members - name: Members - nameWithType: INamedStructuralType.Members - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of ITypeRef) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IReadOnlyList(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IPointerType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IPointerType.yml deleted file mode 100644 index f297bb2c9e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IPointerType.yml +++ /dev/null @@ -1,631 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - id: IPointerType - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace - - Ubiquity.NET.Llvm.Types.IPointerType.ElementType - - Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque - langs: - - csharp - - vb - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/IPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IPointerType - path: ../src/Ubiquity.NET.Llvm/Types/IPointerType.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Interface for a pointer type in LLVM - example: [] - syntax: - content: 'public interface IPointerType : ITypeRef, IEquatable' - content.vb: Public Interface IPointerType Inherits ITypeRef, IEquatable(Of ITypeRef) - inheritedMembers: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - extensionMethods: - - Ubiquity.NET.Llvm.Types.IPointerType.Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr -- uid: Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace - commentId: P:Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace - id: AddressSpace - parent: Ubiquity.NET.Llvm.Types.IPointerType - langs: - - csharp - - vb - name: AddressSpace - nameWithType: IPointerType.AddressSpace - fullName: Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/IPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddressSpace - path: ../src/Ubiquity.NET.Llvm/Types/IPointerType.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the address space the pointer refers to - example: [] - syntax: - content: uint AddressSpace { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: ReadOnly Property AddressSpace As UInteger - overload: Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace* -- uid: Ubiquity.NET.Llvm.Types.IPointerType.ElementType - commentId: P:Ubiquity.NET.Llvm.Types.IPointerType.ElementType - id: ElementType - parent: Ubiquity.NET.Llvm.Types.IPointerType - langs: - - csharp - - vb - name: ElementType - nameWithType: IPointerType.ElementType - fullName: Ubiquity.NET.Llvm.Types.IPointerType.ElementType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/IPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ElementType - path: ../src/Ubiquity.NET.Llvm/Types/IPointerType.cs - startLine: 26 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the element type of this pointer (if available) - remarks: >- - LLVM dropped type specific pointers in favor of Opaque pointers. - Unfortunately that means that IR generators need to track the type of - elements and that this property may be null if not - known. In practice, this is true when the pointer was retrieved directly - from the lower level LLVM APIs and no prior cached managed wrapper exists - with the type. This, at least, will provide it if available. - example: [] - syntax: - content: ITypeRef? ElementType { get; init; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Property ElementType As ITypeRef - overload: Ubiquity.NET.Llvm.Types.IPointerType.ElementType* -- uid: Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque - commentId: P:Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque - id: IsOpaque - parent: Ubiquity.NET.Llvm.Types.IPointerType - langs: - - csharp - - vb - name: IsOpaque - nameWithType: IPointerType.IsOpaque - fullName: Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/IPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsOpaque - path: ../src/Ubiquity.NET.Llvm/Types/IPointerType.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether this pointer is opaque - remarks: >- - An opaque pointer is one where the is null. - - This is normal for LLVM now. However, it makes for more complicated code generation. Thus, the - - types in this wrapper try to keep track of the type of data a pointer is pointing to. This isn't - - always plausible so it might be opaque. This is normally true for anything retrieved from LLVM IR - - but is not normal for anything that creates or clones the IR. Since the pointer type creation is - - done as a method of the thing being pointed to this information is "attached" to the pointer so - - that the is not null. - example: [] - syntax: - content: bool IsOpaque { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsOpaque As Boolean - overload: Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque* -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.IPointerType.Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr - commentId: M:Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - parent: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - definition: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - name: IsOpaquePtr(IPointerType) - nameWithType: PointerTypeExtensions.IsOpaquePtr(IPointerType) - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - name: IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - name: IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - commentId: M:Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - name: IsOpaquePtr(IPointerType) - nameWithType: PointerTypeExtensions.IsOpaquePtr(IPointerType) - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - name: IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - name: IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - commentId: T:Ubiquity.NET.Llvm.Types.PointerTypeExtensions - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html - name: PointerTypeExtensions - nameWithType: PointerTypeExtensions - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace* - commentId: Overload:Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace - href: Ubiquity.NET.Llvm.Types.IPointerType.html#Ubiquity_NET_Llvm_Types_IPointerType_AddressSpace - name: AddressSpace - nameWithType: IPointerType.AddressSpace - fullName: Ubiquity.NET.Llvm.Types.IPointerType.AddressSpace -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Types.IPointerType.ElementType* - commentId: Overload:Ubiquity.NET.Llvm.Types.IPointerType.ElementType - href: Ubiquity.NET.Llvm.Types.IPointerType.html#Ubiquity_NET_Llvm_Types_IPointerType_ElementType - name: ElementType - nameWithType: IPointerType.ElementType - fullName: Ubiquity.NET.Llvm.Types.IPointerType.ElementType -- uid: Ubiquity.NET.Llvm.Types.IPointerType.ElementType - commentId: P:Ubiquity.NET.Llvm.Types.IPointerType.ElementType - parent: Ubiquity.NET.Llvm.Types.IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html#Ubiquity_NET_Llvm_Types_IPointerType_ElementType - name: ElementType - nameWithType: IPointerType.ElementType - fullName: Ubiquity.NET.Llvm.Types.IPointerType.ElementType -- uid: Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque* - commentId: Overload:Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque - href: Ubiquity.NET.Llvm.Types.IPointerType.html#Ubiquity_NET_Llvm_Types_IPointerType_IsOpaque - name: IsOpaque - nameWithType: IPointerType.IsOpaque - fullName: Ubiquity.NET.Llvm.Types.IPointerType.IsOpaque -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.ISequenceType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.ISequenceType.yml deleted file mode 100644 index e0028514b9..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.ISequenceType.yml +++ /dev/null @@ -1,445 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.ISequenceType - commentId: T:Ubiquity.NET.Llvm.Types.ISequenceType - id: ISequenceType - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - langs: - - csharp - - vb - name: ISequenceType - nameWithType: ISequenceType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/SequenceType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ISequenceType - path: ../src/Ubiquity.NET.Llvm/Types/SequenceType.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Interface for an LLVM sequence type - remarks: >- - Sequence types represent a sequence of elements of the same type - - that are contiguous in memory. These include Vectors, Arrays, and - - pointers. - example: [] - syntax: - content: 'public interface ISequenceType : ITypeRef, IEquatable' - content.vb: Public Interface ISequenceType Inherits ITypeRef, IEquatable(Of ITypeRef) - inheritedMembers: - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - commentId: P:Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - id: ElementType - parent: Ubiquity.NET.Llvm.Types.ISequenceType - langs: - - csharp - - vb - name: ElementType - nameWithType: ISequenceType.ElementType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/SequenceType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ElementType - path: ../src/Ubiquity.NET.Llvm/Types/SequenceType.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the types of the elements in the sequence - example: [] - syntax: - content: ITypeRef ElementType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: ReadOnly Property ElementType As ITypeRef - overload: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType* -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType* - commentId: Overload:Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - href: Ubiquity.NET.Llvm.Types.ISequenceType.html#Ubiquity_NET_Llvm_Types_ISequenceType_ElementType - name: ElementType - nameWithType: ISequenceType.ElementType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IStructType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IStructType.yml deleted file mode 100644 index 0910cf4521..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IStructType.yml +++ /dev/null @@ -1,624 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - id: IStructType - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.IStructType.IsPacked - - Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - langs: - - csharp - - vb - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/StructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IStructType - path: ../src/Ubiquity.NET.Llvm/Types/StructType.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Interface for an LLVM structure type - example: [] - syntax: - content: 'public interface IStructType : INamedStructuralType, ITypeRef, IEquatable' - content.vb: Public Interface IStructType Inherits INamedStructuralType, ITypeRef, IEquatable(Of ITypeRef) - inheritedMembers: - - Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - - Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - - Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.Types.IStructType.IsPacked - commentId: P:Ubiquity.NET.Llvm.Types.IStructType.IsPacked - id: IsPacked - parent: Ubiquity.NET.Llvm.Types.IStructType - langs: - - csharp - - vb - name: IsPacked - nameWithType: IStructType.IsPacked - fullName: Ubiquity.NET.Llvm.Types.IStructType.IsPacked - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/StructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsPacked - path: ../src/Ubiquity.NET.Llvm/Types/StructType.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether the structure is packed (e.g. no automatic alignment padding between elements) - example: [] - syntax: - content: bool IsPacked { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsPacked As Boolean - overload: Ubiquity.NET.Llvm.Types.IStructType.IsPacked* -- uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - commentId: M:Ubiquity.NET.Llvm.Types.IStructType.SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - id: SetBody(System.Boolean,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef}) - parent: Ubiquity.NET.Llvm.Types.IStructType - langs: - - csharp - - vb - name: SetBody(bool, params IEnumerable) - nameWithType: IStructType.SetBody(bool, params IEnumerable) - fullName: Ubiquity.NET.Llvm.Types.IStructType.SetBody(bool, params System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/StructType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetBody - path: ../src/Ubiquity.NET.Llvm/Types/StructType.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Sets the body of the structure - example: [] - syntax: - content: void SetBody(bool packed, params IEnumerable elements) - parameters: - - id: packed - type: System.Boolean - description: Flag to indicate if the body elements are packed (e.g. no padding) - - id: elements - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - description: Types of each element (may be empty) - content.vb: Sub SetBody(packed As Boolean, elements As IEnumerable(Of ITypeRef)) - overload: Ubiquity.NET.Llvm.Types.IStructType.SetBody* - nameWithType.vb: IStructType.SetBody(Boolean, IEnumerable(Of ITypeRef)) - fullName.vb: Ubiquity.NET.Llvm.Types.IStructType.SetBody(Boolean, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef)) - name.vb: SetBody(Boolean, IEnumerable(Of ITypeRef)) -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.Name - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_Name - name: Name - nameWithType: INamedStructuralType.Name - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Name -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_IsOpaque - name: IsOpaque - nameWithType: INamedStructuralType.IsOpaque - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.IsOpaque -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - commentId: P:Ubiquity.NET.Llvm.Types.INamedStructuralType.Members - parent: Ubiquity.NET.Llvm.Types.INamedStructuralType - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html#Ubiquity_NET_Llvm_Types_INamedStructuralType_Members - name: Members - nameWithType: INamedStructuralType.Members - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType.Members -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - commentId: T:Ubiquity.NET.Llvm.Types.INamedStructuralType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html - name: INamedStructuralType - nameWithType: INamedStructuralType - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.IStructType.IsPacked* - commentId: Overload:Ubiquity.NET.Llvm.Types.IStructType.IsPacked - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_IsPacked - name: IsPacked - nameWithType: IStructType.IsPacked - fullName: Ubiquity.NET.Llvm.Types.IStructType.IsPacked -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Types.IStructType.SetBody* - commentId: Overload:Ubiquity.NET.Llvm.Types.IStructType.SetBody - href: Ubiquity.NET.Llvm.Types.IStructType.html#Ubiquity_NET_Llvm_Types_IStructType_SetBody_System_Boolean_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Types_ITypeRef__ - name: SetBody - nameWithType: IStructType.SetBody - fullName: Ubiquity.NET.Llvm.Types.IStructType.SetBody -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of ITypeRef) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEnumerable(Of ITypeRef) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.ITypeRef.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.ITypeRef.yml deleted file mode 100644 index 53ea7dd3a5..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.ITypeRef.yml +++ /dev/null @@ -1,939 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - id: ITypeRef - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - langs: - - csharp - - vb - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ITypeRef - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 77 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Interface for a Type in LLVM - example: [] - syntax: - content: 'public interface ITypeRef : IEquatable' - content.vb: Public Interface ITypeRef Inherits IEquatable(Of ITypeRef) - inheritedMembers: - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - id: IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsSized - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 81 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether the type is sized - example: [] - syntax: - content: bool IsSized { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsSized As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - id: Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Kind - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 84 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the LLVM Type kind for this type - example: [] - syntax: - content: TypeKind Kind { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.TypeKind - content.vb: ReadOnly Property Kind As TypeKind - overload: Ubiquity.NET.Llvm.Types.ITypeRef.Kind* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - id: IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsInteger - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 87 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether this type is an integer - example: [] - syntax: - content: bool IsInteger { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsInteger As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - id: IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsFloat - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 90 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether the type is a 32-bit IEEE floating point type - example: [] - syntax: - content: bool IsFloat { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsFloat As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - id: IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDouble - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 93 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether the type is a 64-bit IEEE floating point type - example: [] - syntax: - content: bool IsDouble { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsDouble As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - id: IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsVoid - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 96 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether this type represents the void type - example: [] - syntax: - content: bool IsVoid { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsVoid As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - id: IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsStruct - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 99 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether this type is a structure type - example: [] - syntax: - content: bool IsStruct { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsStruct As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - id: IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsPointer - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 102 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether this type is a pointer - example: [] - syntax: - content: bool IsPointer { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsPointer As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - id: IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsSequence - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 105 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether this type is a sequence type - example: [] - syntax: - content: bool IsSequence { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsSequence As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - id: IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsFloatingPoint - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 108 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether this type is a floating point type - example: [] - syntax: - content: bool IsFloatingPoint { get; } - parameters: [] - return: - type: System.Boolean - content.vb: ReadOnly Property IsFloatingPoint As Boolean - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - id: Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 111 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the ContextAlias that owns this type - example: [] - syntax: - content: IContext Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.Types.ITypeRef.Context* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - id: IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntegerBitWidth - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 114 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the integer bit width of this type or 0 for non integer types - example: [] - syntax: - content: uint IntegerBitWidth { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: ReadOnly Property IntegerBitWidth As UInteger - overload: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - id: GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetNullValue - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 123 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a null value (e.g. all bits == 0 ) for the type - remarks: >- - This is a getter function instead of a property as it can throw exceptions - - for types that don't support such a thing (i.e. void ) - example: [] - syntax: - content: Constant GetNullValue() - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: that represents a null (0) value of this type - content.vb: Function GetNullValue() As Constant - overload: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - id: CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreateArrayType - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Array type factory for an array with elements of this type - example: [] - syntax: - content: IArrayType CreateArrayType(uint count) - parameters: - - id: count - type: System.UInt32 - description: Number of elements in the array - return: - type: Ubiquity.NET.Llvm.Types.IArrayType - description: for the array - content.vb: Function CreateArrayType(count As UInteger) As IArrayType - overload: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType* - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - id: CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreatePointerType - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 133 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Get a for a type that points to elements of this type in the default (0) address space - example: [] - syntax: - content: IPointerType CreatePointerType() - return: - type: Ubiquity.NET.Llvm.Types.IPointerType - description: corresponding to the type of a pointer that refers to elements of this type - content.vb: Function CreatePointerType() As IPointerType - overload: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType* -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - id: CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - langs: - - csharp - - vb - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CreatePointerType - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 138 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Get a for a type that points to elements of this type in the specified address space - example: [] - syntax: - content: IPointerType CreatePointerType(uint addressSpace) - parameters: - - id: addressSpace - type: System.UInt32 - description: Address space for the pointer - return: - type: Ubiquity.NET.Llvm.Types.IPointerType - description: corresponding to the type of a pointer that refers to elements of this type - content.vb: Function CreatePointerType(addressSpace As UInteger) As IPointerType - overload: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType* - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.TypeKind - commentId: T:Ubiquity.NET.Llvm.Types.TypeKind - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.TypeKind.html - name: TypeKind - nameWithType: TypeKind - fullName: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.Context - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue - nameWithType: ITypeRef.GetNullValue - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Types.IArrayType - commentId: T:Ubiquity.NET.Llvm.Types.IArrayType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IArrayType.html - name: IArrayType - nameWithType: IArrayType - fullName: Ubiquity.NET.Llvm.Types.IArrayType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType - nameWithType: ITypeRef.CreateArrayType - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType* - commentId: Overload:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType - nameWithType: ITypeRef.CreatePointerType - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IVectorType.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IVectorType.yml deleted file mode 100644 index 50cc55792a..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.IVectorType.yml +++ /dev/null @@ -1,465 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.IVectorType - commentId: T:Ubiquity.NET.Llvm.Types.IVectorType - id: IVectorType - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.IVectorType.Size - langs: - - csharp - - vb - name: IVectorType - nameWithType: IVectorType - fullName: Ubiquity.NET.Llvm.Types.IVectorType - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/VectorType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IVectorType - path: ../src/Ubiquity.NET.Llvm/Types/VectorType.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Interface for an LLVM vector type - example: [] - syntax: - content: 'public interface IVectorType : ISequenceType, ITypeRef, IEquatable' - content.vb: Public Interface IVectorType Inherits ISequenceType, ITypeRef, IEquatable(Of ITypeRef) - inheritedMembers: - - Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - - Ubiquity.NET.Llvm.Types.ITypeRef.Kind - - Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - - Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - - Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - - Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - - Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - - Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - - Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - - Ubiquity.NET.Llvm.Types.ITypeRef.Context - - Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - - Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - - Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - - Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - - System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) -- uid: Ubiquity.NET.Llvm.Types.IVectorType.Size - commentId: P:Ubiquity.NET.Llvm.Types.IVectorType.Size - id: Size - parent: Ubiquity.NET.Llvm.Types.IVectorType - langs: - - csharp - - vb - name: Size - nameWithType: IVectorType.Size - fullName: Ubiquity.NET.Llvm.Types.IVectorType.Size - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/VectorType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Size - path: ../src/Ubiquity.NET.Llvm/Types/VectorType.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets the number of elements in the vector - example: [] - syntax: - content: uint Size { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: ReadOnly Property Size As UInteger - overload: Ubiquity.NET.Llvm.Types.IVectorType.Size* -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - commentId: P:Ubiquity.NET.Llvm.Types.ISequenceType.ElementType - parent: Ubiquity.NET.Llvm.Types.ISequenceType - href: Ubiquity.NET.Llvm.Types.ISequenceType.html#Ubiquity_NET_Llvm_Types_ISequenceType_ElementType - name: ElementType - nameWithType: ISequenceType.ElementType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType.ElementType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSized - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSized - name: IsSized - nameWithType: ITypeRef.IsSized - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSized -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Kind - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Kind - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Kind - name: Kind - nameWithType: ITypeRef.Kind - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Kind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsInteger - name: IsInteger - nameWithType: ITypeRef.IsInteger - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsInteger -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloat - name: IsFloat - nameWithType: ITypeRef.IsFloat - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloat -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsDouble - name: IsDouble - nameWithType: ITypeRef.IsDouble - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsDouble -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsVoid - name: IsVoid - nameWithType: ITypeRef.IsVoid - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsVoid -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsStruct - name: IsStruct - nameWithType: ITypeRef.IsStruct - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsStruct -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsPointer - name: IsPointer - nameWithType: ITypeRef.IsPointer - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsPointer -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsSequence - name: IsSequence - nameWithType: ITypeRef.IsSequence - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsSequence -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IsFloatingPoint - name: IsFloatingPoint - nameWithType: ITypeRef.IsFloatingPoint - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IsFloatingPoint -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.Context - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.Context - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_Context - name: Context - nameWithType: ITypeRef.Context - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.Context -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - commentId: P:Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_IntegerBitWidth - name: IntegerBitWidth - nameWithType: ITypeRef.IntegerBitWidth - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.IntegerBitWidth -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - name: GetNullValue() - nameWithType: ITypeRef.GetNullValue() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.GetNullValue - name: GetNullValue - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_GetNullValue - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - name: CreateArrayType(uint) - nameWithType: ITypeRef.CreateArrayType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(uint) - nameWithType.vb: ITypeRef.CreateArrayType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(UInteger) - name.vb: CreateArrayType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreateArrayType(System.UInt32) - name: CreateArrayType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreateArrayType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - parent: Ubiquity.NET.Llvm.Types.ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - name: CreatePointerType() - nameWithType: ITypeRef.CreatePointerType() - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - parent: Ubiquity.NET.Llvm.Types.ITypeRef - isExternal: true - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - name: CreatePointerType(uint) - nameWithType: ITypeRef.CreatePointerType(uint) - fullName: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(uint) - nameWithType.vb: ITypeRef.CreatePointerType(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(UInteger) - name.vb: CreatePointerType(UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Types.ITypeRef.CreatePointerType(System.UInt32) - name: CreatePointerType - href: Ubiquity.NET.Llvm.Types.ITypeRef.html#Ubiquity_NET_Llvm_Types_ITypeRef_CreatePointerType_System_UInt32_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(ITypeRef) - nameWithType: IEquatable.Equals(ITypeRef) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - nameWithType.vb: IEquatable(Of ITypeRef).Equals(ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef).Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef}.Equals(Ubiquity.NET.Llvm.Types.ITypeRef) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Types.ISequenceType - commentId: T:Ubiquity.NET.Llvm.Types.ISequenceType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ISequenceType.html - name: ISequenceType - nameWithType: ISequenceType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Types.ITypeRef} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of ITypeRef) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Types.ITypeRef) - name.vb: IEquatable(Of ITypeRef) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.IVectorType.Size* - commentId: Overload:Ubiquity.NET.Llvm.Types.IVectorType.Size - href: Ubiquity.NET.Llvm.Types.IVectorType.html#Ubiquity_NET_Llvm_Types_IVectorType_Size - name: Size - nameWithType: IVectorType.Size - fullName: Ubiquity.NET.Llvm.Types.IVectorType.Size -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.PointerTypeExtensions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.PointerTypeExtensions.yml deleted file mode 100644 index 4423127766..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.PointerTypeExtensions.yml +++ /dev/null @@ -1,404 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - commentId: T:Ubiquity.NET.Llvm.Types.PointerTypeExtensions - id: PointerTypeExtensions - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - langs: - - csharp - - vb - name: PointerTypeExtensions - nameWithType: PointerTypeExtensions - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/IPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PointerTypeExtensions - path: ../src/Ubiquity.NET.Llvm/Types/IPointerType.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Utility class to provide extensions for - remarks: >- - These are useful even in the presence of default property implementations as the properties - - are not accessible accept when the type is explicitly the interface. To access them would require - - casting to the interface, just to get at the default implemented property. [Ugly!] - example: [] - syntax: - content: public static class PointerTypeExtensions - content.vb: Public Module PointerTypeExtensions - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - commentId: M:Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - id: IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - langs: - - csharp - - vb - name: IsOpaquePtr(IPointerType) - nameWithType: PointerTypeExtensions.IsOpaquePtr(IPointerType) - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr(Ubiquity.NET.Llvm.Types.IPointerType) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/IPointerType.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsOpaquePtr - path: ../src/Ubiquity.NET.Llvm/Types/IPointerType.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Gets a value indicating whether ptr is opaque - remarks: >- - An opaque pointer is one where the is null. - - This is normal for LLVM now. However, it makes for more complicated code generation. Thus, the - - types in this wrapper try to keep track of the type of data a pointer is pointing to. This isn't - - always plausible so it might be opaque. This is normally true for anything retrieved from LLVM IR - - but is not normal for anything that creates or clones the IR. Since the pointer type creation is - - done as a method of the thing being pointed to this information is "attached" to the pointer so - - that the is not null. - example: [] - syntax: - content: public static bool IsOpaquePtr(this IPointerType ptr) - parameters: - - id: ptr - type: Ubiquity.NET.Llvm.Types.IPointerType - description: Pointer type to test - return: - type: System.Boolean - description: true if this pointer is opaque false if it is not - content.vb: Public Shared Function IsOpaquePtr(ptr As IPointerType) As Boolean - overload: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr* -references: -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Types.IPointerType.ElementType - commentId: P:Ubiquity.NET.Llvm.Types.IPointerType.ElementType - parent: Ubiquity.NET.Llvm.Types.IPointerType - href: Ubiquity.NET.Llvm.Types.IPointerType.html#Ubiquity_NET_Llvm_Types_IPointerType_ElementType - name: ElementType - nameWithType: IPointerType.ElementType - fullName: Ubiquity.NET.Llvm.Types.IPointerType.ElementType -- uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr* - commentId: Overload:Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html#Ubiquity_NET_Llvm_Types_PointerTypeExtensions_IsOpaquePtr_Ubiquity_NET_Llvm_Types_IPointerType_ - name: IsOpaquePtr - nameWithType: PointerTypeExtensions.IsOpaquePtr - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.IsOpaquePtr -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.TypeKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.TypeKind.yml deleted file mode 100644 index e827f8b467..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.TypeKind.yml +++ /dev/null @@ -1,780 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types.TypeKind - commentId: T:Ubiquity.NET.Llvm.Types.TypeKind - id: TypeKind - parent: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.TypeKind.Array - - Ubiquity.NET.Llvm.Types.TypeKind.BFloat - - Ubiquity.NET.Llvm.Types.TypeKind.Float128 - - Ubiquity.NET.Llvm.Types.TypeKind.Float128m112 - - Ubiquity.NET.Llvm.Types.TypeKind.Float16 - - Ubiquity.NET.Llvm.Types.TypeKind.Float32 - - Ubiquity.NET.Llvm.Types.TypeKind.Float64 - - Ubiquity.NET.Llvm.Types.TypeKind.Function - - Ubiquity.NET.Llvm.Types.TypeKind.Integer - - Ubiquity.NET.Llvm.Types.TypeKind.Label - - Ubiquity.NET.Llvm.Types.TypeKind.Metadata - - Ubiquity.NET.Llvm.Types.TypeKind.Pointer - - Ubiquity.NET.Llvm.Types.TypeKind.ScalableVector - - Ubiquity.NET.Llvm.Types.TypeKind.Struct - - Ubiquity.NET.Llvm.Types.TypeKind.TargetSpecific - - Ubiquity.NET.Llvm.Types.TypeKind.Token - - Ubiquity.NET.Llvm.Types.TypeKind.Vector - - Ubiquity.NET.Llvm.Types.TypeKind.Void - - Ubiquity.NET.Llvm.Types.TypeKind.X86AMX - - Ubiquity.NET.Llvm.Types.TypeKind.X86Float80 - langs: - - csharp - - vb - name: TypeKind - nameWithType: TypeKind - fullName: Ubiquity.NET.Llvm.Types.TypeKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TypeKind - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Basic kind of a type - example: [] - syntax: - content: public enum TypeKind - content.vb: Public Enum TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Void - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Void - id: Void - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Void - nameWithType: TypeKind.Void - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Void - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Void - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Type with no size - example: [] - syntax: - content: Void = 0 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Float16 - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Float16 - id: Float16 - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Float16 - nameWithType: TypeKind.Float16 - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Float16 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Float16 - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: 16 bit floating point type - example: [] - syntax: - content: Float16 = 1 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Float32 - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Float32 - id: Float32 - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Float32 - nameWithType: TypeKind.Float32 - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Float32 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Float32 - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: 32 bit floating point type - example: [] - syntax: - content: Float32 = 2 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Float64 - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Float64 - id: Float64 - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Float64 - nameWithType: TypeKind.Float64 - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Float64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Float64 - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: 64 bit floating point type - example: [] - syntax: - content: Float64 = 3 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.X86Float80 - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.X86Float80 - id: X86Float80 - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: X86Float80 - nameWithType: TypeKind.X86Float80 - fullName: Ubiquity.NET.Llvm.Types.TypeKind.X86Float80 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86Float80 - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: 80 bit floating point type (X87) - example: [] - syntax: - content: X86Float80 = 4 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Float128m112 - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Float128m112 - id: Float128m112 - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Float128m112 - nameWithType: TypeKind.Float128m112 - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Float128m112 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Float128m112 - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 31 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: 128 bit floating point type (112-bit mantissa) - example: [] - syntax: - content: Float128m112 = 5 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Float128 - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Float128 - id: Float128 - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Float128 - nameWithType: TypeKind.Float128 - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Float128 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Float128 - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: 128 bit floating point type (two 64-bits) - example: [] - syntax: - content: Float128 = 6 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Label - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Label - id: Label - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Label - nameWithType: TypeKind.Label - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Label - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Label - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: instruction label - example: [] - syntax: - content: Label = 7 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Integer - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Integer - id: Integer - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Integer - nameWithType: TypeKind.Integer - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Integer - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Integer - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Arbitrary bit width integers - example: [] - syntax: - content: Integer = 8 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Function - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Function - id: Function - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Function - nameWithType: TypeKind.Function - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Function - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Function - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: - example: [] - syntax: - content: Function = 9 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Struct - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Struct - id: Struct - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Struct - nameWithType: TypeKind.Struct - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Struct - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Struct - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: - example: [] - syntax: - content: Struct = 10 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Array - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Array - id: Array - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Array - nameWithType: TypeKind.Array - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Array - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Array - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: - example: [] - syntax: - content: Array = 11 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Pointer - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Pointer - id: Pointer - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Pointer - nameWithType: TypeKind.Pointer - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Pointer - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Pointer - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: - example: [] - syntax: - content: Pointer = 12 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Vector - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Vector - id: Vector - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Vector - nameWithType: TypeKind.Vector - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Vector - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Vector - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: SIMD 'packed' format, or other implementation - example: [] - syntax: - content: Vector = 13 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Metadata - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Metadata - id: Metadata - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Metadata - nameWithType: TypeKind.Metadata - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Metadata - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Metadata - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: - example: [] - syntax: - content: Metadata = 14 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.Token - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.Token - id: Token - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Token - nameWithType: TypeKind.Token - fullName: Ubiquity.NET.Llvm.Types.TypeKind.Token - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Token - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Exception handler token - example: [] - syntax: - content: Token = 16 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.ScalableVector - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.ScalableVector - id: ScalableVector - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: ScalableVector - nameWithType: TypeKind.ScalableVector - fullName: Ubiquity.NET.Llvm.Types.TypeKind.ScalableVector - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ScalableVector - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Scalable vector - example: [] - syntax: - content: ScalableVector = 17 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.BFloat - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.BFloat - id: BFloat - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: BFloat - nameWithType: TypeKind.BFloat - fullName: Ubiquity.NET.Llvm.Types.TypeKind.BFloat - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BFloat - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: B Float type - example: [] - syntax: - content: BFloat = 18 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.X86AMX - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.X86AMX - id: X86AMX - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: X86AMX - nameWithType: TypeKind.X86AMX - fullName: Ubiquity.NET.Llvm.Types.TypeKind.X86AMX - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86AMX - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: x86 AMX data type - example: [] - syntax: - content: X86AMX = 19 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.TypeKind.TargetSpecific - commentId: F:Ubiquity.NET.Llvm.Types.TypeKind.TargetSpecific - id: TargetSpecific - parent: Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: TargetSpecific - nameWithType: TypeKind.TargetSpecific - fullName: Ubiquity.NET.Llvm.Types.TypeKind.TargetSpecific - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TargetSpecific - path: ../src/Ubiquity.NET.Llvm/Types/ITypeRef.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Types - summary: Target specific extended type - example: [] - syntax: - content: TargetSpecific = 20 - return: - type: Ubiquity.NET.Llvm.Types.TypeKind -references: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Types.TypeKind - commentId: T:Ubiquity.NET.Llvm.Types.TypeKind - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.TypeKind.html - name: TypeKind - nameWithType: TypeKind - fullName: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IStructType.html - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType -- uid: Ubiquity.NET.Llvm.Types.IArrayType - commentId: T:Ubiquity.NET.Llvm.Types.IArrayType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IArrayType.html - name: IArrayType - nameWithType: IArrayType - fullName: Ubiquity.NET.Llvm.Types.IArrayType -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.Types.IVectorType - commentId: T:Ubiquity.NET.Llvm.Types.IVectorType - href: Ubiquity.NET.Llvm.Types.IVectorType.html - name: IVectorType - nameWithType: IVectorType - fullName: Ubiquity.NET.Llvm.Types.IVectorType -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Types.yml deleted file mode 100644 index 082f390236..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Types.yml +++ /dev/null @@ -1,133 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - id: Ubiquity.NET.Llvm.Types - children: - - Ubiquity.NET.Llvm.Types.IArrayType - - Ubiquity.NET.Llvm.Types.IFunctionType - - Ubiquity.NET.Llvm.Types.INamedStructuralType - - Ubiquity.NET.Llvm.Types.IPointerType - - Ubiquity.NET.Llvm.Types.ISequenceType - - Ubiquity.NET.Llvm.Types.IStructType - - Ubiquity.NET.Llvm.Types.ITypeRef - - Ubiquity.NET.Llvm.Types.IVectorType - - Ubiquity.NET.Llvm.Types.PointerTypeExtensions - - Ubiquity.NET.Llvm.Types.TypeKind - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.Types.IArrayType - commentId: T:Ubiquity.NET.Llvm.Types.IArrayType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IArrayType.html - name: IArrayType - nameWithType: IArrayType - fullName: Ubiquity.NET.Llvm.Types.IArrayType -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType -- uid: Ubiquity.NET.Llvm.Types.IPointerType - commentId: T:Ubiquity.NET.Llvm.Types.IPointerType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IPointerType.html - name: IPointerType - nameWithType: IPointerType - fullName: Ubiquity.NET.Llvm.Types.IPointerType -- uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - commentId: T:Ubiquity.NET.Llvm.Types.PointerTypeExtensions - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.PointerTypeExtensions.html - name: PointerTypeExtensions - nameWithType: PointerTypeExtensions - fullName: Ubiquity.NET.Llvm.Types.PointerTypeExtensions -- uid: Ubiquity.NET.Llvm.Types.TypeKind - commentId: T:Ubiquity.NET.Llvm.Types.TypeKind - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.TypeKind.html - name: TypeKind - nameWithType: TypeKind - fullName: Ubiquity.NET.Llvm.Types.TypeKind -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types.ISequenceType - commentId: T:Ubiquity.NET.Llvm.Types.ISequenceType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ISequenceType.html - name: ISequenceType - nameWithType: ISequenceType - fullName: Ubiquity.NET.Llvm.Types.ISequenceType -- uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - commentId: T:Ubiquity.NET.Llvm.Types.INamedStructuralType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.INamedStructuralType.html - name: INamedStructuralType - nameWithType: INamedStructuralType - fullName: Ubiquity.NET.Llvm.Types.INamedStructuralType -- uid: Ubiquity.NET.Llvm.Types.IStructType - commentId: T:Ubiquity.NET.Llvm.Types.IStructType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IStructType.html - name: IStructType - nameWithType: IStructType - fullName: Ubiquity.NET.Llvm.Types.IStructType -- uid: Ubiquity.NET.Llvm.Types.IVectorType - commentId: T:Ubiquity.NET.Llvm.Types.IVectorType - href: Ubiquity.NET.Llvm.Types.IVectorType.html - name: IVectorType - nameWithType: IVectorType - fullName: Ubiquity.NET.Llvm.Types.IVectorType -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Argument.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Argument.yml deleted file mode 100644 index 6316ec2e79..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Argument.yml +++ /dev/null @@ -1,1261 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.Argument - commentId: T:Ubiquity.NET.Llvm.Values.Argument - id: Argument - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.Argument.AddAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.Argument.AddAttributes(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Values.Argument.AddAttributes(Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Values.Argument.AddAttributes(Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Values.Argument.Attributes - - Ubiquity.NET.Llvm.Values.Argument.ContainingFunction - - Ubiquity.NET.Llvm.Values.Argument.Index - - Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(System.String) - - Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.Argument.SetAlignment(System.UInt32) - langs: - - csharp - - vb - name: Argument - nameWithType: Argument - fullName: Ubiquity.NET.Llvm.Values.Argument - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Argument - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: An LLVM Value representing an Argument to a function - example: [] - syntax: - content: 'public class Argument : Value, IEquatable' - content.vb: Public Class Argument Inherits Value Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.Argument.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.Argument.ContainingFunction - commentId: P:Ubiquity.NET.Llvm.Values.Argument.ContainingFunction - id: ContainingFunction - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: ContainingFunction - nameWithType: Argument.ContainingFunction - fullName: Ubiquity.NET.Llvm.Values.Argument.ContainingFunction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ContainingFunction - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the function this argument belongs to - example: [] - syntax: - content: public Function ContainingFunction { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Function - content.vb: Public ReadOnly Property ContainingFunction As [Function] - overload: Ubiquity.NET.Llvm.Values.Argument.ContainingFunction* -- uid: Ubiquity.NET.Llvm.Values.Argument.Index - commentId: P:Ubiquity.NET.Llvm.Values.Argument.Index - id: Index - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: Index - nameWithType: Argument.Index - fullName: Ubiquity.NET.Llvm.Values.Argument.Index - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Index - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the zero based index of the argument - example: [] - syntax: - content: public uint Index { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Index As UInteger - overload: Ubiquity.NET.Llvm.Values.Argument.Index* -- uid: Ubiquity.NET.Llvm.Values.Argument.SetAlignment(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Values.Argument.SetAlignment(System.UInt32) - id: SetAlignment(System.UInt32) - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: SetAlignment(uint) - nameWithType: Argument.SetAlignment(uint) - fullName: Ubiquity.NET.Llvm.Values.Argument.SetAlignment(uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetAlignment - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Sets the alignment for the argument - example: [] - syntax: - content: public Argument SetAlignment(uint value) - parameters: - - id: value - type: System.UInt32 - description: Alignment value for this argument - return: - type: Ubiquity.NET.Llvm.Values.Argument - description: this for Fluent access - content.vb: Public Function SetAlignment(value As UInteger) As Argument - overload: Ubiquity.NET.Llvm.Values.Argument.SetAlignment* - nameWithType.vb: Argument.SetAlignment(UInteger) - fullName.vb: Ubiquity.NET.Llvm.Values.Argument.SetAlignment(UInteger) - name.vb: SetAlignment(UInteger) -- uid: Ubiquity.NET.Llvm.Values.Argument.Attributes - commentId: P:Ubiquity.NET.Llvm.Values.Argument.Attributes - id: Attributes - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: Attributes - nameWithType: Argument.Attributes - fullName: Ubiquity.NET.Llvm.Values.Argument.Attributes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Attributes - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the attributes for this argument - example: [] - syntax: - content: public ICollection Attributes { get; } - parameters: [] - return: - type: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - content.vb: Public ReadOnly Property Attributes As ICollection(Of AttributeValue) - overload: Ubiquity.NET.Llvm.Values.Argument.Attributes* -- uid: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.Argument.AddAttributes(Ubiquity.NET.Llvm.Values.AttributeKind[]) - id: AddAttributes(Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: AddAttributes(params AttributeKind[]) - nameWithType: Argument.AddAttributes(params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(params Ubiquity.NET.Llvm.Values.AttributeKind[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributes - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds attributes to an - example: [] - syntax: - content: public Argument AddAttributes(params AttributeKind[] values) - parameters: - - id: values - type: Ubiquity.NET.Llvm.Values.AttributeKind[] - description: s to add - return: - type: Ubiquity.NET.Llvm.Values.Argument - description: This Argument for Fluent use - content.vb: Public Function AddAttributes(ParamArray values As AttributeKind()) As Argument - overload: Ubiquity.NET.Llvm.Values.Argument.AddAttributes* - nameWithType.vb: Argument.AddAttributes(ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(ParamArray AttributeKind()) -- uid: Ubiquity.NET.Llvm.Values.Argument.AddAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.Argument.AddAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - id: AddAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: AddAttribute(AttributeKind) - nameWithType: Argument.AddAttribute(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.Argument.AddAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttribute - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds an attribute to an - example: [] - syntax: - content: public Argument AddAttribute(AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to add - return: - type: Ubiquity.NET.Llvm.Values.Argument - description: This Argument for Fluent access - content.vb: Public Function AddAttribute(kind As AttributeKind) As Argument - overload: Ubiquity.NET.Llvm.Values.Argument.AddAttribute* -- uid: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.Argument.AddAttributes(Ubiquity.NET.Llvm.Values.AttributeValue[]) - id: AddAttributes(Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: AddAttributes(params AttributeValue[]) - nameWithType: Argument.AddAttributes(params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(params Ubiquity.NET.Llvm.Values.AttributeValue[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributes - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds s to an - example: [] - syntax: - content: public Argument AddAttributes(params AttributeValue[] attributes) - parameters: - - id: attributes - type: Ubiquity.NET.Llvm.Values.AttributeValue[] - description: s to add - return: - type: Ubiquity.NET.Llvm.Values.Argument - description: This Argument for fluent usage - content.vb: Public Function AddAttributes(ParamArray attributes As AttributeValue()) As Argument - overload: Ubiquity.NET.Llvm.Values.Argument.AddAttributes* - nameWithType.vb: Argument.AddAttributes(ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(ParamArray AttributeValue()) -- uid: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.Argument.AddAttributes(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - id: AddAttributes(System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: AddAttributes(IEnumerable) - nameWithType: Argument.AddAttributes(IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributes - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 77 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds s to an - example: [] - syntax: - content: public Argument AddAttributes(IEnumerable attributes) - parameters: - - id: attributes - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - description: s to add - return: - type: Ubiquity.NET.Llvm.Values.Argument - description: This Argument for fluent usage - content.vb: Public Function AddAttributes(attributes As IEnumerable(Of AttributeValue)) As Argument - overload: Ubiquity.NET.Llvm.Values.Argument.AddAttributes* - nameWithType.vb: Argument.AddAttributes(IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.Argument.AddAttributes(System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(IEnumerable(Of AttributeValue)) -- uid: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - id: RemoveAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: RemoveAttribute(AttributeKind) - nameWithType: Argument.RemoveAttribute(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttribute - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 93 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes an from an - example: [] - syntax: - content: public Argument RemoveAttribute(AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to remove - return: - type: Ubiquity.NET.Llvm.Values.Argument - description: This Argument for fluent usage - content.vb: Public Function RemoveAttribute(kind As AttributeKind) As Argument - overload: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute* -- uid: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(System.String) - id: RemoveAttribute(System.String) - parent: Ubiquity.NET.Llvm.Values.Argument - langs: - - csharp - - vb - name: RemoveAttribute(string) - nameWithType: Argument.RemoveAttribute(string) - fullName: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Argument.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttribute - path: ../src/Ubiquity.NET.Llvm/Values/Argument.cs - startLine: 102 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes a named attribute from an - example: [] - syntax: - content: public Argument RemoveAttribute(string name) - parameters: - - id: name - type: System.String - description: Name of the attribute to remove - return: - type: Ubiquity.NET.Llvm.Values.Argument - description: This Argument for fluent usage - content.vb: Public Function RemoveAttribute(name As String) As Argument - overload: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute* - nameWithType.vb: Argument.RemoveAttribute(String) - fullName.vb: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute(String) - name.vb: RemoveAttribute(String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Argument.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Argument, string) - nameWithType: ValueExtensions.RegisterName(Argument, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.Argument, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Argument)(Argument, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.Argument)(Ubiquity.NET.Llvm.Values.Argument, String) - name.vb: RegisterName(Of Argument)(Argument, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.Argument,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Argument - name: Argument - href: Ubiquity.NET.Llvm.Values.Argument.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Argument - name: Argument - href: Ubiquity.NET.Llvm.Values.Argument.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.Argument,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Argument - name: Argument - href: Ubiquity.NET.Llvm.Values.Argument.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Argument - name: Argument - href: Ubiquity.NET.Llvm.Values.Argument.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.Argument.ContainingFunction* - commentId: Overload:Ubiquity.NET.Llvm.Values.Argument.ContainingFunction - href: Ubiquity.NET.Llvm.Values.Argument.html#Ubiquity_NET_Llvm_Values_Argument_ContainingFunction - name: ContainingFunction - nameWithType: Argument.ContainingFunction - fullName: Ubiquity.NET.Llvm.Values.Argument.ContainingFunction -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Values.Argument.Index* - commentId: Overload:Ubiquity.NET.Llvm.Values.Argument.Index - href: Ubiquity.NET.Llvm.Values.Argument.html#Ubiquity_NET_Llvm_Values_Argument_Index - name: Index - nameWithType: Argument.Index - fullName: Ubiquity.NET.Llvm.Values.Argument.Index -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Values.Argument.SetAlignment* - commentId: Overload:Ubiquity.NET.Llvm.Values.Argument.SetAlignment - href: Ubiquity.NET.Llvm.Values.Argument.html#Ubiquity_NET_Llvm_Values_Argument_SetAlignment_System_UInt32_ - name: SetAlignment - nameWithType: Argument.SetAlignment - fullName: Ubiquity.NET.Llvm.Values.Argument.SetAlignment -- uid: Ubiquity.NET.Llvm.Values.Argument - commentId: T:Ubiquity.NET.Llvm.Values.Argument - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Argument.html - name: Argument - nameWithType: Argument - fullName: Ubiquity.NET.Llvm.Values.Argument -- uid: Ubiquity.NET.Llvm.Values.Argument.Attributes* - commentId: Overload:Ubiquity.NET.Llvm.Values.Argument.Attributes - href: Ubiquity.NET.Llvm.Values.Argument.html#Ubiquity_NET_Llvm_Values_Argument_Attributes - name: Attributes - nameWithType: Argument.Attributes - fullName: Ubiquity.NET.Llvm.Values.Argument.Attributes -- uid: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.ICollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of AttributeValue) - fullName.vb: System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: ICollection(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Collections.Generic.ICollection`1 - commentId: T:System.Collections.Generic.ICollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of T) - fullName.vb: System.Collections.Generic.ICollection(Of T) - name.vb: ICollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.Argument.AddAttributes* - commentId: Overload:Ubiquity.NET.Llvm.Values.Argument.AddAttributes - href: Ubiquity.NET.Llvm.Values.Argument.html#Ubiquity_NET_Llvm_Values_Argument_AddAttributes_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes - nameWithType: Argument.AddAttributes - fullName: Ubiquity.NET.Llvm.Values.Argument.AddAttributes -- uid: Ubiquity.NET.Llvm.Values.AttributeKind[] - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind[] - nameWithType: AttributeKind[] - fullName: Ubiquity.NET.Llvm.Values.AttributeKind[] - nameWithType.vb: AttributeKind() - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeKind() - name.vb: AttributeKind() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Argument.AddAttribute* - commentId: Overload:Ubiquity.NET.Llvm.Values.Argument.AddAttribute - href: Ubiquity.NET.Llvm.Values.Argument.html#Ubiquity_NET_Llvm_Values_Argument_AddAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute - nameWithType: Argument.AddAttribute - fullName: Ubiquity.NET.Llvm.Values.Argument.AddAttribute -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Values.AttributeValue[] - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue[] - nameWithType: AttributeValue[] - fullName: Ubiquity.NET.Llvm.Values.AttributeValue[] - nameWithType.vb: AttributeValue() - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeValue() - name.vb: AttributeValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of AttributeValue) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: IEnumerable(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute* - commentId: Overload:Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute - href: Ubiquity.NET.Llvm.Values.Argument.html#Ubiquity_NET_Llvm_Values_Argument_RemoveAttribute_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute - nameWithType: Argument.RemoveAttribute - fullName: Ubiquity.NET.Llvm.Values.Argument.RemoveAttribute -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AsmDialect.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AsmDialect.yml deleted file mode 100644 index 2fbce7108f..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AsmDialect.yml +++ /dev/null @@ -1,134 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.AsmDialect - commentId: T:Ubiquity.NET.Llvm.Values.AsmDialect - id: AsmDialect - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.AsmDialect.ATT - - Ubiquity.NET.Llvm.Values.AsmDialect.Intel - langs: - - csharp - - vb - name: AsmDialect - nameWithType: AsmDialect - fullName: Ubiquity.NET.Llvm.Values.AsmDialect - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/InlineAsm.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AsmDialect - path: ../src/Ubiquity.NET.Llvm/Values/InlineAsm.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Assembly language output dialect - example: [] - syntax: - content: public enum AsmDialect - content.vb: Public Enum AsmDialect -- uid: Ubiquity.NET.Llvm.Values.AsmDialect.ATT - commentId: F:Ubiquity.NET.Llvm.Values.AsmDialect.ATT - id: ATT - parent: Ubiquity.NET.Llvm.Values.AsmDialect - langs: - - csharp - - vb - name: ATT - nameWithType: AsmDialect.ATT - fullName: Ubiquity.NET.Llvm.Values.AsmDialect.ATT - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/InlineAsm.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ATT - path: ../src/Ubiquity.NET.Llvm/Values/InlineAsm.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: AT&T Style - example: [] - syntax: - content: ATT = 0 - return: - type: Ubiquity.NET.Llvm.Values.AsmDialect -- uid: Ubiquity.NET.Llvm.Values.AsmDialect.Intel - commentId: F:Ubiquity.NET.Llvm.Values.AsmDialect.Intel - id: Intel - parent: Ubiquity.NET.Llvm.Values.AsmDialect - langs: - - csharp - - vb - name: Intel - nameWithType: AsmDialect.Intel - fullName: Ubiquity.NET.Llvm.Values.AsmDialect.Intel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/InlineAsm.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Intel - path: ../src/Ubiquity.NET.Llvm/Values/InlineAsm.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Intel Style - example: [] - syntax: - content: Intel = 1 - return: - type: Ubiquity.NET.Llvm.Values.AsmDialect -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.AsmDialect - commentId: T:Ubiquity.NET.Llvm.Values.AsmDialect - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AsmDialect.html - name: AsmDialect - nameWithType: AsmDialect - fullName: Ubiquity.NET.Llvm.Values.AsmDialect diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeAllowedOn.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeAllowedOn.yml deleted file mode 100644 index cf0ca5b76b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeAllowedOn.yml +++ /dev/null @@ -1,202 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - commentId: T:Ubiquity.NET.Llvm.Values.AttributeAllowedOn - id: AttributeAllowedOn - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Function - - Ubiquity.NET.Llvm.Values.AttributeAllowedOn.None - - Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Parameter - - Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Return - langs: - - csharp - - vb - name: AttributeAllowedOn - nameWithType: AttributeAllowedOn - fullName: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AttributeAllowedOn - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Enumeration flags to indicate which attribute set index an attribute may apply to - example: [] - syntax: - content: >- - [Flags] - - public enum AttributeAllowedOn - content.vb: >- - - - Public Enum AttributeAllowedOn - attributes: - - type: System.FlagsAttribute - ctor: System.FlagsAttribute.#ctor - arguments: [] -- uid: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.None - commentId: F:Ubiquity.NET.Llvm.Values.AttributeAllowedOn.None - id: None - parent: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - langs: - - csharp - - vb - name: None - nameWithType: AttributeAllowedOn.None - fullName: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Invalid attributes don't apply to any index - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.Values.AttributeAllowedOn -- uid: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Function - commentId: F:Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Function - id: Function - parent: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - langs: - - csharp - - vb - name: Function - nameWithType: AttributeAllowedOn.Function - fullName: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Function - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Function - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The attribute is applicable to a function - example: [] - syntax: - content: Function = 1 - return: - type: Ubiquity.NET.Llvm.Values.AttributeAllowedOn -- uid: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Return - commentId: F:Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Return - id: Return - parent: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - langs: - - csharp - - vb - name: Return - nameWithType: AttributeAllowedOn.Return - fullName: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Return - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Return - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The attribute is applicable to a function's return - example: [] - syntax: - content: Return = 2 - return: - type: Ubiquity.NET.Llvm.Values.AttributeAllowedOn -- uid: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Parameter - commentId: F:Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Parameter - id: Parameter - parent: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - langs: - - csharp - - vb - name: Parameter - nameWithType: AttributeAllowedOn.Parameter - fullName: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.Parameter - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Parameter - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The attribute is applicable to a function's parameter - example: [] - syntax: - content: Parameter = 4 - return: - type: Ubiquity.NET.Llvm.Values.AttributeAllowedOn -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - commentId: T:Ubiquity.NET.Llvm.Values.AttributeAllowedOn - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.html - name: AttributeAllowedOn - nameWithType: AttributeAllowedOn - fullName: Ubiquity.NET.Llvm.Values.AttributeAllowedOn diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.yml deleted file mode 100644 index 659089d7bf..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.yml +++ /dev/null @@ -1,542 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - commentId: T:Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - id: AttributeCollectionExtensions - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},System.String) - - Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind) - langs: - - csharp - - vb - name: AttributeCollectionExtensions - nameWithType: AttributeCollectionExtensions - fullName: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AttributeCollectionExtensions - path: ../src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Extension methods for a collection of - example: [] - syntax: - content: public static class AttributeCollectionExtensions - content.vb: Public Module AttributeCollectionExtensions - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind) - id: Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - langs: - - csharp - - vb - name: Remove(ICollection, AttributeKind) - nameWithType: AttributeCollectionExtensions.Remove(ICollection, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Remove - path: ../src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes an attribute from a collection - example: [] - syntax: - content: public static bool Remove(this ICollection set, AttributeKind kind) - parameters: - - id: set - type: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Attribute collection (set) to remove the attribute from - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to remove - return: - type: System.Boolean - description: true if kind was in set before being removed - content.vb: Public Shared Function Remove([set] As ICollection(Of AttributeValue), kind As AttributeKind) As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove* - nameWithType.vb: AttributeCollectionExtensions.Remove(ICollection(Of AttributeValue), AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue), Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: Remove(ICollection(Of AttributeValue), AttributeKind) -- uid: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},System.String) - id: Remove(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},System.String) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - langs: - - csharp - - vb - name: Remove(ICollection, string) - nameWithType: AttributeCollectionExtensions.Remove(ICollection, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Remove - path: ../src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes an attribute from a collection - example: [] - syntax: - content: public static bool Remove(this ICollection set, string name) - parameters: - - id: set - type: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Attribute collection (set) to remove the attribute from - - id: name - type: System.String - description: Name of the attribute to remove - return: - type: System.Boolean - description: true if name was in set before being removed - content.vb: Public Shared Function Remove([set] As ICollection(Of AttributeValue), name As String) As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove* - nameWithType.vb: AttributeCollectionExtensions.Remove(ICollection(Of AttributeValue), String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove(System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue), String) - name.vb: Remove(ICollection(Of AttributeValue), String) -references: -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove - href: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.html#Ubiquity_NET_Llvm_Values_AttributeCollectionExtensions_Remove_System_Collections_Generic_ICollection_Ubiquity_NET_Llvm_Values_AttributeValue__Ubiquity_NET_Llvm_Values_AttributeKind_ - name: Remove - nameWithType: AttributeCollectionExtensions.Remove - fullName: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.Remove -- uid: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.ICollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of AttributeValue) - fullName.vb: System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: ICollection(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.Collections.Generic.ICollection`1 - commentId: T:System.Collections.Generic.ICollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of T) - fullName.vb: System.Collections.Generic.ICollection(Of T) - name.vb: ICollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml deleted file mode 100644 index e4ef914654..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeContainerMixins.yml +++ /dev/null @@ -1,1044 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - id: AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - langs: - - csharp - - vb - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AttributeContainerMixins - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Provides a layer of simplicity and backwards compatibility for manipulating attributes on Values - remarks: At some point when Default interface methods are available (proposed for C#8) these methods can leverage that - example: [] - syntax: - content: public static class AttributeContainerMixins - content.vb: Public Module AttributeContainerMixins - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind) - id: Contains(System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue},Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: Contains(ICollection, AttributeKind) - nameWithType: AttributeContainerMixins.Contains(ICollection, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains(System.Collections.Generic.ICollection, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Contains - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Determines if a collection of contains a given - example: [] - syntax: - content: public static bool Contains(this ICollection self, AttributeKind kind) - parameters: - - id: self - type: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Collection to test - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to search for - return: - type: System.Boolean - description: true if found - content.vb: Public Shared Function Contains(self As ICollection(Of AttributeValue), kind As AttributeKind) As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains* - nameWithType.vb: AttributeContainerMixins.Contains(ICollection(Of AttributeValue), AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains(System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue), Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: Contains(ICollection(Of AttributeValue), AttributeKind) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - id: AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributes - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds attributes to an - example: [] - syntax: - content: 'public static T AddAttributes(this T self, FunctionAttributeIndex index, params AttributeKind[] values) where T : class, IAttributeContainer' - parameters: - - id: self - type: '{T}' - description: Container to add the attributes to - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: to add the attributes to - - id: values - type: Ubiquity.NET.Llvm.Values.AttributeKind[] - description: Attributes to add to the container - typeParameters: - - id: T - description: Container type - return: - type: '{T}' - description: self for fluent use - content.vb: Public Shared Function AddAttributes(Of T As {Class, IAttributeContainer})(self As T, index As FunctionAttributeIndex, ParamArray values As AttributeKind()) As T - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes* - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttribute - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds a single to an - example: [] - syntax: - content: 'public static T AddAttribute(this T self, FunctionAttributeIndex index, AttributeKind kind) where T : class, IAttributeContainer' - parameters: - - id: self - type: '{T}' - description: Container to add the attribute to - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: to add the attribute to - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Attribute to add to the container - typeParameters: - - id: T - description: Container type - return: - type: '{T}' - description: self for fluent use - content.vb: Public Shared Function AddAttribute(Of T As {Class, IAttributeContainer})(self As T, index As FunctionAttributeIndex, kind As AttributeKind) As T - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute* - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - id: AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttribute - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 84 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds a single to an - example: [] - syntax: - content: 'public static T AddAttribute(this T self, FunctionAttributeIndex index, AttributeValue attrib) where T : class, IAttributeContainer' - parameters: - - id: self - type: '{T}' - description: Container to add the attribute to - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: to add the attribute to - - id: attrib - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: Attribute to add to the container - typeParameters: - - id: T - description: Container type - return: - type: '{T}' - description: self for fluent use - content.vb: Public Shared Function AddAttribute(Of T As {Class, IAttributeContainer})(self As T, index As FunctionAttributeIndex, attrib As AttributeValue) As T - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute* - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - id: AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributes - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 107 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds s to an - example: [] - syntax: - content: 'public static T AddAttributes(this T self, FunctionAttributeIndex index, params AttributeValue[] attributes) where T : class, IAttributeContainer' - parameters: - - id: self - type: '{T}' - description: Container to add the attribute to - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: to add the attributes to - - id: attributes - type: Ubiquity.NET.Llvm.Values.AttributeValue[] - description: Attribute to add to the container - typeParameters: - - id: T - description: Container type - return: - type: '{T}' - description: self for fluent use - content.vb: Public Shared Function AddAttributes(Of T As {Class, IAttributeContainer})(self As T, index As FunctionAttributeIndex, ParamArray attributes As AttributeValue()) As T - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes* - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - id: AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributes - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 119 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds s to an - example: [] - syntax: - content: 'public static T AddAttributes(this T self, FunctionAttributeIndex index, IEnumerable attributes) where T : class, IAttributeContainer' - parameters: - - id: self - type: '{T}' - description: Container to add the attribute to - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: to add the attributes to - - id: attributes - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Attribute to add to the container - typeParameters: - - id: T - description: Container type - return: - type: '{T}' - description: self for fluent use - content.vb: Public Shared Function AddAttributes(Of T As {Class, IAttributeContainer})(self As T, index As FunctionAttributeIndex, attributes As IEnumerable(Of AttributeValue)) As T - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes* - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - id: AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributes - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 148 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds the attributes from and to an - example: [] - syntax: - content: 'public static T AddAttributes(this T self, FunctionAttributeIndex index, IAttributeDictionary attributes) where T : class, IAttributeContainer' - parameters: - - id: self - type: '{T}' - description: Container to add the attributes to - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: to add the attributes to - - id: attributes - type: Ubiquity.NET.Llvm.Values.IAttributeDictionary - description: containing the attributes to add to the container - typeParameters: - - id: T - description: Container type - return: - type: '{T}' - description: self for fluent use - content.vb: Public Shared Function AddAttributes(Of T As {Class, IAttributeContainer})(self As T, index As FunctionAttributeIndex, attributes As IAttributeDictionary) As T - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes* - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttribute - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 163 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes an from an - example: [] - syntax: - content: 'public static T RemoveAttribute(this T self, FunctionAttributeIndex index, AttributeKind kind) where T : class, IAttributeContainer' - parameters: - - id: self - type: '{T}' - description: Container to remove the attribute from - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: to remove the attribute from - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Attribute to remove from the container - typeParameters: - - id: T - description: Container type - return: - type: '{T}' - description: self for fluent use - content.vb: Public Shared Function RemoveAttribute(Of T As {Class, IAttributeContainer})(self As T, index As FunctionAttributeIndex, kind As AttributeKind) As T - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute* - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - langs: - - csharp - - vb - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttribute - path: ../src/Ubiquity.NET.Llvm/Values/AttributeContainerMixins.cs - startLine: 196 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes a named attribute from an - example: [] - syntax: - content: 'public static T RemoveAttribute(this T self, FunctionAttributeIndex index, string name) where T : class, IAttributeContainer' - parameters: - - id: self - type: '{T}' - description: Container to remove the attribute from - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: to remove the attribute from - - id: name - type: System.String - description: Attribute name to remove from the container - typeParameters: - - id: T - description: Container type - return: - type: '{T}' - description: self for fluent use - content.vb: Public Shared Function RemoveAttribute(Of T As {Class, IAttributeContainer})(self As T, index As FunctionAttributeIndex, name As String) As T - overload: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute* - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_Contains_System_Collections_Generic_ICollection_Ubiquity_NET_Llvm_Values_AttributeValue__Ubiquity_NET_Llvm_Values_AttributeKind_ - name: Contains - nameWithType: AttributeContainerMixins.Contains - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.Contains -- uid: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.ICollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of AttributeValue) - fullName.vb: System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: ICollection(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.Collections.Generic.ICollection`1 - commentId: T:System.Collections.Generic.ICollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of T) - fullName.vb: System.Collections.Generic.ICollection(Of T) - name.vb: ICollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes - nameWithType: AttributeContainerMixins.AddAttributes - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.Values.AttributeKind[] - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind[] - nameWithType: AttributeKind[] - fullName: Ubiquity.NET.Llvm.Values.AttributeKind[] - nameWithType.vb: AttributeKind() - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeKind() - name.vb: AttributeKind() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) -- uid: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute - nameWithType: AttributeContainerMixins.AddAttribute - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute -- uid: Ubiquity.NET.Llvm.Values.AttributeValue[] - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue[] - nameWithType: AttributeValue[] - fullName: Ubiquity.NET.Llvm.Values.AttributeValue[] - nameWithType.vb: AttributeValue() - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeValue() - name.vb: AttributeValue() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of AttributeValue) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: IEnumerable(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeDictionary - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - name: IAttributeDictionary - nameWithType: IAttributeDictionary - fullName: Ubiquity.NET.Llvm.Values.IAttributeDictionary -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute - nameWithType: AttributeContainerMixins.RemoveAttribute - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeKind.yml deleted file mode 100644 index 732ac1ef2d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeKind.yml +++ /dev/null @@ -1,3392 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - id: AttributeKind - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.AttributeKind.Alignment - - Ubiquity.NET.Llvm.Values.AttributeKind.AllocAlign - - Ubiquity.NET.Llvm.Values.AttributeKind.AllocKind - - Ubiquity.NET.Llvm.Values.AttributeKind.AllocSize - - Ubiquity.NET.Llvm.Values.AttributeKind.AllocatedPointer - - Ubiquity.NET.Llvm.Values.AttributeKind.AlwaysInline - - Ubiquity.NET.Llvm.Values.AttributeKind.BuiltIn - - Ubiquity.NET.Llvm.Values.AttributeKind.ByRef - - Ubiquity.NET.Llvm.Values.AttributeKind.ByVal - - Ubiquity.NET.Llvm.Values.AttributeKind.Captures - - Ubiquity.NET.Llvm.Values.AttributeKind.Cold - - Ubiquity.NET.Llvm.Values.AttributeKind.Convergent - - Ubiquity.NET.Llvm.Values.AttributeKind.CoroDestroyOnlyWhenComplete - - Ubiquity.NET.Llvm.Values.AttributeKind.CoroElideSafe - - Ubiquity.NET.Llvm.Values.AttributeKind.DeadOnUnwind - - Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable - - Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull - - Ubiquity.NET.Llvm.Values.AttributeKind.DisableSanitizerInstrumentation - - Ubiquity.NET.Llvm.Values.AttributeKind.ElementType - - Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeListAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.FirstEnumAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.FirstIntAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.FirstTypeAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.FnRetThunkExtern - - Ubiquity.NET.Llvm.Values.AttributeKind.Hot - - Ubiquity.NET.Llvm.Values.AttributeKind.HybridPatchable - - Ubiquity.NET.Llvm.Values.AttributeKind.ImmArg - - Ubiquity.NET.Llvm.Values.AttributeKind.InAlloca - - Ubiquity.NET.Llvm.Values.AttributeKind.InReg - - Ubiquity.NET.Llvm.Values.AttributeKind.Initializes - - Ubiquity.NET.Llvm.Values.AttributeKind.InlineHint - - Ubiquity.NET.Llvm.Values.AttributeKind.JumpTable - - Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeListAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.LastEnumAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.LastIntAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.LastTypeAttr - - Ubiquity.NET.Llvm.Values.AttributeKind.Memory - - Ubiquity.NET.Llvm.Values.AttributeKind.MinSize - - Ubiquity.NET.Llvm.Values.AttributeKind.MustProgress - - Ubiquity.NET.Llvm.Values.AttributeKind.Naked - - Ubiquity.NET.Llvm.Values.AttributeKind.Nest - - Ubiquity.NET.Llvm.Values.AttributeKind.NoAlias - - Ubiquity.NET.Llvm.Values.AttributeKind.NoBuiltIn - - Ubiquity.NET.Llvm.Values.AttributeKind.NoCallback - - Ubiquity.NET.Llvm.Values.AttributeKind.NoCapture - - Ubiquity.NET.Llvm.Values.AttributeKind.NoCfCheck - - Ubiquity.NET.Llvm.Values.AttributeKind.NoDivergenceSource - - Ubiquity.NET.Llvm.Values.AttributeKind.NoDuplicate - - Ubiquity.NET.Llvm.Values.AttributeKind.NoExt - - Ubiquity.NET.Llvm.Values.AttributeKind.NoFPClass - - Ubiquity.NET.Llvm.Values.AttributeKind.NoFree - - Ubiquity.NET.Llvm.Values.AttributeKind.NoImplicitFloat - - Ubiquity.NET.Llvm.Values.AttributeKind.NoInline - - Ubiquity.NET.Llvm.Values.AttributeKind.NoMerge - - Ubiquity.NET.Llvm.Values.AttributeKind.NoProfile - - Ubiquity.NET.Llvm.Values.AttributeKind.NoRecurse - - Ubiquity.NET.Llvm.Values.AttributeKind.NoRedZone - - Ubiquity.NET.Llvm.Values.AttributeKind.NoReturn - - Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeBounds - - Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeCoverage - - Ubiquity.NET.Llvm.Values.AttributeKind.NoSync - - Ubiquity.NET.Llvm.Values.AttributeKind.NoUndef - - Ubiquity.NET.Llvm.Values.AttributeKind.NoUnwind - - Ubiquity.NET.Llvm.Values.AttributeKind.NonLazyBind - - Ubiquity.NET.Llvm.Values.AttributeKind.NonNull - - Ubiquity.NET.Llvm.Values.AttributeKind.None - - Ubiquity.NET.Llvm.Values.AttributeKind.NullPointerIsValid - - Ubiquity.NET.Llvm.Values.AttributeKind.OptForFuzzing - - Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForDebugging - - Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForSize - - Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeNone - - Ubiquity.NET.Llvm.Values.AttributeKind.Preallocated - - Ubiquity.NET.Llvm.Values.AttributeKind.PresplitCoroutine - - Ubiquity.NET.Llvm.Values.AttributeKind.Range - - Ubiquity.NET.Llvm.Values.AttributeKind.ReadNone - - Ubiquity.NET.Llvm.Values.AttributeKind.ReadOnly - - Ubiquity.NET.Llvm.Values.AttributeKind.Returned - - Ubiquity.NET.Llvm.Values.AttributeKind.ReturnsTwice - - Ubiquity.NET.Llvm.Values.AttributeKind.SExt - - Ubiquity.NET.Llvm.Values.AttributeKind.SafeStack - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeAddress - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeHWAddress - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemTag - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemory - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeNumericalStability - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtime - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtimeBlocking - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeThread - - Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeType - - Ubiquity.NET.Llvm.Values.AttributeKind.ShadowCallStack - - Ubiquity.NET.Llvm.Values.AttributeKind.SkipProfile - - Ubiquity.NET.Llvm.Values.AttributeKind.Speculatable - - Ubiquity.NET.Llvm.Values.AttributeKind.SpeculativeLoadHardening - - Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment - - Ubiquity.NET.Llvm.Values.AttributeKind.StackProtect - - Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectReq - - Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectStrong - - Ubiquity.NET.Llvm.Values.AttributeKind.StrictFP - - Ubiquity.NET.Llvm.Values.AttributeKind.StructRet - - Ubiquity.NET.Llvm.Values.AttributeKind.SwiftAsync - - Ubiquity.NET.Llvm.Values.AttributeKind.SwiftError - - Ubiquity.NET.Llvm.Values.AttributeKind.SwiftSelf - - Ubiquity.NET.Llvm.Values.AttributeKind.UWTable - - Ubiquity.NET.Llvm.Values.AttributeKind.VScaleRange - - Ubiquity.NET.Llvm.Values.AttributeKind.WillReturn - - Ubiquity.NET.Llvm.Values.AttributeKind.Writable - - Ubiquity.NET.Llvm.Values.AttributeKind.WriteOnly - - Ubiquity.NET.Llvm.Values.AttributeKind.ZExt - langs: - - csharp - - vb - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AttributeKind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Id values for enumerated LLVM attributes - remarks: >- -
important

LLVM officially documents NO stability for the names or - - values of the enumerations here. Unfortunately, the C API only ever deals in - - an integral value (C++ consumers have FULL access to the Attribute::AttrKind - - enumeration...). This leaves any language bindings with the ONLY option of - - redefining the enum OR dealing only in unnamed integral values. Using just - - an integer is a VERY bad experience as it leans toward the "magic" number - - scenario. Worse is that the meaning of said "magic" values could change. - - This is built from the headers of a specific version and is bound to that. - - So, while the names and values may change over time they WON'T change for - - a given release of LLVM. (And likely won't change across even a minor version - - change. But, sadly, there is no promise on that...) Thus projections/bindings - - and, more importantly consumers of such, are stuck with the reality that this - - is an area that is likely to cause breaking changes. - -

- -

- -

- example: [] - syntax: - content: public enum AttributeKind - content.vb: Public Enum AttributeKind - extensionMethods: - - Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName - - Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind - - Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind - - Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind - - Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind - - Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.None - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.None - id: None - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: None - nameWithType: AttributeKind.None - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.FirstEnumAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.FirstEnumAttr - id: FirstEnumAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: FirstEnumAttr - nameWithType: AttributeKind.FirstEnumAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.FirstEnumAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstEnumAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: FirstEnumAttr = 1 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.AllocAlign - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.AllocAlign - id: AllocAlign - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: AllocAlign - nameWithType: AttributeKind.AllocAlign - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.AllocAlign - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AllocAlign - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: AllocAlign = 1 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.AllocatedPointer - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.AllocatedPointer - id: AllocatedPointer - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: AllocatedPointer - nameWithType: AttributeKind.AllocatedPointer - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.AllocatedPointer - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AllocatedPointer - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: AllocatedPointer = 2 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.AlwaysInline - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.AlwaysInline - id: AlwaysInline - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: AlwaysInline - nameWithType: AttributeKind.AlwaysInline - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.AlwaysInline - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AlwaysInline - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: AlwaysInline = 3 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.BuiltIn - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.BuiltIn - id: BuiltIn - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: BuiltIn - nameWithType: AttributeKind.BuiltIn - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.BuiltIn - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BuiltIn - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: BuiltIn = 4 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Cold - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Cold - id: Cold - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Cold - nameWithType: AttributeKind.Cold - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Cold - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Cold - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Cold = 5 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Convergent - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Convergent - id: Convergent - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Convergent - nameWithType: AttributeKind.Convergent - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Convergent - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Convergent - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 39 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Convergent = 6 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.CoroDestroyOnlyWhenComplete - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.CoroDestroyOnlyWhenComplete - id: CoroDestroyOnlyWhenComplete - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: CoroDestroyOnlyWhenComplete - nameWithType: AttributeKind.CoroDestroyOnlyWhenComplete - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.CoroDestroyOnlyWhenComplete - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CoroDestroyOnlyWhenComplete - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: CoroDestroyOnlyWhenComplete = 7 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.CoroElideSafe - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.CoroElideSafe - id: CoroElideSafe - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: CoroElideSafe - nameWithType: AttributeKind.CoroElideSafe - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.CoroElideSafe - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CoroElideSafe - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: CoroElideSafe = 8 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.DeadOnUnwind - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.DeadOnUnwind - id: DeadOnUnwind - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: DeadOnUnwind - nameWithType: AttributeKind.DeadOnUnwind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.DeadOnUnwind - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DeadOnUnwind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: DeadOnUnwind = 9 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.DisableSanitizerInstrumentation - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.DisableSanitizerInstrumentation - id: DisableSanitizerInstrumentation - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: DisableSanitizerInstrumentation - nameWithType: AttributeKind.DisableSanitizerInstrumentation - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.DisableSanitizerInstrumentation - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DisableSanitizerInstrumentation - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: DisableSanitizerInstrumentation = 10 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.FnRetThunkExtern - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.FnRetThunkExtern - id: FnRetThunkExtern - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: FnRetThunkExtern - nameWithType: AttributeKind.FnRetThunkExtern - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.FnRetThunkExtern - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FnRetThunkExtern - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: FnRetThunkExtern = 11 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Hot - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Hot - id: Hot - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Hot - nameWithType: AttributeKind.Hot - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Hot - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Hot - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Hot = 12 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.HybridPatchable - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.HybridPatchable - id: HybridPatchable - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: HybridPatchable - nameWithType: AttributeKind.HybridPatchable - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.HybridPatchable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HybridPatchable - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: HybridPatchable = 13 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ImmArg - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ImmArg - id: ImmArg - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ImmArg - nameWithType: AttributeKind.ImmArg - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ImmArg - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImmArg - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 47 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ImmArg = 14 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.InReg - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.InReg - id: InReg - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: InReg - nameWithType: AttributeKind.InReg - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.InReg - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InReg - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: InReg = 15 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.InlineHint - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.InlineHint - id: InlineHint - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: InlineHint - nameWithType: AttributeKind.InlineHint - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.InlineHint - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InlineHint - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: InlineHint = 16 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.JumpTable - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.JumpTable - id: JumpTable - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: JumpTable - nameWithType: AttributeKind.JumpTable - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.JumpTable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: JumpTable - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 50 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: JumpTable = 17 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.MinSize - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.MinSize - id: MinSize - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: MinSize - nameWithType: AttributeKind.MinSize - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.MinSize - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MinSize - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 51 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: MinSize = 18 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.MustProgress - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.MustProgress - id: MustProgress - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: MustProgress - nameWithType: AttributeKind.MustProgress - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.MustProgress - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MustProgress - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: MustProgress = 19 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Naked - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Naked - id: Naked - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Naked - nameWithType: AttributeKind.Naked - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Naked - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Naked - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 53 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Naked = 20 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Nest - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Nest - id: Nest - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Nest - nameWithType: AttributeKind.Nest - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Nest - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Nest - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Nest = 21 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoAlias - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoAlias - id: NoAlias - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoAlias - nameWithType: AttributeKind.NoAlias - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoAlias - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoAlias - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoAlias = 22 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoBuiltIn - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoBuiltIn - id: NoBuiltIn - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoBuiltIn - nameWithType: AttributeKind.NoBuiltIn - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoBuiltIn - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoBuiltIn - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 56 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoBuiltIn = 23 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoCallback - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoCallback - id: NoCallback - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoCallback - nameWithType: AttributeKind.NoCallback - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoCallback - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoCallback - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoCallback = 24 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoCapture - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoCapture - id: NoCapture - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoCapture - nameWithType: AttributeKind.NoCapture - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoCapture - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoCapture - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoCapture = 25 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoCfCheck - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoCfCheck - id: NoCfCheck - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoCfCheck - nameWithType: AttributeKind.NoCfCheck - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoCfCheck - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoCfCheck - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 59 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoCfCheck = 26 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoDivergenceSource - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoDivergenceSource - id: NoDivergenceSource - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoDivergenceSource - nameWithType: AttributeKind.NoDivergenceSource - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoDivergenceSource - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoDivergenceSource - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoDivergenceSource = 27 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoDuplicate - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoDuplicate - id: NoDuplicate - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoDuplicate - nameWithType: AttributeKind.NoDuplicate - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoDuplicate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoDuplicate - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoDuplicate = 28 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoExt - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoExt - id: NoExt - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoExt - nameWithType: AttributeKind.NoExt - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoExt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoExt - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoExt = 29 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoFree - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoFree - id: NoFree - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoFree - nameWithType: AttributeKind.NoFree - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoFree - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoFree - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 63 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoFree = 30 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoImplicitFloat - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoImplicitFloat - id: NoImplicitFloat - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoImplicitFloat - nameWithType: AttributeKind.NoImplicitFloat - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoImplicitFloat - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoImplicitFloat - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoImplicitFloat = 31 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoInline - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoInline - id: NoInline - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoInline - nameWithType: AttributeKind.NoInline - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoInline - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoInline - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 65 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoInline = 32 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoMerge - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoMerge - id: NoMerge - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoMerge - nameWithType: AttributeKind.NoMerge - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoMerge - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoMerge - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoMerge = 33 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoProfile - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoProfile - id: NoProfile - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoProfile - nameWithType: AttributeKind.NoProfile - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoProfile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoProfile - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoProfile = 34 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoRecurse - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoRecurse - id: NoRecurse - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoRecurse - nameWithType: AttributeKind.NoRecurse - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoRecurse - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoRecurse - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 68 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoRecurse = 35 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoRedZone - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoRedZone - id: NoRedZone - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoRedZone - nameWithType: AttributeKind.NoRedZone - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoRedZone - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoRedZone - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoRedZone = 36 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoReturn - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoReturn - id: NoReturn - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoReturn - nameWithType: AttributeKind.NoReturn - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoReturn - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoReturn - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoReturn = 37 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeBounds - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeBounds - id: NoSanitizeBounds - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoSanitizeBounds - nameWithType: AttributeKind.NoSanitizeBounds - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeBounds - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoSanitizeBounds - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 71 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoSanitizeBounds = 38 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeCoverage - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeCoverage - id: NoSanitizeCoverage - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoSanitizeCoverage - nameWithType: AttributeKind.NoSanitizeCoverage - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoSanitizeCoverage - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoSanitizeCoverage - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 72 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoSanitizeCoverage = 39 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoSync - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoSync - id: NoSync - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoSync - nameWithType: AttributeKind.NoSync - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoSync - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoSync - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoSync = 40 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoUndef - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoUndef - id: NoUndef - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoUndef - nameWithType: AttributeKind.NoUndef - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoUndef - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoUndef - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 74 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoUndef = 41 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoUnwind - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoUnwind - id: NoUnwind - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoUnwind - nameWithType: AttributeKind.NoUnwind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoUnwind - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoUnwind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 75 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoUnwind = 42 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NonLazyBind - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NonLazyBind - id: NonLazyBind - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NonLazyBind - nameWithType: AttributeKind.NonLazyBind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NonLazyBind - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NonLazyBind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NonLazyBind = 43 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NonNull - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NonNull - id: NonNull - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NonNull - nameWithType: AttributeKind.NonNull - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NonNull - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NonNull - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 77 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NonNull = 44 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NullPointerIsValid - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NullPointerIsValid - id: NullPointerIsValid - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NullPointerIsValid - nameWithType: AttributeKind.NullPointerIsValid - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NullPointerIsValid - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NullPointerIsValid - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 78 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NullPointerIsValid = 45 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.OptForFuzzing - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.OptForFuzzing - id: OptForFuzzing - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: OptForFuzzing - nameWithType: AttributeKind.OptForFuzzing - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.OptForFuzzing - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OptForFuzzing - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 79 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: OptForFuzzing = 46 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForDebugging - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForDebugging - id: OptimizeForDebugging - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: OptimizeForDebugging - nameWithType: AttributeKind.OptimizeForDebugging - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForDebugging - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OptimizeForDebugging - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 80 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: OptimizeForDebugging = 47 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForSize - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForSize - id: OptimizeForSize - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: OptimizeForSize - nameWithType: AttributeKind.OptimizeForSize - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeForSize - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OptimizeForSize - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 81 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: OptimizeForSize = 48 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeNone - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeNone - id: OptimizeNone - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: OptimizeNone - nameWithType: AttributeKind.OptimizeNone - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.OptimizeNone - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OptimizeNone - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: OptimizeNone = 49 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.PresplitCoroutine - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.PresplitCoroutine - id: PresplitCoroutine - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: PresplitCoroutine - nameWithType: AttributeKind.PresplitCoroutine - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.PresplitCoroutine - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PresplitCoroutine - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 83 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: PresplitCoroutine = 50 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ReadNone - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ReadNone - id: ReadNone - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ReadNone - nameWithType: AttributeKind.ReadNone - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ReadNone - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReadNone - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 84 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ReadNone = 51 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ReadOnly - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ReadOnly - id: ReadOnly - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ReadOnly - nameWithType: AttributeKind.ReadOnly - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ReadOnly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReadOnly - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ReadOnly = 52 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Returned - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Returned - id: Returned - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Returned - nameWithType: AttributeKind.Returned - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Returned - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Returned - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 86 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Returned = 53 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ReturnsTwice - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ReturnsTwice - id: ReturnsTwice - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ReturnsTwice - nameWithType: AttributeKind.ReturnsTwice - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ReturnsTwice - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReturnsTwice - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 87 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ReturnsTwice = 54 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SExt - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SExt - id: SExt - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SExt - nameWithType: AttributeKind.SExt - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SExt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SExt - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SExt = 55 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SafeStack - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SafeStack - id: SafeStack - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SafeStack - nameWithType: AttributeKind.SafeStack - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SafeStack - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SafeStack - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 89 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SafeStack = 56 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeAddress - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeAddress - id: SanitizeAddress - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeAddress - nameWithType: AttributeKind.SanitizeAddress - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeAddress - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeAddress - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 90 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeAddress = 57 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeHWAddress - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeHWAddress - id: SanitizeHWAddress - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeHWAddress - nameWithType: AttributeKind.SanitizeHWAddress - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeHWAddress - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeHWAddress - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeHWAddress = 58 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemTag - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemTag - id: SanitizeMemTag - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeMemTag - nameWithType: AttributeKind.SanitizeMemTag - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemTag - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeMemTag - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 92 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeMemTag = 59 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemory - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemory - id: SanitizeMemory - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeMemory - nameWithType: AttributeKind.SanitizeMemory - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeMemory - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeMemory - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 93 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeMemory = 60 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeNumericalStability - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeNumericalStability - id: SanitizeNumericalStability - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeNumericalStability - nameWithType: AttributeKind.SanitizeNumericalStability - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeNumericalStability - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeNumericalStability - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeNumericalStability = 61 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtime - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtime - id: SanitizeRealtime - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeRealtime - nameWithType: AttributeKind.SanitizeRealtime - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtime - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeRealtime - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 95 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeRealtime = 62 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtimeBlocking - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtimeBlocking - id: SanitizeRealtimeBlocking - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeRealtimeBlocking - nameWithType: AttributeKind.SanitizeRealtimeBlocking - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeRealtimeBlocking - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeRealtimeBlocking - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 96 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeRealtimeBlocking = 63 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeThread - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeThread - id: SanitizeThread - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeThread - nameWithType: AttributeKind.SanitizeThread - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeThread - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeThread - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 97 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeThread = 64 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeType - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeType - id: SanitizeType - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SanitizeType - nameWithType: AttributeKind.SanitizeType - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SanitizeType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SanitizeType - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 98 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SanitizeType = 65 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ShadowCallStack - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ShadowCallStack - id: ShadowCallStack - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ShadowCallStack - nameWithType: AttributeKind.ShadowCallStack - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ShadowCallStack - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ShadowCallStack - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 99 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ShadowCallStack = 66 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SkipProfile - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SkipProfile - id: SkipProfile - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SkipProfile - nameWithType: AttributeKind.SkipProfile - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SkipProfile - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SkipProfile - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 100 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SkipProfile = 67 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Speculatable - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Speculatable - id: Speculatable - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Speculatable - nameWithType: AttributeKind.Speculatable - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Speculatable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Speculatable - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 101 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Speculatable = 68 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SpeculativeLoadHardening - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SpeculativeLoadHardening - id: SpeculativeLoadHardening - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SpeculativeLoadHardening - nameWithType: AttributeKind.SpeculativeLoadHardening - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SpeculativeLoadHardening - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SpeculativeLoadHardening - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 102 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SpeculativeLoadHardening = 69 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.StackProtect - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.StackProtect - id: StackProtect - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: StackProtect - nameWithType: AttributeKind.StackProtect - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.StackProtect - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StackProtect - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 103 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: StackProtect = 70 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectReq - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectReq - id: StackProtectReq - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: StackProtectReq - nameWithType: AttributeKind.StackProtectReq - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectReq - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StackProtectReq - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: StackProtectReq = 71 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectStrong - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectStrong - id: StackProtectStrong - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: StackProtectStrong - nameWithType: AttributeKind.StackProtectStrong - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.StackProtectStrong - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StackProtectStrong - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 105 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: StackProtectStrong = 72 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.StrictFP - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.StrictFP - id: StrictFP - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: StrictFP - nameWithType: AttributeKind.StrictFP - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.StrictFP - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StrictFP - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 106 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: StrictFP = 73 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SwiftAsync - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SwiftAsync - id: SwiftAsync - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SwiftAsync - nameWithType: AttributeKind.SwiftAsync - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SwiftAsync - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SwiftAsync - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 107 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SwiftAsync = 74 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SwiftError - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SwiftError - id: SwiftError - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SwiftError - nameWithType: AttributeKind.SwiftError - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SwiftError - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SwiftError - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 108 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SwiftError = 75 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.SwiftSelf - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.SwiftSelf - id: SwiftSelf - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: SwiftSelf - nameWithType: AttributeKind.SwiftSelf - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.SwiftSelf - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SwiftSelf - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 109 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: SwiftSelf = 76 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.WillReturn - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.WillReturn - id: WillReturn - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: WillReturn - nameWithType: AttributeKind.WillReturn - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.WillReturn - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WillReturn - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 110 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: WillReturn = 77 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Writable - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Writable - id: Writable - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Writable - nameWithType: AttributeKind.Writable - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Writable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Writable - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 111 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Writable = 78 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.WriteOnly - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.WriteOnly - id: WriteOnly - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: WriteOnly - nameWithType: AttributeKind.WriteOnly - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.WriteOnly - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WriteOnly - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 112 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: WriteOnly = 79 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ZExt - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ZExt - id: ZExt - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ZExt - nameWithType: AttributeKind.ZExt - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ZExt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ZExt - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 113 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ZExt = 80 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.LastEnumAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.LastEnumAttr - id: LastEnumAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: LastEnumAttr - nameWithType: AttributeKind.LastEnumAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.LastEnumAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LastEnumAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 114 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: LastEnumAttr = 80 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.FirstTypeAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.FirstTypeAttr - id: FirstTypeAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: FirstTypeAttr - nameWithType: AttributeKind.FirstTypeAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.FirstTypeAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstTypeAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 115 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: FirstTypeAttr = 81 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ByRef - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ByRef - id: ByRef - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ByRef - nameWithType: AttributeKind.ByRef - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ByRef - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ByRef - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 116 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ByRef = 81 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ByVal - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ByVal - id: ByVal - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ByVal - nameWithType: AttributeKind.ByVal - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ByVal - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ByVal - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 117 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ByVal = 82 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.ElementType - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.ElementType - id: ElementType - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: ElementType - nameWithType: AttributeKind.ElementType - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.ElementType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ElementType - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 118 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: ElementType = 83 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.InAlloca - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.InAlloca - id: InAlloca - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: InAlloca - nameWithType: AttributeKind.InAlloca - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.InAlloca - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InAlloca - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 119 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: InAlloca = 84 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Preallocated - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Preallocated - id: Preallocated - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Preallocated - nameWithType: AttributeKind.Preallocated - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Preallocated - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Preallocated - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 120 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Preallocated = 85 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.StructRet - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.StructRet - id: StructRet - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: StructRet - nameWithType: AttributeKind.StructRet - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.StructRet - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StructRet - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 121 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: StructRet = 86 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.LastTypeAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.LastTypeAttr - id: LastTypeAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: LastTypeAttr - nameWithType: AttributeKind.LastTypeAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.LastTypeAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LastTypeAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 122 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: LastTypeAttr = 86 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.FirstIntAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.FirstIntAttr - id: FirstIntAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: FirstIntAttr - nameWithType: AttributeKind.FirstIntAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.FirstIntAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstIntAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 123 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: FirstIntAttr = 87 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Alignment - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Alignment - id: Alignment - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Alignment - nameWithType: AttributeKind.Alignment - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Alignment - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Alignment - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 124 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Alignment = 87 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.AllocKind - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.AllocKind - id: AllocKind - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: AllocKind - nameWithType: AttributeKind.AllocKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.AllocKind - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AllocKind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 125 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: AllocKind = 88 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.AllocSize - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.AllocSize - id: AllocSize - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: AllocSize - nameWithType: AttributeKind.AllocSize - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.AllocSize - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AllocSize - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 126 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: AllocSize = 89 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Captures - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Captures - id: Captures - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Captures - nameWithType: AttributeKind.Captures - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Captures - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Captures - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 127 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Captures = 90 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable - id: Dereferenceable - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Dereferenceable - nameWithType: AttributeKind.Dereferenceable - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Dereferenceable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Dereferenceable - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 128 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Dereferenceable = 91 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull - id: DereferenceableOrNull - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: DereferenceableOrNull - nameWithType: AttributeKind.DereferenceableOrNull - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.DereferenceableOrNull - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DereferenceableOrNull - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 129 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: DereferenceableOrNull = 92 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Memory - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Memory - id: Memory - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Memory - nameWithType: AttributeKind.Memory - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Memory - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Memory - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 130 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Memory = 93 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.NoFPClass - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.NoFPClass - id: NoFPClass - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: NoFPClass - nameWithType: AttributeKind.NoFPClass - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.NoFPClass - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NoFPClass - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 131 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: NoFPClass = 94 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment - id: StackAlignment - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: StackAlignment - nameWithType: AttributeKind.StackAlignment - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.StackAlignment - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StackAlignment - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 132 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: StackAlignment = 95 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.UWTable - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.UWTable - id: UWTable - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: UWTable - nameWithType: AttributeKind.UWTable - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.UWTable - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UWTable - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 133 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: UWTable = 96 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.VScaleRange - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.VScaleRange - id: VScaleRange - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: VScaleRange - nameWithType: AttributeKind.VScaleRange - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.VScaleRange - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VScaleRange - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 134 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: VScaleRange = 97 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.LastIntAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.LastIntAttr - id: LastIntAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: LastIntAttr - nameWithType: AttributeKind.LastIntAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.LastIntAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LastIntAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 135 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: LastIntAttr = 97 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeAttr - id: FirstConstantRangeAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: FirstConstantRangeAttr - nameWithType: AttributeKind.FirstConstantRangeAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstConstantRangeAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 136 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: FirstConstantRangeAttr = 98 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Range - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Range - id: Range - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Range - nameWithType: AttributeKind.Range - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Range - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Range - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 137 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Range = 98 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeAttr - id: LastConstantRangeAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: LastConstantRangeAttr - nameWithType: AttributeKind.LastConstantRangeAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LastConstantRangeAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 138 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: LastConstantRangeAttr = 98 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeListAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeListAttr - id: FirstConstantRangeListAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: FirstConstantRangeListAttr - nameWithType: AttributeKind.FirstConstantRangeListAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.FirstConstantRangeListAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstConstantRangeListAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 139 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: FirstConstantRangeListAttr = 99 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Initializes - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.Initializes - id: Initializes - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: Initializes - nameWithType: AttributeKind.Initializes - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.Initializes - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Initializes - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 140 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: Initializes = 99 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeListAttr - commentId: F:Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeListAttr - id: LastConstantRangeListAttr - parent: Ubiquity.NET.Llvm.Values.AttributeKind - langs: - - csharp - - vb - name: LastConstantRangeListAttr - nameWithType: AttributeKind.LastConstantRangeListAttr - fullName: Ubiquity.NET.Llvm.Values.AttributeKind.LastConstantRangeListAttr - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LastConstantRangeListAttr - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKind.cs - startLine: 141 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - syntax: - content: LastConstantRangeListAttr = 99 - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - definition: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_GetAttributeName_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeName(AttributeKind) - nameWithType: AttributeKindExtensions.GetAttributeName(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeName - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_GetAttributeName_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeName - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_GetAttributeName_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - definition: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsConstantRangeKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsConstantRangeKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsConstantRangeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsConstantRangeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - definition: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeListKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsConstantRangeListKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsConstantRangeListKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsConstantRangeListKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeListKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsConstantRangeListKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeListKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - definition: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsEnumKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsEnumKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsEnumKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsEnumKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsEnumKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsEnumKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsEnumKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - definition: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsIntKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsIntKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsIntKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsIntKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsIntKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsIntKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsIntKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKind.Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - definition: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsTypeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsTypeKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsTypeKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsTypeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsTypeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsTypeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsTypeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_GetAttributeName_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeName(AttributeKind) - nameWithType: AttributeKindExtensions.GetAttributeName(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeName - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_GetAttributeName_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeName - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_GetAttributeName_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKindExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html - name: AttributeKindExtensions - nameWithType: AttributeKindExtensions - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsConstantRangeKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsConstantRangeKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsConstantRangeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsConstantRangeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeListKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsConstantRangeListKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsConstantRangeListKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsConstantRangeListKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeListKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsConstantRangeListKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeListKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsEnumKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsEnumKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsEnumKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsEnumKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsEnumKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsEnumKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsEnumKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsIntKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsIntKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsIntKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsIntKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsIntKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsIntKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsIntKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsTypeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsTypeKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsTypeKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsTypeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsTypeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - name: IsTypeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsTypeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml deleted file mode 100644 index a7471c1c96..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeKindExtensions.yml +++ /dev/null @@ -1,603 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKindExtensions - id: AttributeKindExtensions - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - langs: - - csharp - - vb - name: AttributeKindExtensions - nameWithType: AttributeKindExtensions - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AttributeKindExtensions - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Utility class to provide extension methods for validating usage of attribute kinds - example: [] - syntax: - content: public static class AttributeKindExtensions - content.vb: Public Module AttributeKindExtensions - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - id: GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - langs: - - csharp - - vb - name: GetAttributeName(AttributeKind) - nameWithType: AttributeKindExtensions.GetAttributeName(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeName - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the symbolic name of the attribute - example: [] - syntax: - content: public static string GetAttributeName(this AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to get the name of - return: - type: System.String - description: Name of the attribute - content.vb: Public Shared Function GetAttributeName(kind As AttributeKind) As String - overload: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName* -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - id: IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - langs: - - csharp - - vb - name: IsEnumKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsEnumKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsEnumKind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the attribute requires no parameter value - example: [] - syntax: - content: public static bool IsEnumKind(this AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to check - return: - type: System.Boolean - description: true if the attribute requires no parameter value - content.vb: Public Shared Function IsEnumKind(kind As AttributeKind) As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind* -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - id: IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - langs: - - csharp - - vb - name: IsIntKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsIntKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsIntKind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the attribute requires an integer parameter value - example: [] - syntax: - content: public static bool IsIntKind(this AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to check - return: - type: System.Boolean - description: true if the attribute requires an integer value - content.vb: Public Shared Function IsIntKind(kind As AttributeKind) As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind* -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - id: IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - langs: - - csharp - - vb - name: IsTypeKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsTypeKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsTypeKind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the attribute requires a type parameter value - example: [] - syntax: - content: public static bool IsTypeKind(this AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to check - return: - type: System.Boolean - description: true if the attribute requires a type value - content.vb: Public Shared Function IsTypeKind(kind As AttributeKind) As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind* -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - id: IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - langs: - - csharp - - vb - name: IsConstantRangeKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsConstantRangeKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsConstantRangeKind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 65 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the attribute requires a constant range parameter value - example: [] - syntax: - content: public static bool IsConstantRangeKind(this AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to check - return: - type: System.Boolean - description: true if the attribute requires an constant range value - content.vb: Public Shared Function IsConstantRangeKind(kind As AttributeKind) As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind* -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - id: IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - langs: - - csharp - - vb - name: IsConstantRangeListKind(AttributeKind) - nameWithType: AttributeKindExtensions.IsConstantRangeListKind(AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind(Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsConstantRangeListKind - path: ../src/Ubiquity.NET.Llvm/Values/AttributeKindExtensions.cs - startLine: 73 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the attribute requires a constant range list parameter value - example: [] - syntax: - content: public static bool IsConstantRangeListKind(this AttributeKind kind) - parameters: - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to check - return: - type: System.Boolean - description: true if the attribute requires an constant range list value - content.vb: Public Shared Function IsConstantRangeListKind(kind As AttributeKind) As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_GetAttributeName_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeName - nameWithType: AttributeKindExtensions.GetAttributeName - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.GetAttributeName -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsEnumKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsEnumKind - nameWithType: AttributeKindExtensions.IsEnumKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsEnumKind -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsIntKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsIntKind - nameWithType: AttributeKindExtensions.IsIntKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsIntKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsTypeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsTypeKind - nameWithType: AttributeKindExtensions.IsTypeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsTypeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsConstantRangeKind - nameWithType: AttributeKindExtensions.IsConstantRangeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html#Ubiquity_NET_Llvm_Values_AttributeKindExtensions_IsConstantRangeListKind_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: IsConstantRangeListKind - nameWithType: AttributeKindExtensions.IsConstantRangeListKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.IsConstantRangeListKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeValue.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeValue.yml deleted file mode 100644 index a0109aa618..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.AttributeValue.yml +++ /dev/null @@ -1,871 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - id: AttributeValue - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.AttributeValue.Id - - Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue - - Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum - - Ubiquity.NET.Llvm.Values.AttributeValue.IsString - - Ubiquity.NET.Llvm.Values.AttributeValue.IsType - - Ubiquity.NET.Llvm.Values.AttributeValue.Name - - Ubiquity.NET.Llvm.Values.AttributeValue.StringValue - - Ubiquity.NET.Llvm.Values.AttributeValue.ToString - - Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue - - Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.Value) - langs: - - csharp - - vb - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue - type: Struct - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AttributeValue - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Single attribute for functions, function returns and function parameters - remarks: >- - This is the equivalent to the underlying llvm::AttributeImpl class. The name was changed to - - AttributeValue in .NET to prevent confusion with the standard class - - that is used throughout .NET libraries. - example: [] - syntax: - content: 'public readonly record struct AttributeValue : IEquatable' - content.vb: Public Structure AttributeValue Implements IEquatable(Of AttributeValue) - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.AttributeValue} - inheritedMembers: - - System.ValueType.Equals(System.Object) - - System.ValueType.GetHashCode - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.Id - commentId: P:Ubiquity.NET.Llvm.Values.AttributeValue.Id - id: Id - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: Id - nameWithType: AttributeValue.Id - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.Id - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Id - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the kind of the attribute - remarks: >- - The ID is unique for the current runtime but is NOT guaranteed stable across runtime or LLVM version (even minor patches really). - - Applications **MUST NOT*** assume these values have any consistency beyond the current run and should NOT persist them. Additionally, - - string attributes have NO id. - example: [] - syntax: - content: public AttributeKind Id { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: The unique ID for the named attribute - content.vb: Public ReadOnly Property Id As AttributeKind - overload: Ubiquity.NET.Llvm.Values.AttributeValue.Id* -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.Name - commentId: P:Ubiquity.NET.Llvm.Values.AttributeValue.Name - id: Name - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: Name - nameWithType: AttributeValue.Name - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the Name of the attribute - example: [] - syntax: - content: public string Name { get; } - parameters: [] - return: - type: System.String - content.vb: Public ReadOnly Property Name As String - overload: Ubiquity.NET.Llvm.Values.AttributeValue.Name* -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.StringValue - commentId: P:Ubiquity.NET.Llvm.Values.AttributeValue.StringValue - id: StringValue - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: StringValue - nameWithType: AttributeValue.StringValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.StringValue - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: StringValue - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the value for named attributes with values - example: [] - syntax: - content: public string? StringValue { get; } - parameters: [] - return: - type: System.String - description: The value as a string or if the attribute has no value - content.vb: Public ReadOnly Property StringValue As String - overload: Ubiquity.NET.Llvm.Values.AttributeValue.StringValue* -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue - commentId: P:Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue - id: IntegerValue - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: IntegerValue - nameWithType: AttributeValue.IntegerValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntegerValue - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the Integer value of the attribute or 0 if the attribute doesn't have a value - example: [] - syntax: - content: public ulong IntegerValue { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property IntegerValue As ULong - overload: Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue* -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue - commentId: P:Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue - id: TypeValue - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: TypeValue - nameWithType: AttributeValue.TypeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TypeValue - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the Type value of this attribute, if any - example: [] - syntax: - content: public ITypeRef? TypeValue { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property TypeValue As ITypeRef - overload: Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue* -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.IsString - commentId: P:Ubiquity.NET.Llvm.Values.AttributeValue.IsString - id: IsString - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: IsString - nameWithType: AttributeValue.IsString - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.IsString - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsString - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether this attribute is a target specific string value - example: [] - syntax: - content: public bool IsString { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsString As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeValue.IsString* -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum - commentId: P:Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum - id: IsEnum - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: IsEnum - nameWithType: AttributeValue.IsEnum - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsEnum - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether this attribute is a simple enumeration value - example: [] - syntax: - content: public bool IsEnum { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsEnum As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum* -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.IsType - commentId: P:Ubiquity.NET.Llvm.Values.AttributeValue.IsType - id: IsType - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: IsType - nameWithType: AttributeValue.IsType - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.IsType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsType - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether this attribute has a type value - example: [] - syntax: - content: public bool IsType { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsType As Boolean - overload: Ubiquity.NET.Llvm.Values.AttributeValue.IsType* -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.Value) - id: VerifyValidOn(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: VerifyValidOn(FunctionAttributeIndex, Value) - nameWithType: AttributeValue.VerifyValidOn(FunctionAttributeIndex, Value) - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VerifyValidOn - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Verifies the attribute is valid for a on a given - example: [] - syntax: - content: public void VerifyValidOn(FunctionAttributeIndex index, Value value) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to verify - - id: value - type: Ubiquity.NET.Llvm.Values.Value - description: Value to check this attribute on - content.vb: Public Sub VerifyValidOn(index As FunctionAttributeIndex, value As Value) - overload: Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn* - exceptions: - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: The attribute is not valid on value for the index -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.ToString - commentId: M:Ubiquity.NET.Llvm.Values.AttributeValue.ToString - id: ToString - parent: Ubiquity.NET.Llvm.Values.AttributeValue - langs: - - csharp - - vb - name: ToString() - nameWithType: AttributeValue.ToString() - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/Values/AttributeValue.cs - startLine: 80 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a string representation of the attribute - example: [] - syntax: - content: public override string? ToString() - return: - type: System.String - description: Attribute as a string - content.vb: Public Overrides Function ToString() As String - overridden: System.ValueType.ToString - overload: Ubiquity.NET.Llvm.Values.AttributeValue.ToString* -references: -- uid: System.Attribute - commentId: T:System.Attribute - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.attribute - name: Attribute - nameWithType: Attribute - fullName: System.Attribute -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of AttributeValue) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: IEquatable(Of AttributeValue) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.ValueType.Equals(System.Object) - commentId: M:System.ValueType.Equals(System.Object) - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - name: Equals(object) - nameWithType: ValueType.Equals(object) - fullName: System.ValueType.Equals(object) - nameWithType.vb: ValueType.Equals(Object) - fullName.vb: System.ValueType.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.ValueType.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.ValueType.GetHashCode - commentId: M:System.ValueType.GetHashCode - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - name: GetHashCode() - nameWithType: ValueType.GetHashCode() - fullName: System.ValueType.GetHashCode() - spec.csharp: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode - - name: ( - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.ValueType - commentId: T:System.ValueType - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype - name: ValueType - nameWithType: ValueType - fullName: System.ValueType -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.Id* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.Id - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_Id - name: Id - nameWithType: AttributeValue.Id - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.Id -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.Name* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.Name - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_Name - name: Name - nameWithType: AttributeValue.Name - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.StringValue* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.StringValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_StringValue - name: StringValue - nameWithType: AttributeValue.StringValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.StringValue -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_IntegerValue - name: IntegerValue - nameWithType: AttributeValue.IntegerValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.IntegerValue -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_TypeValue - name: TypeValue - nameWithType: AttributeValue.TypeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.TypeValue -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.IsString* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.IsString - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_IsString - name: IsString - nameWithType: AttributeValue.IsString - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.IsString -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_IsEnum - name: IsEnum - nameWithType: AttributeValue.IsEnum - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.IsEnum -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.IsType* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.IsType - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_IsType - name: IsType - nameWithType: AttributeValue.IsType - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.IsType -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_VerifyValidOn_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_Value_ - name: VerifyValidOn - nameWithType: AttributeValue.VerifyValidOn - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.VerifyValidOn -- uid: System.ValueType.ToString - commentId: M:System.ValueType.ToString - parent: System.ValueType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - name: ToString() - nameWithType: ValueType.ToString() - fullName: System.ValueType.ToString() - spec.csharp: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.ValueType.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeValue.ToString* - commentId: Overload:Ubiquity.NET.Llvm.Values.AttributeValue.ToString - href: Ubiquity.NET.Llvm.Values.AttributeValue.html#Ubiquity_NET_Llvm_Values_AttributeValue_ToString - name: ToString - nameWithType: AttributeValue.ToString - fullName: Ubiquity.NET.Llvm.Values.AttributeValue.ToString diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.BasicBlock.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.BasicBlock.yml deleted file mode 100644 index 99e2d0f94d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.BasicBlock.yml +++ /dev/null @@ -1,1014 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - id: BasicBlock - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction - - Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction - - Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction(Ubiquity.NET.Llvm.Instructions.Instruction) - - Ubiquity.NET.Llvm.Values.BasicBlock.Instructions - - Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction - - Ubiquity.NET.Llvm.Values.BasicBlock.Terminator - langs: - - csharp - - vb - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BasicBlock - path: ../src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Provides access to an LLVM Basic block - remarks: >- - A basic block is a sequence of instructions with a single entry - - and a single exit. The exit point must be a - - instruction or the block is not (yet) well-formed. - example: [] - syntax: - content: 'public class BasicBlock : Value, IEquatable' - content.vb: Public Class BasicBlock Inherits Value Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.BasicBlock.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction - commentId: P:Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction - id: ContainingFunction - parent: Ubiquity.NET.Llvm.Values.BasicBlock - langs: - - csharp - - vb - name: ContainingFunction - nameWithType: BasicBlock.ContainingFunction - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ContainingFunction - path: ../src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the function containing the block - example: [] - syntax: - content: public Function? ContainingFunction { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Function - content.vb: Public ReadOnly Property ContainingFunction As [Function] - overload: Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction* -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction - commentId: P:Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction - id: FirstInstruction - parent: Ubiquity.NET.Llvm.Values.BasicBlock - langs: - - csharp - - vb - name: FirstInstruction - nameWithType: BasicBlock.FirstInstruction - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstInstruction - path: ../src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the first instruction in the block - example: [] - syntax: - content: public Instruction? FirstInstruction { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.Instruction - content.vb: Public ReadOnly Property FirstInstruction As Instruction - overload: Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction* -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction - commentId: P:Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction - id: LastInstruction - parent: Ubiquity.NET.Llvm.Values.BasicBlock - langs: - - csharp - - vb - name: LastInstruction - nameWithType: BasicBlock.LastInstruction - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LastInstruction - path: ../src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the last instruction in the block - example: [] - syntax: - content: public Instruction? LastInstruction { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.Instruction - content.vb: Public ReadOnly Property LastInstruction As Instruction - overload: Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction* -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.Terminator - commentId: P:Ubiquity.NET.Llvm.Values.BasicBlock.Terminator - id: Terminator - parent: Ubiquity.NET.Llvm.Values.BasicBlock - langs: - - csharp - - vb - name: Terminator - nameWithType: BasicBlock.Terminator - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.Terminator - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Terminator - path: ../src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - startLine: 60 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the terminator instruction for the block - remarks: >- - May be null if the block is not yet well-formed - - as is commonly the case while generating code for a new block - example: [] - syntax: - content: public Instruction? Terminator { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.Instruction - content.vb: Public ReadOnly Property Terminator As Instruction - overload: Ubiquity.NET.Llvm.Values.BasicBlock.Terminator* -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.Instructions - commentId: P:Ubiquity.NET.Llvm.Values.BasicBlock.Instructions - id: Instructions - parent: Ubiquity.NET.Llvm.Values.BasicBlock - langs: - - csharp - - vb - name: Instructions - nameWithType: BasicBlock.Instructions - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.Instructions - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Instructions - path: ../src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets all instructions in the block - example: [] - syntax: - content: public IEnumerable Instructions { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Instructions.Instruction} - content.vb: Public ReadOnly Property Instructions As IEnumerable(Of Instruction) - overload: Ubiquity.NET.Llvm.Values.BasicBlock.Instructions* -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction(Ubiquity.NET.Llvm.Instructions.Instruction) - commentId: M:Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction(Ubiquity.NET.Llvm.Instructions.Instruction) - id: GetNextInstruction(Ubiquity.NET.Llvm.Instructions.Instruction) - parent: Ubiquity.NET.Llvm.Values.BasicBlock - langs: - - csharp - - vb - name: GetNextInstruction(Instruction) - nameWithType: BasicBlock.GetNextInstruction(Instruction) - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction(Ubiquity.NET.Llvm.Instructions.Instruction) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetNextInstruction - path: ../src/Ubiquity.NET.Llvm/Values/BasicBlock.cs - startLine: 87 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the instruction that follows a given instruction in a block - example: [] - syntax: - content: public Instruction? GetNextInstruction(Instruction instruction) - parameters: - - id: instruction - type: Ubiquity.NET.Llvm.Instructions.Instruction - description: instruction in the block to get the next instruction from - return: - type: Ubiquity.NET.Llvm.Instructions.Instruction - description: Next instruction or null if none - content.vb: Public Function GetNextInstruction(instruction As Instruction) As Instruction - overload: Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction* - exceptions: - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: Thrown when is from a different block -references: -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.Terminator - commentId: P:Ubiquity.NET.Llvm.Values.BasicBlock.Terminator - href: Ubiquity.NET.Llvm.Values.BasicBlock.html#Ubiquity_NET_Llvm_Values_BasicBlock_Terminator - name: Terminator - nameWithType: BasicBlock.Terminator - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.Terminator -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(BasicBlock, string) - nameWithType: ValueExtensions.RegisterName(BasicBlock, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.BasicBlock, string) - nameWithType.vb: ValueExtensions.RegisterName(Of BasicBlock)(BasicBlock, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.BasicBlock)(Ubiquity.NET.Llvm.Values.BasicBlock, String) - name.vb: RegisterName(Of BasicBlock)(BasicBlock, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.BasicBlock,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.BasicBlock,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction* - commentId: Overload:Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction - href: Ubiquity.NET.Llvm.Values.BasicBlock.html#Ubiquity_NET_Llvm_Values_BasicBlock_ContainingFunction - name: ContainingFunction - nameWithType: BasicBlock.ContainingFunction - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.ContainingFunction -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction* - commentId: Overload:Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction - href: Ubiquity.NET.Llvm.Values.BasicBlock.html#Ubiquity_NET_Llvm_Values_BasicBlock_FirstInstruction - name: FirstInstruction - nameWithType: BasicBlock.FirstInstruction - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.FirstInstruction -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction* - commentId: Overload:Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction - href: Ubiquity.NET.Llvm.Values.BasicBlock.html#Ubiquity_NET_Llvm_Values_BasicBlock_LastInstruction - name: LastInstruction - nameWithType: BasicBlock.LastInstruction - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.LastInstruction -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.Terminator* - commentId: Overload:Ubiquity.NET.Llvm.Values.BasicBlock.Terminator - href: Ubiquity.NET.Llvm.Values.BasicBlock.html#Ubiquity_NET_Llvm_Values_BasicBlock_Terminator - name: Terminator - nameWithType: BasicBlock.Terminator - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.Terminator -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.Instructions* - commentId: Overload:Ubiquity.NET.Llvm.Values.BasicBlock.Instructions - href: Ubiquity.NET.Llvm.Values.BasicBlock.html#Ubiquity_NET_Llvm_Values_BasicBlock_Instructions - name: Instructions - nameWithType: BasicBlock.Instructions - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.Instructions -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Instructions.Instruction} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Instructions.Instruction} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Instruction) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Instructions.Instruction) - name.vb: IEnumerable(Of Instruction) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction* - commentId: Overload:Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction - href: Ubiquity.NET.Llvm.Values.BasicBlock.html#Ubiquity_NET_Llvm_Values_BasicBlock_GetNextInstruction_Ubiquity_NET_Llvm_Instructions_Instruction_ - name: GetNextInstruction - nameWithType: BasicBlock.GetNextInstruction - fullName: Ubiquity.NET.Llvm.Values.BasicBlock.GetNextInstruction diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.BlockAddress.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.BlockAddress.yml deleted file mode 100644 index dcd4e02808..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.BlockAddress.yml +++ /dev/null @@ -1,871 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.BlockAddress - commentId: T:Ubiquity.NET.Llvm.Values.BlockAddress - id: BlockAddress - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock - - Ubiquity.NET.Llvm.Values.BlockAddress.Function - langs: - - csharp - - vb - name: BlockAddress - nameWithType: BlockAddress - fullName: Ubiquity.NET.Llvm.Values.BlockAddress - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BlockAddress.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BlockAddress - path: ../src/Ubiquity.NET.Llvm/Values/BlockAddress.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Constant address of a block - example: [] - syntax: - content: 'public class BlockAddress : Constant, IEquatable' - content.vb: Public Class BlockAddress Inherits Constant Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.BlockAddress.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.BlockAddress.Function - commentId: P:Ubiquity.NET.Llvm.Values.BlockAddress.Function - id: Function - parent: Ubiquity.NET.Llvm.Values.BlockAddress - langs: - - csharp - - vb - name: Function - nameWithType: BlockAddress.Function - fullName: Ubiquity.NET.Llvm.Values.BlockAddress.Function - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BlockAddress.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Function - path: ../src/Ubiquity.NET.Llvm/Values/BlockAddress.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the that owns the block - example: [] - syntax: - content: public Function Function { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Function - content.vb: Public ReadOnly Property [Function] As [Function] - overload: Ubiquity.NET.Llvm.Values.BlockAddress.Function* -- uid: Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock - commentId: P:Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock - id: BasicBlock - parent: Ubiquity.NET.Llvm.Values.BlockAddress - langs: - - csharp - - vb - name: BasicBlock - nameWithType: BlockAddress.BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/BlockAddress.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BasicBlock - path: ../src/Ubiquity.NET.Llvm/Values/BlockAddress.cs - startLine: 16 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the the address refers to - example: [] - syntax: - content: public BasicBlock BasicBlock { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - content.vb: Public ReadOnly Property BasicBlock As BasicBlock - overload: Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.BlockAddress.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(BlockAddress, string) - nameWithType: ValueExtensions.RegisterName(BlockAddress, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.BlockAddress, string) - nameWithType.vb: ValueExtensions.RegisterName(Of BlockAddress)(BlockAddress, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.BlockAddress)(Ubiquity.NET.Llvm.Values.BlockAddress, String) - name.vb: RegisterName(Of BlockAddress)(BlockAddress, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.BlockAddress,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.BlockAddress - name: BlockAddress - href: Ubiquity.NET.Llvm.Values.BlockAddress.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.BlockAddress - name: BlockAddress - href: Ubiquity.NET.Llvm.Values.BlockAddress.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.BlockAddress,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BlockAddress - name: BlockAddress - href: Ubiquity.NET.Llvm.Values.BlockAddress.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.BlockAddress - name: BlockAddress - href: Ubiquity.NET.Llvm.Values.BlockAddress.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.BlockAddress.Function - commentId: P:Ubiquity.NET.Llvm.Values.BlockAddress.Function - href: Ubiquity.NET.Llvm.Values.BlockAddress.html#Ubiquity_NET_Llvm_Values_BlockAddress_Function - name: Function - nameWithType: BlockAddress.Function - fullName: Ubiquity.NET.Llvm.Values.BlockAddress.Function -- uid: Ubiquity.NET.Llvm.Values.BlockAddress.Function* - commentId: Overload:Ubiquity.NET.Llvm.Values.BlockAddress.Function - href: Ubiquity.NET.Llvm.Values.BlockAddress.html#Ubiquity_NET_Llvm_Values_BlockAddress_Function - name: Function - nameWithType: BlockAddress.Function - fullName: Ubiquity.NET.Llvm.Values.BlockAddress.Function -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock - commentId: P:Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock - href: Ubiquity.NET.Llvm.Values.BlockAddress.html#Ubiquity_NET_Llvm_Values_BlockAddress_BasicBlock - name: BasicBlock - nameWithType: BlockAddress.BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock -- uid: Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock* - commentId: Overload:Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock - href: Ubiquity.NET.Llvm.Values.BlockAddress.html#Ubiquity_NET_Llvm_Values_BlockAddress_BasicBlock - name: BasicBlock - nameWithType: BlockAddress.BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BlockAddress.BasicBlock -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.CallingConvention.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.CallingConvention.yml deleted file mode 100644 index b41794ad68..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.CallingConvention.yml +++ /dev/null @@ -1,1405 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.CallingConvention - commentId: T:Ubiquity.NET.Llvm.Values.CallingConvention - id: CallingConvention - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuComputeShader - - Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuEs - - Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuGeometryShader - - Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuHullShader - - Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuKernel - - Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuLS - - Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuPixelShader - - Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuVertexShader - - Ubiquity.NET.Llvm.Values.CallingConvention.AVRBuiltIn - - Ubiquity.NET.Llvm.Values.CallingConvention.AVRInterrupt - - Ubiquity.NET.Llvm.Values.CallingConvention.AVRSignal - - Ubiquity.NET.Llvm.Values.CallingConvention.AnyReg - - Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCS - - Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCSVfp - - Ubiquity.NET.Llvm.Values.CallingConvention.ArmAPCS - - Ubiquity.NET.Llvm.Values.CallingConvention.C - - Ubiquity.NET.Llvm.Values.CallingConvention.ColdCall - - Ubiquity.NET.Llvm.Values.CallingConvention.CxxFastTls - - Ubiquity.NET.Llvm.Values.CallingConvention.FastCall - - Ubiquity.NET.Llvm.Values.CallingConvention.FirstTargetSpecific - - Ubiquity.NET.Llvm.Values.CallingConvention.GlasgowHaskellCompiler - - Ubiquity.NET.Llvm.Values.CallingConvention.HHVM - - Ubiquity.NET.Llvm.Values.CallingConvention.HHVMCCall - - Ubiquity.NET.Llvm.Values.CallingConvention.HiPE - - Ubiquity.NET.Llvm.Values.CallingConvention.IntelOpenCLBuiltIn - - Ubiquity.NET.Llvm.Values.CallingConvention.MSP430BuiltIn - - Ubiquity.NET.Llvm.Values.CallingConvention.MSP430Interrupt - - Ubiquity.NET.Llvm.Values.CallingConvention.MaxCallingConvention - - Ubiquity.NET.Llvm.Values.CallingConvention.PreserveAll - - Ubiquity.NET.Llvm.Values.CallingConvention.PreserveMost - - Ubiquity.NET.Llvm.Values.CallingConvention.PtxDevice - - Ubiquity.NET.Llvm.Values.CallingConvention.PtxKernel - - Ubiquity.NET.Llvm.Values.CallingConvention.SpirFunction - - Ubiquity.NET.Llvm.Values.CallingConvention.SpirKernel - - Ubiquity.NET.Llvm.Values.CallingConvention.Swift - - Ubiquity.NET.Llvm.Values.CallingConvention.WebKitJS - - Ubiquity.NET.Llvm.Values.CallingConvention.X86FastCall - - Ubiquity.NET.Llvm.Values.CallingConvention.X86Interrupt - - Ubiquity.NET.Llvm.Values.CallingConvention.X86RegCall - - Ubiquity.NET.Llvm.Values.CallingConvention.X86StdCall - - Ubiquity.NET.Llvm.Values.CallingConvention.X86ThisCall - - Ubiquity.NET.Llvm.Values.CallingConvention.X86VectorCall - - Ubiquity.NET.Llvm.Values.CallingConvention.X86x64SysV - - Ubiquity.NET.Llvm.Values.CallingConvention.X86x64Win64 - langs: - - csharp - - vb - name: CallingConvention - nameWithType: CallingConvention - fullName: Ubiquity.NET.Llvm.Values.CallingConvention - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallingConvention - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling Convention for functions - example: [] - syntax: - content: public enum CallingConvention - content.vb: Public Enum CallingConvention - seealso: - - linkType: HRef - linkId: xref:llvm_langref#calling-conventions - altText: LLVM calling conventions -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.C - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.C - id: C - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: C - nameWithType: CallingConvention.C - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.C - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: C - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The default llvm calling convention, compatible with C - remarks: >- - This convention is the only calling convention that supports varargs calls. - - As with typical C calling conventions, the callee/caller have to - - tolerate certain amounts of prototype mismatch - example: [] - syntax: - content: C = 0 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.FastCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.FastCall - id: FastCall - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: FastCall - nameWithType: CallingConvention.FastCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.FastCall - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FastCall - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 37 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Fast calling convention - example: [] - syntax: - content: FastCall = 8 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.ColdCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.ColdCall - id: ColdCall - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: ColdCall - nameWithType: CallingConvention.ColdCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.ColdCall - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ColdCall - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Cold calling - example: [] - syntax: - content: ColdCall = 9 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.GlasgowHaskellCompiler - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.GlasgowHaskellCompiler - id: GlasgowHaskellCompiler - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: GlasgowHaskellCompiler - nameWithType: CallingConvention.GlasgowHaskellCompiler - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.GlasgowHaskellCompiler - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlasgowHaskellCompiler - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Glasgow Haskell Compiler - example: [] - syntax: - content: GlasgowHaskellCompiler = 10 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.HiPE - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.HiPE - id: HiPE - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: HiPE - nameWithType: CallingConvention.HiPE - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.HiPE - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HiPE - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The High=Performance Erlang convention - example: [] - syntax: - content: HiPE = 11 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.WebKitJS - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.WebKitJS - id: WebKitJS - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: WebKitJS - nameWithType: CallingConvention.WebKitJS - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.WebKitJS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WebKitJS - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Webkit JavaScript calling convention - example: [] - syntax: - content: WebKitJS = 12 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AnyReg - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AnyReg - id: AnyReg - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AnyReg - nameWithType: CallingConvention.AnyReg - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AnyReg - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AnyReg - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention for dynamic register based calls (e.g.stackmap and patchpoint intrinsics) - example: [] - syntax: - content: AnyReg = 13 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.PreserveMost - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.PreserveMost - id: PreserveMost - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: PreserveMost - nameWithType: CallingConvention.PreserveMost - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.PreserveMost - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreserveMost - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Preserve most calling convention for runtime calls that preserves most registers. - example: [] - syntax: - content: PreserveMost = 14 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.PreserveAll - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.PreserveAll - id: PreserveAll - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: PreserveAll - nameWithType: CallingConvention.PreserveAll - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.PreserveAll - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PreserveAll - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Preserve all calling convention for runtime calls that preserves (almost) all registers. - example: [] - syntax: - content: PreserveAll = 15 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.Swift - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.Swift - id: Swift - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: Swift - nameWithType: CallingConvention.Swift - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.Swift - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Swift - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Swift calling convention - example: [] - syntax: - content: Swift = 16 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.CxxFastTls - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.CxxFastTls - id: CxxFastTls - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: CxxFastTls - nameWithType: CallingConvention.CxxFastTls - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.CxxFastTls - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CxxFastTls - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention for access functions. - example: [] - syntax: - content: CxxFastTls = 17 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.FirstTargetSpecific - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.FirstTargetSpecific - id: FirstTargetSpecific - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: FirstTargetSpecific - nameWithType: CallingConvention.FirstTargetSpecific - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.FirstTargetSpecific - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FirstTargetSpecific - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 69 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Marker enum that identifies the start of the target specific conventions all values greater than or equal to this value are target specific - example: [] - syntax: - content: FirstTargetSpecific = 64 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86StdCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86StdCall - id: X86StdCall - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: X86StdCall - nameWithType: CallingConvention.X86StdCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86StdCall - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86StdCall - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 77 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: X86 stdcall convention - remarks: >- - This calling convention is mostly used by the Win32 API. It is basically the same as the C - - convention with the difference in that the callee is responsible for popping the arguments - - from the stack. - example: [] - syntax: - content: X86StdCall = 64 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86FastCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86FastCall - id: X86FastCall - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: X86FastCall - nameWithType: CallingConvention.X86FastCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86FastCall - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86FastCall - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: X86 fast call convention - remarks: "'fast' analog of . Passes first two arguments\r\nin ECX:EDX registers, others - via stack. Callee is responsible for\r\nstack cleaning." - example: [] - syntax: - content: X86FastCall = 65 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.ArmAPCS - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.ArmAPCS - id: ArmAPCS - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: ArmAPCS - nameWithType: CallingConvention.ArmAPCS - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.ArmAPCS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ArmAPCS - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: ARM APCS (officially obsolete but some old targets use it) - example: [] - syntax: - content: ArmAPCS = 66 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCS - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCS - id: ArmAAPCS - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: ArmAAPCS - nameWithType: CallingConvention.ArmAAPCS - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ArmAAPCS - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: ARM Architecture Procedure Calling Standard calling convention (aka EABI). Soft float variant - example: [] - syntax: - content: ArmAAPCS = 67 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCSVfp - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCSVfp - id: ArmAAPCSVfp - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: ArmAAPCSVfp - nameWithType: CallingConvention.ArmAAPCSVfp - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCSVfp - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ArmAAPCSVfp - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 94 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Same as but uses hard floating point ABI - example: [] - syntax: - content: ArmAAPCSVfp = 68 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.MSP430Interrupt - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.MSP430Interrupt - id: MSP430Interrupt - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: MSP430Interrupt - nameWithType: CallingConvention.MSP430Interrupt - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.MSP430Interrupt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MSP430Interrupt - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 97 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for MSP430 interrupt routines - example: [] - syntax: - content: MSP430Interrupt = 69 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86ThisCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86ThisCall - id: X86ThisCall - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: X86ThisCall - nameWithType: CallingConvention.X86ThisCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86ThisCall - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86ThisCall - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 103 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Similar to , passes first 'this' argument in ECX all others via stack - remarks: Callee is responsible for stack cleaning. MSVC uses this by default for C++ instance methods in its ABI - example: [] - syntax: - content: X86ThisCall = 70 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.PtxKernel - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.PtxKernel - id: PtxKernel - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: PtxKernel - nameWithType: CallingConvention.PtxKernel - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.PtxKernel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PtxKernel - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 107 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Call to a PTX kernel - remarks: Passes all arguments in parameter space - example: [] - syntax: - content: PtxKernel = 71 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.PtxDevice - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.PtxDevice - id: PtxDevice - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: PtxDevice - nameWithType: CallingConvention.PtxDevice - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.PtxDevice - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PtxDevice - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 113 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Call to a PTX device function - remarks: Passes all arguments in register or parameter space. - example: [] - syntax: - content: PtxDevice = 72 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.SpirFunction - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.SpirFunction - id: SpirFunction - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: SpirFunction - nameWithType: CallingConvention.SpirFunction - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.SpirFunction - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SpirFunction - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 116 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention for SPIR non-kernel device functions. - example: [] - syntax: - content: SpirFunction = 75 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.SpirKernel - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.SpirKernel - id: SpirKernel - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: SpirKernel - nameWithType: CallingConvention.SpirKernel - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.SpirKernel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SpirKernel - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 119 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention for SPIR kernel functions. - example: [] - syntax: - content: SpirKernel = 76 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.IntelOpenCLBuiltIn - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.IntelOpenCLBuiltIn - id: IntelOpenCLBuiltIn - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: IntelOpenCLBuiltIn - nameWithType: CallingConvention.IntelOpenCLBuiltIn - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.IntelOpenCLBuiltIn - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntelOpenCLBuiltIn - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 122 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling conventions for Intel OpenCL built-ins - example: [] - syntax: - content: IntelOpenCLBuiltIn = 77 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86x64SysV - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86x64SysV - id: X86x64SysV - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: X86x64SysV - nameWithType: CallingConvention.X86x64SysV - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86x64SysV - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86x64SysV - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 125 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The C convention as specified in the x86-64 supplement to the System V ABI, used on most non-Windows systems. - example: [] - syntax: - content: X86x64SysV = 78 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86x64Win64 - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86x64Win64 - id: X86x64Win64 - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: X86x64Win64 - nameWithType: CallingConvention.X86x64Win64 - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86x64Win64 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86x64Win64 - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 134 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The C convention as implemented on Windows/x86-64 and AArch64. - remarks: >- -

This convention differs from the more common convention in a number of ways, most notably in - - that XMM registers used to pass arguments are shadowed by GPRs, and vice versa.

- -

On AArch64, this is identical to the normal C (AAPCS) calling convention for normal functions, - - but floats are passed in integer registers to variadic functions

- example: [] - syntax: - content: X86x64Win64 = 79 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86VectorCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86VectorCall - id: X86VectorCall - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: X86VectorCall - nameWithType: CallingConvention.X86VectorCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86VectorCall - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86VectorCall - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 137 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: MSVC calling convention that passes vectors and vector aggregates in SSE registers - example: [] - syntax: - content: X86VectorCall = 80 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.HHVM - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.HHVM - id: HHVM - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: HHVM - nameWithType: CallingConvention.HHVM - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.HHVM - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HHVM - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 140 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used by HipHop Virtual Machine (HHVM) - example: [] - syntax: - content: HHVM = 81 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.HHVMCCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.HHVMCCall - id: HHVMCCall - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: HHVMCCall - nameWithType: CallingConvention.HHVMCCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.HHVMCCall - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: HHVMCCall - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 143 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: HHVM calling convention for invoking C/C++ helpers - example: [] - syntax: - content: HHVMCCall = 82 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86Interrupt - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86Interrupt - id: X86Interrupt - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: X86Interrupt - nameWithType: CallingConvention.X86Interrupt - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86Interrupt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86Interrupt - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 151 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: x86 hardware interrupt context - remarks: >- - Callee may take one or two parameters, where the 1st represents a pointer to hardware context frame - - and the 2nd represents hardware error code, the presence of the later depends on the interrupt vector - - taken. Valid for both 32- and 64-bit subtargets. - example: [] - syntax: - content: X86Interrupt = 83 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AVRInterrupt - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AVRInterrupt - id: AVRInterrupt - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AVRInterrupt - nameWithType: CallingConvention.AVRInterrupt - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AVRInterrupt - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AVRInterrupt - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 154 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Used for AVR interrupt routines - example: [] - syntax: - content: AVRInterrupt = 84 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AVRSignal - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AVRSignal - id: AVRSignal - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AVRSignal - nameWithType: CallingConvention.AVRSignal - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AVRSignal - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AVRSignal - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 157 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for AVR signal routines - example: [] - syntax: - content: AVRSignal = 85 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AVRBuiltIn - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AVRBuiltIn - id: AVRBuiltIn - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AVRBuiltIn - nameWithType: CallingConvention.AVRBuiltIn - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AVRBuiltIn - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AVRBuiltIn - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 160 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for special AVR rtlib functions which have an "optimized" convention to preserve registers. - example: [] - syntax: - content: AVRBuiltIn = 86 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuVertexShader - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuVertexShader - id: AMDGpuVertexShader - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AMDGpuVertexShader - nameWithType: CallingConvention.AMDGpuVertexShader - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuVertexShader - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGpuVertexShader - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 163 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for Mesa vertex shaders. - example: [] - syntax: - content: AMDGpuVertexShader = 87 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuGeometryShader - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuGeometryShader - id: AMDGpuGeometryShader - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AMDGpuGeometryShader - nameWithType: CallingConvention.AMDGpuGeometryShader - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuGeometryShader - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGpuGeometryShader - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 166 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for Mesa geometry shaders. - example: [] - syntax: - content: AMDGpuGeometryShader = 88 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuPixelShader - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuPixelShader - id: AMDGpuPixelShader - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AMDGpuPixelShader - nameWithType: CallingConvention.AMDGpuPixelShader - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuPixelShader - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGpuPixelShader - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 169 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for Mesa pixel shaders. - example: [] - syntax: - content: AMDGpuPixelShader = 89 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuComputeShader - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuComputeShader - id: AMDGpuComputeShader - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AMDGpuComputeShader - nameWithType: CallingConvention.AMDGpuComputeShader - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuComputeShader - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGpuComputeShader - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 172 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for Mesa compute shaders. - example: [] - syntax: - content: AMDGpuComputeShader = 90 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuKernel - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuKernel - id: AMDGpuKernel - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AMDGpuKernel - nameWithType: CallingConvention.AMDGpuKernel - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuKernel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGpuKernel - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 175 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention for AMDGPU code object kernels. - example: [] - syntax: - content: AMDGpuKernel = 91 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86RegCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86RegCall - id: X86RegCall - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: X86RegCall - nameWithType: CallingConvention.X86RegCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86RegCall - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: X86RegCall - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 178 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Register calling convention used for parameters transfer optimization - example: [] - syntax: - content: X86RegCall = 92 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuHullShader - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuHullShader - id: AMDGpuHullShader - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AMDGpuHullShader - nameWithType: CallingConvention.AMDGpuHullShader - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuHullShader - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGpuHullShader - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 181 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for Mesa hull shaders. (= tessellation control shaders) - example: [] - syntax: - content: AMDGpuHullShader = 93 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.MSP430BuiltIn - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.MSP430BuiltIn - id: MSP430BuiltIn - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: MSP430BuiltIn - nameWithType: CallingConvention.MSP430BuiltIn - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.MSP430BuiltIn - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MSP430BuiltIn - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 184 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for special MSP430 rtlib functions which have an "optimized" convention using additional registers. - example: [] - syntax: - content: MSP430BuiltIn = 94 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuLS - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuLS - id: AMDGpuLS - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AMDGpuLS - nameWithType: CallingConvention.AMDGpuLS - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuLS - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGpuLS - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 187 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for AMDPAL vertex shader if tessellation is in use. - example: [] - syntax: - content: AMDGpuLS = 95 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuEs - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuEs - id: AMDGpuEs - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: AMDGpuEs - nameWithType: CallingConvention.AMDGpuEs - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.AMDGpuEs - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMDGpuEs - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 193 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Calling convention used for AMDPAL shader stage before geometry shader if geometry is in use. - remarks: Either the domain (= tessellation evaluation) shader if tessellation is in use, or otherwise the vertex shader. - example: [] - syntax: - content: AMDGpuEs = 96 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.MaxCallingConvention - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.MaxCallingConvention - id: MaxCallingConvention - parent: Ubiquity.NET.Llvm.Values.CallingConvention - langs: - - csharp - - vb - name: MaxCallingConvention - nameWithType: CallingConvention.MaxCallingConvention - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.MaxCallingConvention - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MaxCallingConvention - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 196 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The highest possible calling convention ID. Must be some 2^k - 1. - example: [] - syntax: - content: MaxCallingConvention = 1023 - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.CallingConvention - commentId: T:Ubiquity.NET.Llvm.Values.CallingConvention - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.CallingConvention.html - name: CallingConvention - nameWithType: CallingConvention - fullName: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86StdCall - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86StdCall - href: Ubiquity.NET.Llvm.Values.CallingConvention.html#Ubiquity_NET_Llvm_Values_CallingConvention_X86StdCall - name: X86StdCall - nameWithType: CallingConvention.X86StdCall - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86StdCall -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCS - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCS - href: Ubiquity.NET.Llvm.Values.CallingConvention.html#Ubiquity_NET_Llvm_Values_CallingConvention_ArmAAPCS - name: ArmAAPCS - nameWithType: CallingConvention.ArmAAPCS - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.ArmAAPCS -- uid: Ubiquity.NET.Llvm.Values.CallingConvention.X86x64SysV - commentId: F:Ubiquity.NET.Llvm.Values.CallingConvention.X86x64SysV - href: Ubiquity.NET.Llvm.Values.CallingConvention.html#Ubiquity_NET_Llvm_Values_CallingConvention_X86x64SysV - name: X86x64SysV - nameWithType: CallingConvention.X86x64SysV - fullName: Ubiquity.NET.Llvm.Values.CallingConvention.X86x64SysV diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Constant.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Constant.yml deleted file mode 100644 index 000319f529..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Constant.yml +++ /dev/null @@ -1,987 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - id: Constant - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - langs: - - csharp - - vb - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Constant.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Constant - path: ../src/Ubiquity.NET.Llvm/Values/Constant.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Contains an LLVM Constant value - example: [] - syntax: - content: 'public class Constant : User, IEquatable' - content.vb: Public Class Constant Inherits User Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - derivedClasses: - - Ubiquity.NET.Llvm.Values.BlockAddress - - Ubiquity.NET.Llvm.Values.ConstantAggregate - - Ubiquity.NET.Llvm.Values.ConstantData - - Ubiquity.NET.Llvm.Values.ConstantExpression - - Ubiquity.NET.Llvm.Values.GlobalValue - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.Constant.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - id: IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - langs: - - csharp - - vb - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Constant.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsZeroValue - path: ../src/Ubiquity.NET.Llvm/Values/Constant.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the constant is a Zero value for the its type - example: [] - syntax: - content: public bool IsZeroValue { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsZeroValue As Boolean - overload: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue* -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - id: NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - langs: - - csharp - - vb - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Constant.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NullValueFor - path: ../src/Ubiquity.NET.Llvm/Values/Constant.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Create a NULL pointer for a given type - example: [] - syntax: - content: public static Constant NullValueFor(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of pointer to create a null vale for - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Constant NULL pointer of the specified type - content.vb: Public Shared Function NullValueFor(typeRef As ITypeRef) As Constant - overload: Ubiquity.NET.Llvm.Values.Constant.NullValueFor* -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - id: ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - langs: - - csharp - - vb - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Constant.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToMetadata - path: ../src/Ubiquity.NET.Llvm/Values/Constant.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the constant as a IrMetadata node - example: [] - syntax: - content: public ConstantAsMetadata ToMetadata() - return: - type: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - description: Constant value as a metadata constant - content.vb: Public Function ToMetadata() As ConstantAsMetadata - overload: Ubiquity.NET.Llvm.Values.Constant.ToMetadata* -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - id: AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - langs: - - csharp - - vb - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Constant.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AllOnesValueFor - path: ../src/Ubiquity.NET.Llvm/Values/Constant.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Creates a constant instance of typeRef with all bits in the instance set to 1 - example: [] - syntax: - content: public static Constant AllOnesValueFor(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of value to create - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Constant for the type with all instance bits set to 1 - content.vb: Public Shared Function AllOnesValueFor(typeRef As ITypeRef) As Constant - overload: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor* -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - id: UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - langs: - - csharp - - vb - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Constant.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UndefinedValueFor - path: ../src/Ubiquity.NET.Llvm/Values/Constant.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Creates an representing an undefined value for typeRef - example: [] - syntax: - content: public static Constant UndefinedValueFor(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to create the undefined value for - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: representing an undefined value of typeRef - content.vb: Public Shared Function UndefinedValueFor(typeRef As ITypeRef) As Constant - overload: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor* -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - id: ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - langs: - - csharp - - vb - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Constant.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstPointerToNullFor - path: ../src/Ubiquity.NET.Llvm/Values/Constant.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Create a constant NULL pointer for a given type - example: [] - syntax: - content: public static Constant ConstPointerToNullFor(ITypeRef typeRef) - parameters: - - id: typeRef - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of pointer to create a null value for - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Constant NULL pointer of the specified type - content.vb: Public Shared Function ConstPointerToNullFor(typeRef As ITypeRef) As Constant - overload: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Constant, string) - nameWithType: ValueExtensions.RegisterName(Constant, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.Constant, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Constant)(Constant, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.Constant)(Ubiquity.NET.Llvm.Values.Constant, String) - name.vb: RegisterName(Of Constant)(Constant, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.Constant,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.Constant,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue* - commentId: Overload:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor* - commentId: Overload:Ubiquity.NET.Llvm.Values.Constant.NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor - nameWithType: Constant.NullValueFor - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata* - commentId: Overload:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata - nameWithType: Constant.ToMetadata - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata -- uid: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata.html - name: ConstantAsMetadata - nameWithType: ConstantAsMetadata - fullName: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor* - commentId: Overload:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor - nameWithType: Constant.AllOnesValueFor - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor* - commentId: Overload:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor - nameWithType: Constant.UndefinedValueFor - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor* - commentId: Overload:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor - nameWithType: Constant.ConstPointerToNullFor - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantAggregate.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantAggregate.yml deleted file mode 100644 index 1c87ed4ccb..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantAggregate.yml +++ /dev/null @@ -1,773 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - commentId: T:Ubiquity.NET.Llvm.Values.ConstantAggregate - id: ConstantAggregate - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: ConstantAggregate - nameWithType: ConstantAggregate - fullName: Ubiquity.NET.Llvm.Values.ConstantAggregate - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantAggregate.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantAggregate - path: ../src/Ubiquity.NET.Llvm/Values/ConstantAggregate.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Base class for aggregate constants (with operands). - example: [] - syntax: - content: 'public class ConstantAggregate : Constant, IEquatable' - content.vb: Public Class ConstantAggregate Inherits Constant Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - derivedClasses: - - Ubiquity.NET.Llvm.Values.ConstantArray - - Ubiquity.NET.Llvm.Values.ConstantStruct - - Ubiquity.NET.Llvm.Values.ConstantVector - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantAggregate.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregate.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantAggregate, string) - nameWithType: ValueExtensions.RegisterName(ConstantAggregate, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantAggregate, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantAggregate)(ConstantAggregate, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantAggregate)(Ubiquity.NET.Llvm.Values.ConstantAggregate, String) - name.vb: RegisterName(Of ConstantAggregate)(ConstantAggregate, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantAggregate,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - name: ConstantAggregate - href: Ubiquity.NET.Llvm.Values.ConstantAggregate.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - name: ConstantAggregate - href: Ubiquity.NET.Llvm.Values.ConstantAggregate.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantAggregate,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - name: ConstantAggregate - href: Ubiquity.NET.Llvm.Values.ConstantAggregate.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - name: ConstantAggregate - href: Ubiquity.NET.Llvm.Values.ConstantAggregate.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantAggregateZero.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantAggregateZero.yml deleted file mode 100644 index 6a6fd06639..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantAggregateZero.yml +++ /dev/null @@ -1,777 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregateZero - commentId: T:Ubiquity.NET.Llvm.Values.ConstantAggregateZero - id: ConstantAggregateZero - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: ConstantAggregateZero - nameWithType: ConstantAggregateZero - fullName: Ubiquity.NET.Llvm.Values.ConstantAggregateZero - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantAggregateZero.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantAggregateZero - path: ../src/Ubiquity.NET.Llvm/Values/ConstantAggregateZero.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Constant aggregate of value 0 - example: [] - syntax: - content: 'public class ConstantAggregateZero : ConstantData, IEquatable' - content.vb: Public Class ConstantAggregateZero Inherits ConstantData Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantAggregateZero.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregateZero.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantAggregateZero, string) - nameWithType: ValueExtensions.RegisterName(ConstantAggregateZero, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantAggregateZero, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantAggregateZero)(ConstantAggregateZero, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantAggregateZero)(Ubiquity.NET.Llvm.Values.ConstantAggregateZero, String) - name.vb: RegisterName(Of ConstantAggregateZero)(ConstantAggregateZero, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantAggregateZero,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregateZero - name: ConstantAggregateZero - href: Ubiquity.NET.Llvm.Values.ConstantAggregateZero.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregateZero - name: ConstantAggregateZero - href: Ubiquity.NET.Llvm.Values.ConstantAggregateZero.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantAggregateZero,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregateZero - name: ConstantAggregateZero - href: Ubiquity.NET.Llvm.Values.ConstantAggregateZero.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregateZero - name: ConstantAggregateZero - href: Ubiquity.NET.Llvm.Values.ConstantAggregateZero.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantArray.yml deleted file mode 100644 index b679051aa5..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantArray.yml +++ /dev/null @@ -1,1074 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantArray - commentId: T:Ubiquity.NET.Llvm.Values.ConstantArray - id: ConstantArray - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IList{Ubiquity.NET.Llvm.Values.Constant}) - - Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Int32,Ubiquity.NET.Llvm.Values.Constant[]) - - Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Constant[]) - langs: - - csharp - - vb - name: ConstantArray - nameWithType: ConstantArray - fullName: Ubiquity.NET.Llvm.Values.ConstantArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantArray - path: ../src/Ubiquity.NET.Llvm/Values/ConstantArray.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: LLVM Constant Array - remarks: >- - Due to how LLVM treats constant arrays internally, creating a constant array - - with the From method overloads may not actually produce a ConstantArray - - instance. At the least it will produce a Constant. LLVM will determine the - - appropriate internal representation based on the input types and values - example: [] - syntax: - content: 'public sealed class ConstantArray : ConstantAggregate, IEquatable' - content.vb: Public NotInheritable Class ConstantArray Inherits ConstantAggregate Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantAggregate - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantArray.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Constant[]) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Constant[]) - id: From(Ubiquity.NET.Llvm.Types.ITypeRef,Ubiquity.NET.Llvm.Values.Constant[]) - parent: Ubiquity.NET.Llvm.Values.ConstantArray - langs: - - csharp - - vb - name: From(ITypeRef, params Constant[]) - nameWithType: ConstantArray.From(ITypeRef, params Constant[]) - fullName: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef, params Ubiquity.NET.Llvm.Values.Constant[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: From - path: ../src/Ubiquity.NET.Llvm/Values/ConstantArray.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Create a constant array of values of a given type - example: [] - syntax: - content: public static Constant From(ITypeRef elementType, params Constant[] values) - parameters: - - id: elementType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of elements in the array - - id: values - type: Ubiquity.NET.Llvm.Values.Constant[] - description: Values to initialize the array - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Constant representing the array - content.vb: Public Shared Function From(elementType As ITypeRef, ParamArray values As Constant()) As Constant - overload: Ubiquity.NET.Llvm.Values.ConstantArray.From* - nameWithType.vb: ConstantArray.From(ITypeRef, ParamArray Constant()) - fullName.vb: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef, ParamArray Ubiquity.NET.Llvm.Values.Constant()) - name.vb: From(ITypeRef, ParamArray Constant()) -- uid: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Int32,Ubiquity.NET.Llvm.Values.Constant[]) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Int32,Ubiquity.NET.Llvm.Values.Constant[]) - id: From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Int32,Ubiquity.NET.Llvm.Values.Constant[]) - parent: Ubiquity.NET.Llvm.Values.ConstantArray - langs: - - csharp - - vb - name: From(ITypeRef, int, params Constant[]) - nameWithType: ConstantArray.From(ITypeRef, int, params Constant[]) - fullName: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef, int, params Ubiquity.NET.Llvm.Values.Constant[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: From - path: ../src/Ubiquity.NET.Llvm/Values/ConstantArray.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Create a constant array of values of a given type with a fixed size, zero filling any unspecified values - remarks: >- - If the number of arguments provided for the values is less than len - - then the remaining elements of the array are set with the null value for the elementType - example: [] - syntax: - content: public static Constant From(ITypeRef elementType, int len, params Constant[] values) - parameters: - - id: elementType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of elements in the array - - id: len - type: System.Int32 - description: Length of the array - - id: values - type: Ubiquity.NET.Llvm.Values.Constant[] - description: Values to initialize the array - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Constant representing the array - content.vb: Public Shared Function From(elementType As ITypeRef, len As Integer, ParamArray values As Constant()) As Constant - overload: Ubiquity.NET.Llvm.Values.ConstantArray.From* - nameWithType.vb: ConstantArray.From(ITypeRef, Integer, ParamArray Constant()) - fullName.vb: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef, Integer, ParamArray Ubiquity.NET.Llvm.Values.Constant()) - name.vb: From(ITypeRef, Integer, ParamArray Constant()) -- uid: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IList{Ubiquity.NET.Llvm.Values.Constant}) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IList{Ubiquity.NET.Llvm.Values.Constant}) - id: From(Ubiquity.NET.Llvm.Types.ITypeRef,System.Collections.Generic.IList{Ubiquity.NET.Llvm.Values.Constant}) - parent: Ubiquity.NET.Llvm.Values.ConstantArray - langs: - - csharp - - vb - name: From(ITypeRef, IList) - nameWithType: ConstantArray.From(ITypeRef, IList) - fullName: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef, System.Collections.Generic.IList) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: From - path: ../src/Ubiquity.NET.Llvm/Values/ConstantArray.cs - startLine: 48 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Create a constant array of values of a given type - example: [] - syntax: - content: public static Constant From(ITypeRef elementType, IList values) - parameters: - - id: elementType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of elements in the array - - id: values - type: System.Collections.Generic.IList{Ubiquity.NET.Llvm.Values.Constant} - description: Values to initialize the array - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Constant representing the array - content.vb: Public Shared Function From(elementType As ITypeRef, values As IList(Of Constant)) As Constant - overload: Ubiquity.NET.Llvm.Values.ConstantArray.From* - nameWithType.vb: ConstantArray.From(ITypeRef, IList(Of Constant)) - fullName.vb: Ubiquity.NET.Llvm.Values.ConstantArray.From(Ubiquity.NET.Llvm.Types.ITypeRef, System.Collections.Generic.IList(Of Ubiquity.NET.Llvm.Values.Constant)) - name.vb: From(ITypeRef, IList(Of Constant)) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - commentId: T:Ubiquity.NET.Llvm.Values.ConstantAggregate - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantAggregate.html - name: ConstantAggregate - nameWithType: ConstantAggregate - fullName: Ubiquity.NET.Llvm.Values.ConstantAggregate -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantArray.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantArray, string) - nameWithType: ValueExtensions.RegisterName(ConstantArray, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantArray, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantArray)(ConstantArray, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantArray)(Ubiquity.NET.Llvm.Values.ConstantArray, String) - name.vb: RegisterName(Of ConstantArray)(ConstantArray, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantArray,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantArray - name: ConstantArray - href: Ubiquity.NET.Llvm.Values.ConstantArray.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantArray - name: ConstantArray - href: Ubiquity.NET.Llvm.Values.ConstantArray.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantArray,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantArray - name: ConstantArray - href: Ubiquity.NET.Llvm.Values.ConstantArray.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantArray - name: ConstantArray - href: Ubiquity.NET.Llvm.Values.ConstantArray.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.ConstantArray.From* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantArray.From - href: Ubiquity.NET.Llvm.Values.ConstantArray.html#Ubiquity_NET_Llvm_Values_ConstantArray_From_Ubiquity_NET_Llvm_Types_ITypeRef_Ubiquity_NET_Llvm_Values_Constant___ - name: From - nameWithType: ConstantArray.From - fullName: Ubiquity.NET.Llvm.Values.ConstantArray.From -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Values.Constant[] - isExternal: true - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant[] - nameWithType: Constant[] - fullName: Ubiquity.NET.Llvm.Values.Constant[] - nameWithType.vb: Constant() - fullName.vb: Ubiquity.NET.Llvm.Values.Constant() - name.vb: Constant() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: '[' - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: System.Collections.Generic.IList{Ubiquity.NET.Llvm.Values.Constant} - commentId: T:System.Collections.Generic.IList{Ubiquity.NET.Llvm.Values.Constant} - parent: System.Collections.Generic - definition: System.Collections.Generic.IList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - name: IList - nameWithType: IList - fullName: System.Collections.Generic.IList - nameWithType.vb: IList(Of Constant) - fullName.vb: System.Collections.Generic.IList(Of Ubiquity.NET.Llvm.Values.Constant) - name.vb: IList(Of Constant) - spec.csharp: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - href: Ubiquity.NET.Llvm.Values.Constant.html - - name: ) -- uid: System.Collections.Generic.IList`1 - commentId: T:System.Collections.Generic.IList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - name: IList - nameWithType: IList - fullName: System.Collections.Generic.IList - nameWithType.vb: IList(Of T) - fullName.vb: System.Collections.Generic.IList(Of T) - name.vb: IList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IList`1 - name: IList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantData.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantData.yml deleted file mode 100644 index 00af852bca..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantData.yml +++ /dev/null @@ -1,777 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - id: ConstantData - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantData.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantData - path: ../src/Ubiquity.NET.Llvm/Values/ConstantData.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Base class for constants with no operands - example: [] - syntax: - content: 'public class ConstantData : Constant, IEquatable' - content.vb: Public Class ConstantData Inherits Constant Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - derivedClasses: - - Ubiquity.NET.Llvm.Values.ConstantAggregateZero - - Ubiquity.NET.Llvm.Values.ConstantDataSequential - - Ubiquity.NET.Llvm.Values.ConstantFP - - Ubiquity.NET.Llvm.Values.ConstantInt - - Ubiquity.NET.Llvm.Values.ConstantPointerNull - - Ubiquity.NET.Llvm.Values.ConstantTokenNone - - Ubiquity.NET.Llvm.Values.UndefValue - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantData.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantData.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantData, string) - nameWithType: ValueExtensions.RegisterName(ConstantData, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantData, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantData)(ConstantData, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantData)(Ubiquity.NET.Llvm.Values.ConstantData, String) - name.vb: RegisterName(Of ConstantData)(ConstantData, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantData,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantData - name: ConstantData - href: Ubiquity.NET.Llvm.Values.ConstantData.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantData - name: ConstantData - href: Ubiquity.NET.Llvm.Values.ConstantData.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantData,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantData - name: ConstantData - href: Ubiquity.NET.Llvm.Values.ConstantData.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantData - name: ConstantData - href: Ubiquity.NET.Llvm.Values.ConstantData.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataArray.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataArray.yml deleted file mode 100644 index 79d05ffb4b..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataArray.yml +++ /dev/null @@ -1,866 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataArray - id: ConstantDataArray - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: ConstantDataArray - nameWithType: ConstantDataArray - fullName: Ubiquity.NET.Llvm.Values.ConstantDataArray - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataArray.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantDataArray - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataArray.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Array of constant data - example: [] - syntax: - content: 'public class ConstantDataArray : ConstantDataSequential, IEquatable' - content.vb: Public Class ConstantDataArray Inherits ConstantDataSequential Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - - Ubiquity.NET.Llvm.Values.ConstantDataSequential - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantDataArray.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataSequential - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html - name: ConstantDataSequential - nameWithType: ConstantDataSequential - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_IsString - name: IsString - nameWithType: ConstantDataSequential.IsString - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_IsI8Sequence - name: IsI8Sequence - nameWithType: ConstantDataSequential.IsI8Sequence - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - commentId: M:Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString - name: ExtractAsString() - nameWithType: ConstantDataSequential.ExtractAsString() - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - name: ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - name: ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - isExternal: true - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString_System_Text_Encoding_ - name: ExtractAsString(Encoding) - nameWithType: ConstantDataSequential.ExtractAsString(Encoding) - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - name: ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString_System_Text_Encoding_ - - name: ( - - uid: System.Text.Encoding - name: Encoding - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.text.encoding - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - name: ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString_System_Text_Encoding_ - - name: ( - - uid: System.Text.Encoding - name: Encoding - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.text.encoding - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_RawData - name: RawData - nameWithType: ConstantDataSequential.RawData - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_Count - name: Count - nameWithType: ConstantDataSequential.Count - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataArray.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantDataArray, string) - nameWithType: ValueExtensions.RegisterName(ConstantDataArray, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantDataArray, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantDataArray)(ConstantDataArray, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantDataArray)(Ubiquity.NET.Llvm.Values.ConstantDataArray, String) - name.vb: RegisterName(Of ConstantDataArray)(ConstantDataArray, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantDataArray,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - name: ConstantDataArray - href: Ubiquity.NET.Llvm.Values.ConstantDataArray.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - name: ConstantDataArray - href: Ubiquity.NET.Llvm.Values.ConstantDataArray.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantDataArray,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - name: ConstantDataArray - href: Ubiquity.NET.Llvm.Values.ConstantDataArray.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - name: ConstantDataArray - href: Ubiquity.NET.Llvm.Values.ConstantDataArray.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml deleted file mode 100644 index 3c8a469daf..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataSequential.yml +++ /dev/null @@ -1,1183 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataSequential - id: ConstantDataSequential - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - langs: - - csharp - - vb - name: ConstantDataSequential - nameWithType: ConstantDataSequential - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantDataSequential - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: >- - A vector or array constant whose element type is a simple 1/2/4/8-byte integer - - or float/double, and whose elements are just simple data values - - (i.e. ConstantInt/ConstantFP). - remarks: >- - This Constant node has no operands because - - it stores all of the elements of the constant as densely packed data, instead - - of as s - example: [] - syntax: - content: 'public class ConstantDataSequential : ConstantData, IEquatable' - content.vb: Public Class ConstantDataSequential Inherits ConstantData Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - derivedClasses: - - Ubiquity.NET.Llvm.Values.ConstantDataArray - - Ubiquity.NET.Llvm.Values.ConstantDataVector - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - id: IsString - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - langs: - - csharp - - vb - name: IsString - nameWithType: ConstantDataSequential.IsString - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsString - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - startLine: 24 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether this constant is a string - example: [] - syntax: - content: public bool IsString { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsString As Boolean - overload: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString* -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - id: IsI8Sequence - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - langs: - - csharp - - vb - name: IsI8Sequence - nameWithType: ConstantDataSequential.IsI8Sequence - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsI8Sequence - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether this constant is a sequence of 8bit integral values - example: [] - syntax: - content: public bool IsI8Sequence { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsI8Sequence As Boolean - overload: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence* -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - commentId: M:Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - id: ExtractAsString - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - langs: - - csharp - - vb - name: ExtractAsString() - nameWithType: ConstantDataSequential.ExtractAsString() - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExtractAsString - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Extract a string value from the constant (Assumes encoding ASCII) - example: [] - syntax: - content: public string ExtractAsString() - return: - type: System.String - description: Extracted string - content.vb: Public Function ExtractAsString() As String - overload: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString* - exceptions: - - type: System.InvalidOperationException - commentId: T:System.InvalidOperationException - description: If IsI8Sequence isn't true -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - id: ExtractAsString(System.Text.Encoding) - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - langs: - - csharp - - vb - name: ExtractAsString(Encoding) - nameWithType: ConstantDataSequential.ExtractAsString(Encoding) - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExtractAsString - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: summary - example: [] - syntax: - content: public string ExtractAsString(Encoding encoding) - parameters: - - id: encoding - type: System.Text.Encoding - description: encoding - return: - type: System.String - description: string - content.vb: Public Function ExtractAsString(encoding As Encoding) As String - overload: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString* -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - id: RawData - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - langs: - - csharp - - vb - name: RawData - nameWithType: ConstantDataSequential.RawData - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RawData - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the raw Data for the data sequential as a of - remarks: >- - This retrieves the underlying data, which may be empty, independent of the actual element type. Thus, - - issues of endian mismatch can occur between host assumptions and target. Thus, caution is warranted - - when using this property. - example: [] - syntax: - content: public ReadOnlySpan RawData { get; } - parameters: [] - return: - type: System.ReadOnlySpan{System.Byte} - content.vb: Public ReadOnly Property RawData As ReadOnlySpan(Of Byte) - overload: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData* -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - id: Count - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - langs: - - csharp - - vb - name: Count - nameWithType: ConstantDataSequential.Count - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Count - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataSequential.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the count of elements in this - example: [] - syntax: - content: public uint Count { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property Count As UInteger - overload: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count* -references: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantDataSequential, string) - nameWithType: ValueExtensions.RegisterName(ConstantDataSequential, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantDataSequential, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantDataSequential)(ConstantDataSequential, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantDataSequential)(Ubiquity.NET.Llvm.Values.ConstantDataSequential, String) - name.vb: RegisterName(Of ConstantDataSequential)(ConstantDataSequential, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantDataSequential,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - name: ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - name: ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantDataSequential,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - name: ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - name: ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_IsString - name: IsString - nameWithType: ConstantDataSequential.IsString - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_IsI8Sequence - name: IsI8Sequence - nameWithType: ConstantDataSequential.IsI8Sequence - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence -- uid: System.InvalidOperationException - commentId: T:System.InvalidOperationException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception - name: InvalidOperationException - nameWithType: InvalidOperationException - fullName: System.InvalidOperationException -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString - name: ExtractAsString - nameWithType: ConstantDataSequential.ExtractAsString - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: System.Text.Encoding - commentId: T:System.Text.Encoding - parent: System.Text - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.text.encoding - name: Encoding - nameWithType: Encoding - fullName: System.Text.Encoding -- uid: System.Text - commentId: N:System.Text - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Text - nameWithType: System.Text - fullName: System.Text - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Text - name: Text - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.text - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Text - name: Text - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.text -- uid: System.ReadOnlySpan`1 - commentId: T:System.ReadOnlySpan`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of T) - fullName.vb: System.ReadOnlySpan(Of T) - name.vb: ReadOnlySpan(Of T) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Byte - commentId: T:System.Byte - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - name: byte - nameWithType: byte - fullName: byte - nameWithType.vb: Byte - fullName.vb: Byte - name.vb: Byte -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_RawData - name: RawData - nameWithType: ConstantDataSequential.RawData - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData -- uid: System.ReadOnlySpan{System.Byte} - commentId: T:System.ReadOnlySpan{System.Byte} - parent: System - definition: System.ReadOnlySpan`1 - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - name: ReadOnlySpan - nameWithType: ReadOnlySpan - fullName: System.ReadOnlySpan - nameWithType.vb: ReadOnlySpan(Of Byte) - fullName.vb: System.ReadOnlySpan(Of Byte) - name.vb: ReadOnlySpan(Of Byte) - spec.csharp: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: < - - uid: System.Byte - name: byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: '>' - spec.vb: - - uid: System.ReadOnlySpan`1 - name: ReadOnlySpan - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1 - - name: ( - - name: Of - - name: " " - - uid: System.Byte - name: Byte - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.byte - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataSequential - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html - name: ConstantDataSequential - nameWithType: ConstantDataSequential - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_Count - name: Count - nameWithType: ConstantDataSequential.Count - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataVector.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataVector.yml deleted file mode 100644 index aa2e980b72..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantDataVector.yml +++ /dev/null @@ -1,866 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantDataVector - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataVector - id: ConstantDataVector - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: ConstantDataVector - nameWithType: ConstantDataVector - fullName: Ubiquity.NET.Llvm.Values.ConstantDataVector - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantDataVector.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantDataVector - path: ../src/Ubiquity.NET.Llvm/Values/ConstantDataVector.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Vector of Constant Data - example: [] - syntax: - content: 'public class ConstantDataVector : ConstantDataSequential, IEquatable' - content.vb: Public Class ConstantDataVector Inherits ConstantDataSequential Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - - Ubiquity.NET.Llvm.Values.ConstantDataSequential - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - - Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantDataVector.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataSequential - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html - name: ConstantDataSequential - nameWithType: ConstantDataSequential - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_IsString - name: IsString - nameWithType: ConstantDataSequential.IsString - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsString -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_IsI8Sequence - name: IsI8Sequence - nameWithType: ConstantDataSequential.IsI8Sequence - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.IsI8Sequence -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - commentId: M:Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString - name: ExtractAsString() - nameWithType: ConstantDataSequential.ExtractAsString() - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - name: ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString - name: ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - isExternal: true - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString_System_Text_Encoding_ - name: ExtractAsString(Encoding) - nameWithType: ConstantDataSequential.ExtractAsString(Encoding) - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - name: ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString_System_Text_Encoding_ - - name: ( - - uid: System.Text.Encoding - name: Encoding - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.text.encoding - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.ExtractAsString(System.Text.Encoding) - name: ExtractAsString - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_ExtractAsString_System_Text_Encoding_ - - name: ( - - uid: System.Text.Encoding - name: Encoding - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.text.encoding - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_RawData - name: RawData - nameWithType: ConstantDataSequential.RawData - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.RawData -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - commentId: P:Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count - parent: Ubiquity.NET.Llvm.Values.ConstantDataSequential - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html#Ubiquity_NET_Llvm_Values_ConstantDataSequential_Count - name: Count - nameWithType: ConstantDataSequential.Count - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential.Count -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantDataVector.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantDataVector, string) - nameWithType: ValueExtensions.RegisterName(ConstantDataVector, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantDataVector, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantDataVector)(ConstantDataVector, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantDataVector)(Ubiquity.NET.Llvm.Values.ConstantDataVector, String) - name.vb: RegisterName(Of ConstantDataVector)(ConstantDataVector, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantDataVector,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantDataVector - name: ConstantDataVector - href: Ubiquity.NET.Llvm.Values.ConstantDataVector.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantDataVector - name: ConstantDataVector - href: Ubiquity.NET.Llvm.Values.ConstantDataVector.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantDataVector,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantDataVector - name: ConstantDataVector - href: Ubiquity.NET.Llvm.Values.ConstantDataVector.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantDataVector - name: ConstantDataVector - href: Ubiquity.NET.Llvm.Values.ConstantDataVector.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantExpression.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantExpression.yml deleted file mode 100644 index 132cd3f225..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantExpression.yml +++ /dev/null @@ -1,987 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression - commentId: T:Ubiquity.NET.Llvm.Values.ConstantExpression - id: ConstantExpression - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode - langs: - - csharp - - vb - name: ConstantExpression - nameWithType: ConstantExpression - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantExpression.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantExpression - path: ../src/Ubiquity.NET.Llvm/Values/ConstantExpression.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: While technically a type in LLVM, ConstantExpression is primarily a static factory for Constants - example: [] - syntax: - content: 'public class ConstantExpression : Constant, IEquatable' - content.vb: Public Class ConstantExpression Inherits Constant Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantExpression.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode - commentId: P:Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode - id: OpCode - parent: Ubiquity.NET.Llvm.Values.ConstantExpression - langs: - - csharp - - vb - name: OpCode - nameWithType: ConstantExpression.OpCode - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantExpression.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpCode - path: ../src/Ubiquity.NET.Llvm/Values/ConstantExpression.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the constant instruction expression op code - example: [] - syntax: - content: public OpCode OpCode { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Instructions.OpCode - content.vb: Public ReadOnly Property OpCode As OpCode - overload: Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode* -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef) - id: IntToPtrExpression(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.ConstantExpression - langs: - - csharp - - vb - name: IntToPtrExpression(Constant, ITypeRef) - nameWithType: ConstantExpression.IntToPtrExpression(Constant, ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression(Ubiquity.NET.Llvm.Values.Constant, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantExpression.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntToPtrExpression - path: ../src/Ubiquity.NET.Llvm/Values/ConstantExpression.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets an IntToPtr expression to convert an integral value to a pointer - example: [] - syntax: - content: public static Constant IntToPtrExpression(Constant value, ITypeRef type) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Constant - description: Constant value to cast to a pointer - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the pointer to cast value to - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: New pointer constant - content.vb: Public Shared Function IntToPtrExpression(value As Constant, type As ITypeRef) As Constant - overload: Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression* -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef) - id: BitCast(Ubiquity.NET.Llvm.Values.Constant,Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.ConstantExpression - langs: - - csharp - - vb - name: BitCast(Constant, ITypeRef) - nameWithType: ConstantExpression.BitCast(Constant, ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast(Ubiquity.NET.Llvm.Values.Constant, Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantExpression.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitCast - path: ../src/Ubiquity.NET.Llvm/Values/ConstantExpression.cs - startLine: 42 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Creates a constant bit cast expression - example: [] - syntax: - content: public static Constant BitCast(Constant value, ITypeRef toType) - parameters: - - id: value - type: Ubiquity.NET.Llvm.Values.Constant - description: value to cast - - id: toType - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type to cast to - return: - type: Ubiquity.NET.Llvm.Values.Constant - description: Constant cast expression - content.vb: Public Shared Function BitCast(value As Constant, toType As ITypeRef) As Constant - overload: Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantExpression, string) - nameWithType: ValueExtensions.RegisterName(ConstantExpression, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantExpression, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantExpression)(ConstantExpression, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantExpression)(Ubiquity.NET.Llvm.Values.ConstantExpression, String) - name.vb: RegisterName(Of ConstantExpression)(ConstantExpression, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantExpression,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantExpression - name: ConstantExpression - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantExpression - name: ConstantExpression - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantExpression,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantExpression - name: ConstantExpression - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantExpression - name: ConstantExpression - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html#Ubiquity_NET_Llvm_Values_ConstantExpression_OpCode - name: OpCode - nameWithType: ConstantExpression.OpCode - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression.OpCode -- uid: Ubiquity.NET.Llvm.Instructions.OpCode - commentId: T:Ubiquity.NET.Llvm.Instructions.OpCode - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.OpCode.html - name: OpCode - nameWithType: OpCode - fullName: Ubiquity.NET.Llvm.Instructions.OpCode -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html#Ubiquity_NET_Llvm_Values_ConstantExpression_IntToPtrExpression_Ubiquity_NET_Llvm_Values_Constant_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: IntToPtrExpression - nameWithType: ConstantExpression.IntToPtrExpression - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression.IntToPtrExpression -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html#Ubiquity_NET_Llvm_Values_ConstantExpression_BitCast_Ubiquity_NET_Llvm_Values_Constant_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: BitCast - nameWithType: ConstantExpression.BitCast - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression.BitCast diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantFP.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantFP.yml deleted file mode 100644 index f10c4ef825..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantFP.yml +++ /dev/null @@ -1,861 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantFP - commentId: T:Ubiquity.NET.Llvm.Values.ConstantFP - id: ConstantFP - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss(System.Boolean@) - - Ubiquity.NET.Llvm.Values.ConstantFP.Value - langs: - - csharp - - vb - name: ConstantFP - nameWithType: ConstantFP - fullName: Ubiquity.NET.Llvm.Values.ConstantFP - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantFP.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantFP - path: ../src/Ubiquity.NET.Llvm/Values/ConstantFP.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Floating point constant value in LLVM - example: [] - syntax: - content: 'public sealed class ConstantFP : ConstantData, IEquatable' - content.vb: Public NotInheritable Class ConstantFP Inherits ConstantData Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantFP.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.ConstantFP.Value - commentId: P:Ubiquity.NET.Llvm.Values.ConstantFP.Value - id: Value - parent: Ubiquity.NET.Llvm.Values.ConstantFP - langs: - - csharp - - vb - name: Value - nameWithType: ConstantFP.Value - fullName: Ubiquity.NET.Llvm.Values.ConstantFP.Value - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantFP.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Value - path: ../src/Ubiquity.NET.Llvm/Values/ConstantFP.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the value of the constant, possibly losing precision - example: [] - syntax: - content: public double Value { get; } - parameters: [] - return: - type: System.Double - content.vb: Public ReadOnly Property Value As Double - overload: Ubiquity.NET.Llvm.Values.ConstantFP.Value* -- uid: Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss(System.Boolean@) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss(System.Boolean@) - id: GetValueWithLoss(System.Boolean@) - parent: Ubiquity.NET.Llvm.Values.ConstantFP - langs: - - csharp - - vb - name: GetValueWithLoss(out bool) - nameWithType: ConstantFP.GetValueWithLoss(out bool) - fullName: Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss(out bool) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantFP.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetValueWithLoss - path: ../src/Ubiquity.NET.Llvm/Values/ConstantFP.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the value of the constant, possibly losing precision - remarks: >- - Loss can occur when getting a target specific high resolution value, - - such as an 80bit Floating point value. - example: [] - syntax: - content: public double GetValueWithLoss(out bool loosesInfo) - parameters: - - id: loosesInfo - type: System.Boolean - description: flag indicating if precision is lost - return: - type: System.Double - description: The value of the constant - content.vb: Public Function GetValueWithLoss(loosesInfo As Boolean) As Double - overload: Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss* - nameWithType.vb: ConstantFP.GetValueWithLoss(Boolean) - fullName.vb: Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss(Boolean) - name.vb: GetValueWithLoss(Boolean) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantFP.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantFP, string) - nameWithType: ValueExtensions.RegisterName(ConstantFP, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantFP, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantFP)(ConstantFP, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantFP)(Ubiquity.NET.Llvm.Values.ConstantFP, String) - name.vb: RegisterName(Of ConstantFP)(ConstantFP, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantFP,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantFP - name: ConstantFP - href: Ubiquity.NET.Llvm.Values.ConstantFP.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantFP - name: ConstantFP - href: Ubiquity.NET.Llvm.Values.ConstantFP.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantFP,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantFP - name: ConstantFP - href: Ubiquity.NET.Llvm.Values.ConstantFP.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantFP - name: ConstantFP - href: Ubiquity.NET.Llvm.Values.ConstantFP.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.ConstantFP.Value* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantFP.Value - href: Ubiquity.NET.Llvm.Values.ConstantFP.html#Ubiquity_NET_Llvm_Values_ConstantFP_Value - name: Value - nameWithType: ConstantFP.Value - fullName: Ubiquity.NET.Llvm.Values.ConstantFP.Value -- uid: System.Double - commentId: T:System.Double - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.double - name: double - nameWithType: double - fullName: double - nameWithType.vb: Double - fullName.vb: Double - name.vb: Double -- uid: Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss - href: Ubiquity.NET.Llvm.Values.ConstantFP.html#Ubiquity_NET_Llvm_Values_ConstantFP_GetValueWithLoss_System_Boolean__ - name: GetValueWithLoss - nameWithType: ConstantFP.GetValueWithLoss - fullName: Ubiquity.NET.Llvm.Values.ConstantFP.GetValueWithLoss -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantInt.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantInt.yml deleted file mode 100644 index eb9304f678..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantInt.yml +++ /dev/null @@ -1,926 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantInt - commentId: T:Ubiquity.NET.Llvm.Values.ConstantInt - id: ConstantInt - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth - - Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue - - Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue - langs: - - csharp - - vb - name: ConstantInt - nameWithType: ConstantInt - fullName: Ubiquity.NET.Llvm.Values.ConstantInt - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantInt.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantInt - path: ../src/Ubiquity.NET.Llvm/Values/ConstantInt.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Represents an arbitrary bit width integer constant in LLVM - remarks: >- - Note - for integers, in LLVM, signed or unsigned is not part of the type of - - the integer. The distinction between them is determined entirely by the - - instructions used on the integer values. - example: [] - syntax: - content: 'public sealed class ConstantInt : ConstantData, IEquatable' - content.vb: Public NotInheritable Class ConstantInt Inherits ConstantData Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantInt.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth - commentId: P:Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth - id: BitWidth - parent: Ubiquity.NET.Llvm.Values.ConstantInt - langs: - - csharp - - vb - name: BitWidth - nameWithType: ConstantInt.BitWidth - fullName: Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantInt.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BitWidth - path: ../src/Ubiquity.NET.Llvm/Values/ConstantInt.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the number of bits in this integer constant - example: [] - syntax: - content: public uint BitWidth { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property BitWidth As UInteger - overload: Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth* -- uid: Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue - commentId: P:Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue - id: ZeroExtendedValue - parent: Ubiquity.NET.Llvm.Values.ConstantInt - langs: - - csharp - - vb - name: ZeroExtendedValue - nameWithType: ConstantInt.ZeroExtendedValue - fullName: Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantInt.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ZeroExtendedValue - path: ../src/Ubiquity.NET.Llvm/Values/ConstantInt.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the value of the constant zero extended to a 64 bit value - example: [] - syntax: - content: public ulong ZeroExtendedValue { get; } - parameters: [] - return: - type: System.UInt64 - content.vb: Public ReadOnly Property ZeroExtendedValue As ULong - overload: Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue* - exceptions: - - type: System.InvalidOperationException - commentId: T:System.InvalidOperationException - description: If is greater than 64 bits -- uid: Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue - commentId: P:Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue - id: SignExtendedValue - parent: Ubiquity.NET.Llvm.Values.ConstantInt - langs: - - csharp - - vb - name: SignExtendedValue - nameWithType: ConstantInt.SignExtendedValue - fullName: Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantInt.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SignExtendedValue - path: ../src/Ubiquity.NET.Llvm/Values/ConstantInt.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the value of the constant sign extended to a 64 bit value - example: [] - syntax: - content: public long SignExtendedValue { get; } - parameters: [] - return: - type: System.Int64 - content.vb: Public ReadOnly Property SignExtendedValue As Long - overload: Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue* - exceptions: - - type: System.InvalidOperationException - commentId: T:System.InvalidOperationException - description: If is greater than 64 bits -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantInt.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantInt, string) - nameWithType: ValueExtensions.RegisterName(ConstantInt, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantInt, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantInt)(ConstantInt, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantInt)(Ubiquity.NET.Llvm.Values.ConstantInt, String) - name.vb: RegisterName(Of ConstantInt)(ConstantInt, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantInt,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantInt - name: ConstantInt - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantInt - name: ConstantInt - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantInt,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantInt - name: ConstantInt - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantInt - name: ConstantInt - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth - href: Ubiquity.NET.Llvm.Values.ConstantInt.html#Ubiquity_NET_Llvm_Values_ConstantInt_BitWidth - name: BitWidth - nameWithType: ConstantInt.BitWidth - fullName: Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth - commentId: P:Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth - href: Ubiquity.NET.Llvm.Values.ConstantInt.html#Ubiquity_NET_Llvm_Values_ConstantInt_BitWidth - name: BitWidth - nameWithType: ConstantInt.BitWidth - fullName: Ubiquity.NET.Llvm.Values.ConstantInt.BitWidth -- uid: System.InvalidOperationException - commentId: T:System.InvalidOperationException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception - name: InvalidOperationException - nameWithType: InvalidOperationException - fullName: System.InvalidOperationException -- uid: Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue - href: Ubiquity.NET.Llvm.Values.ConstantInt.html#Ubiquity_NET_Llvm_Values_ConstantInt_ZeroExtendedValue - name: ZeroExtendedValue - nameWithType: ConstantInt.ZeroExtendedValue - fullName: Ubiquity.NET.Llvm.Values.ConstantInt.ZeroExtendedValue -- uid: System.UInt64 - commentId: T:System.UInt64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint64 - name: ulong - nameWithType: ulong - fullName: ulong - nameWithType.vb: ULong - fullName.vb: ULong - name.vb: ULong -- uid: Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue - href: Ubiquity.NET.Llvm.Values.ConstantInt.html#Ubiquity_NET_Llvm_Values_ConstantInt_SignExtendedValue - name: SignExtendedValue - nameWithType: ConstantInt.SignExtendedValue - fullName: Ubiquity.NET.Llvm.Values.ConstantInt.SignExtendedValue -- uid: System.Int64 - commentId: T:System.Int64 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int64 - name: long - nameWithType: long - fullName: long - nameWithType.vb: Long - fullName.vb: Long - name.vb: Long diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantPointerNull.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantPointerNull.yml deleted file mode 100644 index ad1879af93..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantPointerNull.yml +++ /dev/null @@ -1,846 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull - commentId: T:Ubiquity.NET.Llvm.Values.ConstantPointerNull - id: ConstantPointerNull - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.ConstantPointerNull.From(Ubiquity.NET.Llvm.Types.ITypeRef) - langs: - - csharp - - vb - name: ConstantPointerNull - nameWithType: ConstantPointerNull - fullName: Ubiquity.NET.Llvm.Values.ConstantPointerNull - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantPointerNull.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantPointerNull - path: ../src/Ubiquity.NET.Llvm/Values/ConstantPointerNull.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Represents a constant Null pointer - example: [] - syntax: - content: 'public sealed class ConstantPointerNull : ConstantData, IEquatable' - content.vb: Public NotInheritable Class ConstantPointerNull Inherits ConstantData Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantPointerNull.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull.From(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.ConstantPointerNull.From(Ubiquity.NET.Llvm.Types.ITypeRef) - id: From(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.ConstantPointerNull - langs: - - csharp - - vb - name: From(ITypeRef) - nameWithType: ConstantPointerNull.From(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.ConstantPointerNull.From(Ubiquity.NET.Llvm.Types.ITypeRef) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantPointerNull.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: From - path: ../src/Ubiquity.NET.Llvm/Values/ConstantPointerNull.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Creates a constant null pointer to a given type - example: [] - syntax: - content: public static ConstantPointerNull From(ITypeRef type) - parameters: - - id: type - type: Ubiquity.NET.Llvm.Types.ITypeRef - description: Type of the pointer - return: - type: Ubiquity.NET.Llvm.Values.ConstantPointerNull - description: Constant null value of the specified type - content.vb: Public Shared Function From(type As ITypeRef) As ConstantPointerNull - overload: Ubiquity.NET.Llvm.Values.ConstantPointerNull.From* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantPointerNull, string) - nameWithType: ValueExtensions.RegisterName(ConstantPointerNull, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantPointerNull, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantPointerNull)(ConstantPointerNull, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantPointerNull)(Ubiquity.NET.Llvm.Values.ConstantPointerNull, String) - name.vb: RegisterName(Of ConstantPointerNull)(ConstantPointerNull, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantPointerNull,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull - name: ConstantPointerNull - href: Ubiquity.NET.Llvm.Values.ConstantPointerNull.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull - name: ConstantPointerNull - href: Ubiquity.NET.Llvm.Values.ConstantPointerNull.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantPointerNull,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull - name: ConstantPointerNull - href: Ubiquity.NET.Llvm.Values.ConstantPointerNull.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull - name: ConstantPointerNull - href: Ubiquity.NET.Llvm.Values.ConstantPointerNull.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull.From* - commentId: Overload:Ubiquity.NET.Llvm.Values.ConstantPointerNull.From - href: Ubiquity.NET.Llvm.Values.ConstantPointerNull.html#Ubiquity_NET_Llvm_Values_ConstantPointerNull_From_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: From - nameWithType: ConstantPointerNull.From - fullName: Ubiquity.NET.Llvm.Values.ConstantPointerNull.From -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull - commentId: T:Ubiquity.NET.Llvm.Values.ConstantPointerNull - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantPointerNull.html - name: ConstantPointerNull - nameWithType: ConstantPointerNull - fullName: Ubiquity.NET.Llvm.Values.ConstantPointerNull -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantStruct.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantStruct.yml deleted file mode 100644 index 6cb5915003..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantStruct.yml +++ /dev/null @@ -1,752 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantStruct - commentId: T:Ubiquity.NET.Llvm.Values.ConstantStruct - id: ConstantStruct - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: ConstantStruct - nameWithType: ConstantStruct - fullName: Ubiquity.NET.Llvm.Values.ConstantStruct - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantStruct.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantStruct - path: ../src/Ubiquity.NET.Llvm/Values/ConstantStruct.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Constant Structure - example: [] - syntax: - content: 'public sealed class ConstantStruct : ConstantAggregate, IEquatable' - content.vb: Public NotInheritable Class ConstantStruct Inherits ConstantAggregate Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantAggregate - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantStruct.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - commentId: T:Ubiquity.NET.Llvm.Values.ConstantAggregate - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantAggregate.html - name: ConstantAggregate - nameWithType: ConstantAggregate - fullName: Ubiquity.NET.Llvm.Values.ConstantAggregate -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantStruct.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantStruct, string) - nameWithType: ValueExtensions.RegisterName(ConstantStruct, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantStruct, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantStruct)(ConstantStruct, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantStruct)(Ubiquity.NET.Llvm.Values.ConstantStruct, String) - name.vb: RegisterName(Of ConstantStruct)(ConstantStruct, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantStruct,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantStruct - name: ConstantStruct - href: Ubiquity.NET.Llvm.Values.ConstantStruct.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantStruct - name: ConstantStruct - href: Ubiquity.NET.Llvm.Values.ConstantStruct.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantStruct,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantStruct - name: ConstantStruct - href: Ubiquity.NET.Llvm.Values.ConstantStruct.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantStruct - name: ConstantStruct - href: Ubiquity.NET.Llvm.Values.ConstantStruct.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantTokenNone.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantTokenNone.yml deleted file mode 100644 index f18086b2c2..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantTokenNone.yml +++ /dev/null @@ -1,777 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantTokenNone - commentId: T:Ubiquity.NET.Llvm.Values.ConstantTokenNone - id: ConstantTokenNone - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: ConstantTokenNone - nameWithType: ConstantTokenNone - fullName: Ubiquity.NET.Llvm.Values.ConstantTokenNone - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantTokenNone.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantTokenNone - path: ../src/Ubiquity.NET.Llvm/Values/ConstantTokenNone.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Constant token that is empty - example: [] - syntax: - content: 'public class ConstantTokenNone : ConstantData, IEquatable' - content.vb: Public Class ConstantTokenNone Inherits ConstantData Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantTokenNone.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantTokenNone.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantTokenNone, string) - nameWithType: ValueExtensions.RegisterName(ConstantTokenNone, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantTokenNone, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantTokenNone)(ConstantTokenNone, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantTokenNone)(Ubiquity.NET.Llvm.Values.ConstantTokenNone, String) - name.vb: RegisterName(Of ConstantTokenNone)(ConstantTokenNone, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantTokenNone,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantTokenNone - name: ConstantTokenNone - href: Ubiquity.NET.Llvm.Values.ConstantTokenNone.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantTokenNone - name: ConstantTokenNone - href: Ubiquity.NET.Llvm.Values.ConstantTokenNone.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantTokenNone,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantTokenNone - name: ConstantTokenNone - href: Ubiquity.NET.Llvm.Values.ConstantTokenNone.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantTokenNone - name: ConstantTokenNone - href: Ubiquity.NET.Llvm.Values.ConstantTokenNone.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantVector.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantVector.yml deleted file mode 100644 index acdbeb4e79..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ConstantVector.yml +++ /dev/null @@ -1,752 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ConstantVector - commentId: T:Ubiquity.NET.Llvm.Values.ConstantVector - id: ConstantVector - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: ConstantVector - nameWithType: ConstantVector - fullName: Ubiquity.NET.Llvm.Values.ConstantVector - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ConstantVector.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ConstantVector - path: ../src/Ubiquity.NET.Llvm/Values/ConstantVector.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Vector of constant values - example: [] - syntax: - content: 'public sealed class ConstantVector : ConstantAggregate, IEquatable' - content.vb: Public NotInheritable Class ConstantVector Inherits ConstantAggregate Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantAggregate - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.ConstantVector.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - commentId: T:Ubiquity.NET.Llvm.Values.ConstantAggregate - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantAggregate.html - name: ConstantAggregate - nameWithType: ConstantAggregate - fullName: Ubiquity.NET.Llvm.Values.ConstantAggregate -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ConstantVector.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(ConstantVector, string) - nameWithType: ValueExtensions.RegisterName(ConstantVector, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.ConstantVector, string) - nameWithType.vb: ValueExtensions.RegisterName(Of ConstantVector)(ConstantVector, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.ConstantVector)(Ubiquity.NET.Llvm.Values.ConstantVector, String) - name.vb: RegisterName(Of ConstantVector)(ConstantVector, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantVector,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.ConstantVector - name: ConstantVector - href: Ubiquity.NET.Llvm.Values.ConstantVector.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantVector - name: ConstantVector - href: Ubiquity.NET.Llvm.Values.ConstantVector.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.ConstantVector,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.ConstantVector - name: ConstantVector - href: Ubiquity.NET.Llvm.Values.ConstantVector.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.ConstantVector - name: ConstantVector - href: Ubiquity.NET.Llvm.Values.ConstantVector.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Function.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Function.yml deleted file mode 100644 index aaeea1294d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Function.yml +++ /dev/null @@ -1,4580 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - id: Function - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(System.String) - - Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Values.Function.Attributes - - Ubiquity.NET.Llvm.Values.Function.BasicBlocks - - Ubiquity.NET.Llvm.Values.Function.CallingConvention - - Ubiquity.NET.Llvm.Values.Function.DISubProgram - - Ubiquity.NET.Llvm.Values.Function.EntryBlock - - Ubiquity.NET.Llvm.Values.Function.EraseFromParent - - Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock(System.String) - - Ubiquity.NET.Llvm.Values.Function.GcName - - Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock(System.String,Ubiquity.NET.Llvm.Values.BasicBlock) - - Ubiquity.NET.Llvm.Values.Function.IntrinsicId - - Ubiquity.NET.Llvm.Values.Function.IsVarArg - - Ubiquity.NET.Llvm.Values.Function.Parameters - - Ubiquity.NET.Llvm.Values.Function.PersonalityFunction - - Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock(System.String) - - Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.Function.ReturnType - - Ubiquity.NET.Llvm.Values.Function.Signature - - Ubiquity.NET.Llvm.Values.Function.TryRunPasses(System.String[]) - - Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - - Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - - Ubiquity.NET.Llvm.Values.Function.Verify - - Ubiquity.NET.Llvm.Values.Function.Verify(System.String@) - langs: - - csharp - - vb - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Function - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 200 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: LLVM Function definition - example: [] - syntax: - content: 'public class Function : GlobalObject, IEquatable, IAttributeAccessor, IAttributeContainer' - content.vb: Public Class [Function] Inherits GlobalObject Implements IEquatable(Of Value), IAttributeAccessor, IAttributeContainer - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.GlobalValue - - Ubiquity.NET.Llvm.Values.GlobalObject - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - - Ubiquity.NET.Llvm.Values.GlobalObject.Section - - Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - - Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - - Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - - Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - - Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - - Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - - Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - - Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - - Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(System.UInt32) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String,Ubiquity.NET.Llvm.ComdatKind) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(System.String) -- uid: Ubiquity.NET.Llvm.Values.Function.Signature - commentId: P:Ubiquity.NET.Llvm.Values.Function.Signature - id: Signature - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: Signature - nameWithType: Function.Signature - fullName: Ubiquity.NET.Llvm.Values.Function.Signature - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Signature - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 205 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the signature type of the function - example: [] - syntax: - content: public IFunctionType Signature { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.IFunctionType - content.vb: Public ReadOnly Property Signature As IFunctionType - overload: Ubiquity.NET.Llvm.Values.Function.Signature* -- uid: Ubiquity.NET.Llvm.Values.Function.EntryBlock - commentId: P:Ubiquity.NET.Llvm.Values.Function.EntryBlock - id: EntryBlock - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: EntryBlock - nameWithType: Function.EntryBlock - fullName: Ubiquity.NET.Llvm.Values.Function.EntryBlock - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EntryBlock - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 208 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the Entry block for this function - example: [] - syntax: - content: public BasicBlock? EntryBlock { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - content.vb: Public ReadOnly Property EntryBlock As BasicBlock - overload: Ubiquity.NET.Llvm.Values.Function.EntryBlock* -- uid: Ubiquity.NET.Llvm.Values.Function.BasicBlocks - commentId: P:Ubiquity.NET.Llvm.Values.Function.BasicBlocks - id: BasicBlocks - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: BasicBlocks - nameWithType: Function.BasicBlocks - fullName: Ubiquity.NET.Llvm.Values.Function.BasicBlocks - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: BasicBlocks - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 212 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the basic blocks for the function - example: [] - syntax: - content: public ICollection BasicBlocks { get; } - parameters: [] - return: - type: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.BasicBlock} - content.vb: Public ReadOnly Property BasicBlocks As ICollection(Of BasicBlock) - overload: Ubiquity.NET.Llvm.Values.Function.BasicBlocks* -- uid: Ubiquity.NET.Llvm.Values.Function.Parameters - commentId: P:Ubiquity.NET.Llvm.Values.Function.Parameters - id: Parameters - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: Parameters - nameWithType: Function.Parameters - fullName: Ubiquity.NET.Llvm.Values.Function.Parameters - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Parameters - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 215 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the parameters for the function including any method definition specific attributes (i.e. ByVal) - example: [] - syntax: - content: public IReadOnlyList Parameters { get; } - parameters: [] - return: - type: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Argument} - content.vb: Public ReadOnly Property Parameters As IReadOnlyList(Of Argument) - overload: Ubiquity.NET.Llvm.Values.Function.Parameters* -- uid: Ubiquity.NET.Llvm.Values.Function.CallingConvention - commentId: P:Ubiquity.NET.Llvm.Values.Function.CallingConvention - id: CallingConvention - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: CallingConvention - nameWithType: Function.CallingConvention - fullName: Ubiquity.NET.Llvm.Values.Function.CallingConvention - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CallingConvention - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 218 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the Calling convention for the method - example: [] - syntax: - content: public CallingConvention CallingConvention { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.CallingConvention - content.vb: Public Property CallingConvention As CallingConvention - overload: Ubiquity.NET.Llvm.Values.Function.CallingConvention* -- uid: Ubiquity.NET.Llvm.Values.Function.IntrinsicId - commentId: P:Ubiquity.NET.Llvm.Values.Function.IntrinsicId - id: IntrinsicId - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: IntrinsicId - nameWithType: Function.IntrinsicId - fullName: Ubiquity.NET.Llvm.Values.Function.IntrinsicId - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IntrinsicId - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 225 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the LLVM intrinsicID for the method - example: [] - syntax: - content: public uint IntrinsicId { get; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public ReadOnly Property IntrinsicId As UInteger - overload: Ubiquity.NET.Llvm.Values.Function.IntrinsicId* -- uid: Ubiquity.NET.Llvm.Values.Function.IsVarArg - commentId: P:Ubiquity.NET.Llvm.Values.Function.IsVarArg - id: IsVarArg - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: IsVarArg - nameWithType: Function.IsVarArg - fullName: Ubiquity.NET.Llvm.Values.Function.IsVarArg - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsVarArg - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 228 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the method signature accepts variable arguments - example: [] - syntax: - content: public bool IsVarArg { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsVarArg As Boolean - overload: Ubiquity.NET.Llvm.Values.Function.IsVarArg* -- uid: Ubiquity.NET.Llvm.Values.Function.ReturnType - commentId: P:Ubiquity.NET.Llvm.Values.Function.ReturnType - id: ReturnType - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: ReturnType - nameWithType: Function.ReturnType - fullName: Ubiquity.NET.Llvm.Values.Function.ReturnType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReturnType - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 231 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the return type of the function - example: [] - syntax: - content: public ITypeRef ReturnType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property ReturnType As ITypeRef - overload: Ubiquity.NET.Llvm.Values.Function.ReturnType* -- uid: Ubiquity.NET.Llvm.Values.Function.PersonalityFunction - commentId: P:Ubiquity.NET.Llvm.Values.Function.PersonalityFunction - id: PersonalityFunction - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: PersonalityFunction - nameWithType: Function.PersonalityFunction - fullName: Ubiquity.NET.Llvm.Values.Function.PersonalityFunction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PersonalityFunction - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 234 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the personality function for exception handling in this function - example: [] - syntax: - content: public Function? PersonalityFunction { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Function - content.vb: Public Property PersonalityFunction As [Function] - overload: Ubiquity.NET.Llvm.Values.Function.PersonalityFunction* -- uid: Ubiquity.NET.Llvm.Values.Function.DISubProgram - commentId: P:Ubiquity.NET.Llvm.Values.Function.DISubProgram - id: DISubProgram - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: DISubProgram - nameWithType: Function.DISubProgram - fullName: Ubiquity.NET.Llvm.Values.Function.DISubProgram - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DISubProgram - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 242 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the debug information for this function - example: [] - syntax: - content: public DISubProgram? DISubProgram { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - content.vb: Public Property DISubProgram As DISubProgram - overload: Ubiquity.NET.Llvm.Values.Function.DISubProgram* -- uid: Ubiquity.NET.Llvm.Values.Function.GcName - commentId: P:Ubiquity.NET.Llvm.Values.Function.GcName - id: GcName - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: GcName - nameWithType: Function.GcName - fullName: Ubiquity.NET.Llvm.Values.Function.GcName - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GcName - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 255 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the Garbage collection engine name that this function is generated to work with - example: [] - syntax: - content: public string GcName { get; set; } - parameters: [] - return: - type: System.String - content.vb: Public Property GcName As String - overload: Ubiquity.NET.Llvm.Values.Function.GcName* - seealso: - - linkType: HRef - linkId: xref:llvm_docs_garbagecollection - altText: Garbage Collection with LLVM -- uid: Ubiquity.NET.Llvm.Values.Function.Attributes - commentId: P:Ubiquity.NET.Llvm.Values.Function.Attributes - id: Attributes - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: Attributes - nameWithType: Function.Attributes - fullName: Ubiquity.NET.Llvm.Values.Function.Attributes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Attributes - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 262 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the attributes for this function - example: [] - syntax: - content: public IAttributeDictionary Attributes { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.IAttributeDictionary - content.vb: Public ReadOnly Property Attributes As IAttributeDictionary - overload: Ubiquity.NET.Llvm.Values.Function.Attributes* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Values.Function.Verify - commentId: M:Ubiquity.NET.Llvm.Values.Function.Verify - id: Verify - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: Verify() - nameWithType: Function.Verify() - fullName: Ubiquity.NET.Llvm.Values.Function.Verify() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Verify - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 265 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Verifies the function is valid and all blocks properly terminated - example: [] - syntax: - content: public void Verify() - content.vb: Public Sub Verify() - overload: Ubiquity.NET.Llvm.Values.Function.Verify* -- uid: Ubiquity.NET.Llvm.Values.Function.Verify(System.String@) - commentId: M:Ubiquity.NET.Llvm.Values.Function.Verify(System.String@) - id: Verify(System.String@) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: Verify(out string) - nameWithType: Function.Verify(out string) - fullName: Ubiquity.NET.Llvm.Values.Function.Verify(out string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Verify - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 276 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Verifies the function without throwing an exception - example: [] - syntax: - content: public bool Verify(out string errMsg) - parameters: - - id: errMsg - type: System.String - description: Error message if any, or if no errors detected - return: - type: System.Boolean - description: true if no errors found - content.vb: Public Function Verify(errMsg As String) As Boolean - overload: Ubiquity.NET.Llvm.Values.Function.Verify* - nameWithType.vb: Function.Verify(String) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.Verify(String) - name.vb: Verify(String) -- uid: Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock(System.String) - id: PrependBasicBlock(System.String) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: PrependBasicBlock(string) - nameWithType: Function.PrependBasicBlock(string) - fullName: Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PrependBasicBlock - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 284 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Add a new basic block to the beginning of a function - example: [] - syntax: - content: public BasicBlock PrependBasicBlock(string name) - parameters: - - id: name - type: System.String - description: Name (label) for the block - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: created and inserted at the beginning of the function - content.vb: Public Function PrependBasicBlock(name As String) As BasicBlock - overload: Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock* - nameWithType.vb: Function.PrependBasicBlock(String) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock(String) - name.vb: PrependBasicBlock(String) -- uid: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - id: AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: AppendBasicBlock(BasicBlock) - nameWithType: Function.AppendBasicBlock(BasicBlock) - fullName: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AppendBasicBlock - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 303 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Appends a new basic block to a function - example: [] - syntax: - content: public void AppendBasicBlock(BasicBlock block) - parameters: - - id: block - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Existing block to append to the function's list of blocks - content.vb: Public Sub AppendBasicBlock(block As BasicBlock) - overload: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock* -- uid: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(System.String) - id: AppendBasicBlock(System.String) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: AppendBasicBlock(string) - nameWithType: Function.AppendBasicBlock(string) - fullName: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AppendBasicBlock - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 312 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Creates an appends a new basic block to a function - example: [] - syntax: - content: public BasicBlock AppendBasicBlock(string name) - parameters: - - id: name - type: System.String - description: Name (label) of the block - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: created and inserted onto the end of the function - content.vb: Public Function AppendBasicBlock(name As String) As BasicBlock - overload: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock* - nameWithType.vb: Function.AppendBasicBlock(String) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock(String) - name.vb: AppendBasicBlock(String) -- uid: Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock(System.String,Ubiquity.NET.Llvm.Values.BasicBlock) - commentId: M:Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock(System.String,Ubiquity.NET.Llvm.Values.BasicBlock) - id: InsertBasicBlock(System.String,Ubiquity.NET.Llvm.Values.BasicBlock) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: InsertBasicBlock(string, BasicBlock) - nameWithType: Function.InsertBasicBlock(string, BasicBlock) - fullName: Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock(string, Ubiquity.NET.Llvm.Values.BasicBlock) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InsertBasicBlock - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 323 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Inserts a basic block before another block in the function - example: [] - syntax: - content: public BasicBlock InsertBasicBlock(string name, BasicBlock insertBefore) - parameters: - - id: name - type: System.String - description: Name of the block - - id: insertBefore - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: Block to insert the new block before - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: New inserted - content.vb: Public Function InsertBasicBlock(name As String, insertBefore As BasicBlock) As BasicBlock - overload: Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock* - exceptions: - - type: System.ArgumentException - commentId: T:System.ArgumentException - description: insertBefore belongs to a different function - nameWithType.vb: Function.InsertBasicBlock(String, BasicBlock) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock(String, Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: InsertBasicBlock(String, BasicBlock) -- uid: Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock(System.String) - id: FindOrCreateNamedBlock(System.String) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: FindOrCreateNamedBlock(string) - nameWithType: Function.FindOrCreateNamedBlock(string) - fullName: Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock(string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FindOrCreateNamedBlock - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 342 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Retrieves or creates block by name - remarks: >- - This method tries to find a block by it's name and returns it if found, if not found a new block is - - created and appended to the current function. - example: [] - syntax: - content: public BasicBlock FindOrCreateNamedBlock(string name) - parameters: - - id: name - type: System.String - description: Block name (label) to look for or create - return: - type: Ubiquity.NET.Llvm.Values.BasicBlock - description: If the block was created it is appended to the end of function - content.vb: Public Function FindOrCreateNamedBlock(name As String) As BasicBlock - overload: Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock* - nameWithType.vb: Function.FindOrCreateNamedBlock(String) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock(String) - name.vb: FindOrCreateNamedBlock(String) -- uid: Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - id: AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: Function.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 348 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds an at a specified index - example: [] - syntax: - content: public void AddAttributeAtIndex(FunctionAttributeIndex index, AttributeValue attrib) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: attrib - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: Attribute to add - content.vb: Public Sub AddAttributeAtIndex(index As FunctionAttributeIndex, attrib As AttributeValue) - overload: Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) -- uid: Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: Function.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeCountAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 356 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the count of attributes on a given index - example: [] - syntax: - content: public uint GetAttributeCountAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the count for - return: - type: System.UInt32 - description: Number of attributes on the specified index - content.vb: Public Function GetAttributeCountAtIndex(index As FunctionAttributeIndex) As UInteger - overload: Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) -- uid: Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: Function.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributesAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 362 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the attributes on a given index - example: [] - syntax: - content: public IEnumerable GetAttributesAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: index to get the attributes for - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Attributes for the index - content.vb: Public Function GetAttributesAtIndex(index As FunctionAttributeIndex) As IEnumerable(Of AttributeValue) - overload: Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) -- uid: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: Function.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 377 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a specific attribute at a given index - example: [] - syntax: - content: public AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Public Function GetAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) As AttributeValue - overload: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: Function.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 384 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a named attribute at a given index - example: [] - syntax: - content: public AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: name - type: System.String - description: name of the attribute to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Public Function GetAttributeAtIndex(index As FunctionAttributeIndex, name As String) As AttributeValue - overload: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - nameWithType.vb: Function.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) -- uid: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: Function.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 396 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes an at a specified index - example: [] - syntax: - content: public void RemoveAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Attribute to Remove - content.vb: Public Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) - overload: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: Function.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 402 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes a named attribute at a specified index - example: [] - syntax: - content: public void RemoveAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: name - type: System.String - description: Name of the attribute to remove - content.vb: Public Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, name As String) - overload: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex* - implements: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - nameWithType.vb: Function.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) -- uid: Ubiquity.NET.Llvm.Values.Function.EraseFromParent - commentId: M:Ubiquity.NET.Llvm.Values.Function.EraseFromParent - id: EraseFromParent - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: EraseFromParent() - nameWithType: Function.EraseFromParent() - fullName: Ubiquity.NET.Llvm.Values.Function.EraseFromParent() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: EraseFromParent - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 413 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes this function from the parent module - example: [] - syntax: - content: public void EraseFromParent() - content.vb: Public Sub EraseFromParent() - overload: Ubiquity.NET.Llvm.Values.Function.EraseFromParent* -- uid: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(System.String[]) - commentId: M:Ubiquity.NET.Llvm.Values.Function.TryRunPasses(System.String[]) - id: TryRunPasses(System.String[]) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: TryRunPasses(params string[]) - nameWithType: Function.TryRunPasses(params string[]) - fullName: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 431 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this function. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: public ErrorInfo TryRunPasses(params string[] passes) - parameters: - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Public Function TryRunPasses(ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.Values.Function.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - nameWithType.vb: Function.TryRunPasses(ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(ParamArray String()) - name.vb: TryRunPasses(ParamArray String()) -- uid: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - commentId: M:Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - id: TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: TryRunPasses(PassBuilderOptions, params string[]) - nameWithType: Function.TryRunPasses(PassBuilderOptions, params string[]) - fullName: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions, params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 439 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this function. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: public ErrorInfo TryRunPasses(PassBuilderOptions options, params string[] passes) - parameters: - - id: options - type: Ubiquity.NET.Llvm.PassBuilderOptions - description: Options for the passes - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Public Function TryRunPasses(options As PassBuilderOptions, ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.Values.Function.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - nameWithType.vb: Function.TryRunPasses(PassBuilderOptions, ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.PassBuilderOptions, ParamArray String()) - name.vb: TryRunPasses(PassBuilderOptions, ParamArray String()) -- uid: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - commentId: M:Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - id: TryRunPasses(Ubiquity.NET.Llvm.TargetMachine,Ubiquity.NET.Llvm.PassBuilderOptions,System.String[]) - parent: Ubiquity.NET.Llvm.Values.Function - langs: - - csharp - - vb - name: TryRunPasses(TargetMachine, PassBuilderOptions, params string[]) - nameWithType: Function.TryRunPasses(TargetMachine, PassBuilderOptions, params string[]) - fullName: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine, Ubiquity.NET.Llvm.PassBuilderOptions, params string[]) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Function.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: TryRunPasses - path: ../src/Ubiquity.NET.Llvm/Values/Function.cs - startLine: 456 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Tries running the specified passes on this function - remarks: >- - This will try to run all the passes specified against this function. The return value contains - - the results and, if an error occurred, any error message text for the error. - -
information

- - The `try` semantics apply to the actual LLVM call only, normal parameter checks are performed - - and may produce an exception. - -

- example: [] - syntax: - content: public ErrorInfo TryRunPasses(TargetMachine targetMachine, PassBuilderOptions options, params string[] passes) - parameters: - - id: targetMachine - type: Ubiquity.NET.Llvm.TargetMachine - description: Target machine for the passes - - id: options - type: Ubiquity.NET.Llvm.PassBuilderOptions - description: Options for the passes - - id: passes - type: System.String[] - description: Set of passes to run [Must contain at least one pass] - return: - type: Ubiquity.NET.Llvm.ErrorInfo - description: Error containing result - content.vb: Public Function TryRunPasses(targetMachine As TargetMachine, options As PassBuilderOptions, ParamArray passes As String()) As ErrorInfo - overload: Ubiquity.NET.Llvm.Values.Function.TryRunPasses* - exceptions: - - type: System.ArgumentNullException - commentId: T:System.ArgumentNullException - description: One of the arguments provided was null (see exception details for name of the parameter) - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: If passes has less than one pass. At least one is required - nameWithType.vb: Function.TryRunPasses(TargetMachine, PassBuilderOptions, ParamArray String()) - fullName.vb: Ubiquity.NET.Llvm.Values.Function.TryRunPasses(Ubiquity.NET.Llvm.TargetMachine, Ubiquity.NET.Llvm.PassBuilderOptions, ParamArray String()) - name.vb: TryRunPasses(TargetMachine, PassBuilderOptions, ParamArray String()) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.Values.GlobalObject - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObject - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - name: GlobalObject - nameWithType: GlobalObject - fullName: Ubiquity.NET.Llvm.Values.GlobalObject -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Alignment - name: Alignment - nameWithType: GlobalObject.Alignment - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Section - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Section - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Section - name: Section - nameWithType: GlobalObject.Section - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Section -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Comdat - name: Comdat - nameWithType: GlobalObject.Comdat - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Values.GlobalObject - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_SetMetadata_System_UInt32_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: SetMetadata(uint, IrMetadata) - nameWithType: GlobalObject.SetMetadata(uint, IrMetadata) - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(uint, Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: GlobalObject.SetMetadata(UInteger, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(UInteger, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: SetMetadata(UInteger, IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: SetMetadata - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_SetMetadata_System_UInt32_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: SetMetadata - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_SetMetadata_System_UInt32_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Metadata - name: Metadata - nameWithType: GlobalObject.Metadata - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Visibility - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Linkage - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_UnnamedAddress - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_IsDeclaration - name: IsDeclaration - nameWithType: GlobalValue.IsDeclaration - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ValueType - name: ValueType - nameWithType: GlobalValue.ValueType - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(Function, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(Function, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of Function)(Function, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of Function)(Function, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(Function, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(Function, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of Function)(Function, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of Function)(Function, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(Function, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(Function, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Function)(Function, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of Function)(Function, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(Function, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(Function, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Function)(Function, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of Function)(Function, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(Function, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(Function, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Function)(Function, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of Function)(Function, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(Function, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(Function, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of Function)(Function, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of Function)(Function, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(Function, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(Function, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of Function)(Function, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of Function)(Function, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(Function, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(Function, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of Function)(Function, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of Function)(Function, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(Function, Linkage) - nameWithType: GlobalValueExtensions.Linkage(Function, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of Function)(Function, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of Function)(Function, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(Function, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(Function, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of Function)(Function, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of Function)(Function, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(Function, Visibility) - nameWithType: GlobalValueExtensions.Visibility(Function, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of Function)(Function, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of Function)(Function, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Function,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Function, string) - nameWithType: ValueExtensions.RegisterName(Function, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.Function, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Function)(Function, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.Function)(Ubiquity.NET.Llvm.Values.Function, String) - name.vb: RegisterName(Of Function)(Function, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.Function,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.Function,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - href: Ubiquity.NET.Llvm.Values.Function.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - name: Alignment(GlobalObject, uint) - nameWithType: GlobalObjectExtensions.Alignment(GlobalObject, uint) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, uint) - nameWithType.vb: GlobalObjectExtensions.Alignment(GlobalObject, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, UInteger) - name.vb: Alignment(GlobalObject, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: Comdat(GlobalObject, string) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: Comdat(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String,Ubiquity.NET.Llvm.ComdatKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - name: Comdat(GlobalObject, string, ComdatKind) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string, ComdatKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string, Ubiquity.NET.Llvm.ComdatKind) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String, ComdatKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String, Ubiquity.NET.Llvm.ComdatKind) - name.vb: Comdat(GlobalObject, String, ComdatKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: SectionName(GlobalObject, string) - nameWithType: GlobalObjectExtensions.SectionName(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.SectionName(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: SectionName(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(T, Linkage) - nameWithType: GlobalValueExtensions.Linkage(T, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(T, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of T)(T, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of T)(T, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of T)(T, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(T, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(T, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of T)(T, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of T)(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of T)(T, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(T, Visibility) - nameWithType: GlobalValueExtensions.Visibility(T, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(T, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of T)(T, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of T)(T, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of T)(T, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - name: Alignment(GlobalObject, uint) - nameWithType: GlobalObjectExtensions.Alignment(GlobalObject, uint) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, uint) - nameWithType.vb: GlobalObjectExtensions.Alignment(GlobalObject, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, UInteger) - name.vb: Alignment(GlobalObject, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html - name: GlobalObjectExtensions - nameWithType: GlobalObjectExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: Comdat(GlobalObject, string) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: Comdat(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - name: Comdat(GlobalObject, string, ComdatKind) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string, ComdatKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string, Ubiquity.NET.Llvm.ComdatKind) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String, ComdatKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String, Ubiquity.NET.Llvm.ComdatKind) - name.vb: Comdat(GlobalObject, String, ComdatKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: SectionName(GlobalObject, string) - nameWithType: GlobalObjectExtensions.SectionName(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.SectionName(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: SectionName(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.Signature* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.Signature - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_Signature - name: Signature - nameWithType: Function.Signature - fullName: Ubiquity.NET.Llvm.Values.Function.Signature -- uid: Ubiquity.NET.Llvm.Types.IFunctionType - commentId: T:Ubiquity.NET.Llvm.Types.IFunctionType - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.IFunctionType.html - name: IFunctionType - nameWithType: IFunctionType - fullName: Ubiquity.NET.Llvm.Types.IFunctionType -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Values.Function.EntryBlock* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.EntryBlock - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_EntryBlock - name: EntryBlock - nameWithType: Function.EntryBlock - fullName: Ubiquity.NET.Llvm.Values.Function.EntryBlock -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Values.Function.BasicBlocks* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.BasicBlocks - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_BasicBlocks - name: BasicBlocks - nameWithType: Function.BasicBlocks - fullName: Ubiquity.NET.Llvm.Values.Function.BasicBlocks -- uid: System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.BasicBlock} - commentId: T:System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.BasicBlock} - parent: System.Collections.Generic - definition: System.Collections.Generic.ICollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of BasicBlock) - fullName.vb: System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.BasicBlock) - name.vb: ICollection(Of BasicBlock) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - - name: ) -- uid: System.Collections.Generic.ICollection`1 - commentId: T:System.Collections.Generic.ICollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ICollection - nameWithType: ICollection - fullName: System.Collections.Generic.ICollection - nameWithType.vb: ICollection(Of T) - fullName.vb: System.Collections.Generic.ICollection(Of T) - name.vb: ICollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Values.Function.Parameters* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.Parameters - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_Parameters - name: Parameters - nameWithType: Function.Parameters - fullName: Ubiquity.NET.Llvm.Values.Function.Parameters -- uid: System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Argument} - commentId: T:System.Collections.Generic.IReadOnlyList{Ubiquity.NET.Llvm.Values.Argument} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyList`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of Argument) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of Ubiquity.NET.Llvm.Values.Argument) - name.vb: IReadOnlyList(Of Argument) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Argument - name: Argument - href: Ubiquity.NET.Llvm.Values.Argument.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Argument - name: Argument - href: Ubiquity.NET.Llvm.Values.Argument.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyList`1 - commentId: T:System.Collections.Generic.IReadOnlyList`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - name: IReadOnlyList - nameWithType: IReadOnlyList - fullName: System.Collections.Generic.IReadOnlyList - nameWithType.vb: IReadOnlyList(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyList(Of T) - name.vb: IReadOnlyList(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyList`1 - name: IReadOnlyList - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.CallingConvention* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.CallingConvention - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_CallingConvention - name: CallingConvention - nameWithType: Function.CallingConvention - fullName: Ubiquity.NET.Llvm.Values.Function.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.CallingConvention - commentId: T:Ubiquity.NET.Llvm.Values.CallingConvention - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.CallingConvention.html - name: CallingConvention - nameWithType: CallingConvention - fullName: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.Function.IntrinsicId* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.IntrinsicId - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_IntrinsicId - name: IntrinsicId - nameWithType: Function.IntrinsicId - fullName: Ubiquity.NET.Llvm.Values.Function.IntrinsicId -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Values.Function.IsVarArg* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.IsVarArg - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_IsVarArg - name: IsVarArg - nameWithType: Function.IsVarArg - fullName: Ubiquity.NET.Llvm.Values.Function.IsVarArg -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Values.Function.ReturnType* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.ReturnType - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_ReturnType - name: ReturnType - nameWithType: Function.ReturnType - fullName: Ubiquity.NET.Llvm.Values.Function.ReturnType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Values.Function.PersonalityFunction* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.PersonalityFunction - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_PersonalityFunction - name: PersonalityFunction - nameWithType: Function.PersonalityFunction - fullName: Ubiquity.NET.Llvm.Values.Function.PersonalityFunction -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Values.Function.DISubProgram* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.DISubProgram - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_DISubProgram - name: DISubProgram - nameWithType: Function.DISubProgram - fullName: Ubiquity.NET.Llvm.Values.Function.DISubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DISubProgram - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DISubProgram.html - name: DISubProgram - nameWithType: DISubProgram - fullName: Ubiquity.NET.Llvm.DebugInfo.DISubProgram -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.Values.Function.GcName* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.GcName - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_GcName - name: GcName - nameWithType: Function.GcName - fullName: Ubiquity.NET.Llvm.Values.Function.GcName -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Values.Function.Attributes* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.Attributes - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_Attributes - name: Attributes - nameWithType: Function.Attributes - fullName: Ubiquity.NET.Llvm.Values.Function.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - commentId: P:Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - parent: Ubiquity.NET.Llvm.Values.IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html#Ubiquity_NET_Llvm_Values_IAttributeContainer_Attributes - name: Attributes - nameWithType: IAttributeContainer.Attributes - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeDictionary - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - name: IAttributeDictionary - nameWithType: IAttributeDictionary - fullName: Ubiquity.NET.Llvm.Values.IAttributeDictionary -- uid: Ubiquity.NET.Llvm.Values.Function.Verify* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.Verify - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_Verify - name: Verify - nameWithType: Function.Verify - fullName: Ubiquity.NET.Llvm.Values.Function.Verify -- uid: System.String.Empty - commentId: F:System.String.Empty - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string.empty - name: Empty - nameWithType: string.Empty - fullName: string.Empty - nameWithType.vb: String.Empty - fullName.vb: String.Empty -- uid: Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_PrependBasicBlock_System_String_ - name: PrependBasicBlock - nameWithType: Function.PrependBasicBlock - fullName: Ubiquity.NET.Llvm.Values.Function.PrependBasicBlock -- uid: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_AppendBasicBlock_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: AppendBasicBlock - nameWithType: Function.AppendBasicBlock - fullName: Ubiquity.NET.Llvm.Values.Function.AppendBasicBlock -- uid: System.ArgumentException - commentId: T:System.ArgumentException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentexception - name: ArgumentException - nameWithType: ArgumentException - fullName: System.ArgumentException -- uid: Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_InsertBasicBlock_System_String_Ubiquity_NET_Llvm_Values_BasicBlock_ - name: InsertBasicBlock - nameWithType: Function.InsertBasicBlock - fullName: Ubiquity.NET.Llvm.Values.Function.InsertBasicBlock -- uid: Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_FindOrCreateNamedBlock_System_String_ - name: FindOrCreateNamedBlock - nameWithType: Function.FindOrCreateNamedBlock - fullName: Ubiquity.NET.Llvm.Values.Function.FindOrCreateNamedBlock -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex - nameWithType: Function.AddAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Values.Function.AddAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: IAttributeAccessor.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex - nameWithType: Function.GetAttributeCountAtIndex - fullName: Ubiquity.NET.Llvm.Values.Function.GetAttributeCountAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex - nameWithType: Function.GetAttributesAtIndex - fullName: Ubiquity.NET.Llvm.Values.Function.GetAttributesAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of AttributeValue) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: IEnumerable(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex - nameWithType: Function.GetAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Values.Function.GetAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - isExternal: true - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex - nameWithType: Function.RemoveAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Values.Function.RemoveAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - isExternal: true - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Function.EraseFromParent* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.EraseFromParent - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_EraseFromParent - name: EraseFromParent - nameWithType: Function.EraseFromParent - fullName: Ubiquity.NET.Llvm.Values.Function.EraseFromParent -- uid: System.ArgumentNullException - commentId: T:System.ArgumentNullException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception - name: ArgumentNullException - nameWithType: ArgumentNullException - fullName: System.ArgumentNullException -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: Ubiquity.NET.Llvm.Values.Function.TryRunPasses* - commentId: Overload:Ubiquity.NET.Llvm.Values.Function.TryRunPasses - href: Ubiquity.NET.Llvm.Values.Function.html#Ubiquity_NET_Llvm_Values_Function_TryRunPasses_System_String___ - name: TryRunPasses - nameWithType: Function.TryRunPasses - fullName: Ubiquity.NET.Llvm.Values.Function.TryRunPasses -- uid: System.String[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string[] - nameWithType: string[] - fullName: string[] - nameWithType.vb: String() - fullName.vb: String() - name.vb: String() - spec.csharp: - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: '[' - - name: ']' - spec.vb: - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ErrorInfo.html - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.PassBuilderOptions - commentId: T:Ubiquity.NET.Llvm.PassBuilderOptions - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - name: PassBuilderOptions - nameWithType: PassBuilderOptions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions -- uid: Ubiquity.NET.Llvm.TargetMachine - commentId: T:Ubiquity.NET.Llvm.TargetMachine - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetMachine.html - name: TargetMachine - nameWithType: TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.yml deleted file mode 100644 index 9d882ba665..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.yml +++ /dev/null @@ -1,173 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - id: FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Function - - Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Parameter0 - - Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.ReturnType - langs: - - csharp - - vb - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: FunctionAttributeIndex - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Function index for attributes - remarks: >- - Attributes on functions apply to the function itself, the return type - - or one of the function's parameters. This enumeration is used to - - identify where the attribute applies. - example: [] - syntax: - content: public enum FunctionAttributeIndex - content.vb: Public Enum FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Function - commentId: F:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Function - id: Function - parent: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - langs: - - csharp - - vb - name: Function - nameWithType: FunctionAttributeIndex.Function - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Function - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Function - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 17 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The attribute applies to the function itself - example: [] - syntax: - content: Function = -1 - return: - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.ReturnType - commentId: F:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.ReturnType - id: ReturnType - parent: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - langs: - - csharp - - vb - name: ReturnType - nameWithType: FunctionAttributeIndex.ReturnType - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.ReturnType - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReturnType - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The attribute applies to the return type of the function - example: [] - syntax: - content: ReturnType = 0 - return: - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Parameter0 - commentId: F:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Parameter0 - id: Parameter0 - parent: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - langs: - - csharp - - vb - name: Parameter0 - nameWithType: FunctionAttributeIndex.Parameter0 - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.Parameter0 - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Parameter0 - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: The attribute applies to the first parameter of the function - remarks: >- - Additional parameters are identified by simply adding an integer value to - - this value. (i.e. Parameter1 == FunctionAttributeIndex.Parameter0 + 1 ) - example: [] - syntax: - content: Parameter0 = 1 - return: - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalAlias.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalAlias.yml deleted file mode 100644 index c65e81297d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalAlias.yml +++ /dev/null @@ -1,1165 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias - commentId: T:Ubiquity.NET.Llvm.Values.GlobalAlias - id: GlobalAlias - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee - langs: - - csharp - - vb - name: GlobalAlias - nameWithType: GlobalAlias - fullName: Ubiquity.NET.Llvm.Values.GlobalAlias - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalAlias.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalAlias - path: ../src/Ubiquity.NET.Llvm/Values/GlobalAlias.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: LLVM Global Alias for a function or global value - example: [] - syntax: - content: 'public class GlobalAlias : GlobalIndirectSymbol, IEquatable' - content.vb: Public Class GlobalAlias Inherits GlobalIndirectSymbol Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.GlobalValue - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - - Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - - Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - - Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - - Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - - Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - - Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.GlobalAlias.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - - Ubiquity.NET.Llvm.Values.GlobalAlias.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - - Ubiquity.NET.Llvm.Values.GlobalAlias.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - - Ubiquity.NET.Llvm.Values.GlobalAlias.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee - commentId: P:Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee - id: Aliasee - parent: Ubiquity.NET.Llvm.Values.GlobalAlias - langs: - - csharp - - vb - name: Aliasee - nameWithType: GlobalAlias.Aliasee - fullName: Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalAlias.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Aliasee - path: ../src/Ubiquity.NET.Llvm/Values/GlobalAlias.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the aliasee that this Alias refers to - example: [] - syntax: - content: public Constant Aliasee { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Constant - content.vb: Public Property Aliasee As Constant - overload: Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - commentId: T:Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - name: GlobalIndirectSymbol - nameWithType: GlobalIndirectSymbol - fullName: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - commentId: P:Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - parent: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html#Ubiquity_NET_Llvm_Values_GlobalIndirectSymbol_IndirectSymbol - name: IndirectSymbol - nameWithType: GlobalIndirectSymbol.IndirectSymbol - fullName: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Visibility - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Linkage - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_UnnamedAddress - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_IsDeclaration - name: IsDeclaration - nameWithType: GlobalValue.IsDeclaration - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ValueType - name: ValueType - nameWithType: GlobalValue.ValueType - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(GlobalAlias, Linkage) - nameWithType: GlobalValueExtensions.Linkage(GlobalAlias, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Ubiquity.NET.Llvm.Values.GlobalAlias, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of GlobalAlias)(GlobalAlias, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of Ubiquity.NET.Llvm.Values.GlobalAlias)(Ubiquity.NET.Llvm.Values.GlobalAlias, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of GlobalAlias)(GlobalAlias, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalAlias,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalAlias,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(GlobalAlias, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(GlobalAlias, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Ubiquity.NET.Llvm.Values.GlobalAlias, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of GlobalAlias)(GlobalAlias, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of Ubiquity.NET.Llvm.Values.GlobalAlias)(Ubiquity.NET.Llvm.Values.GlobalAlias, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of GlobalAlias)(GlobalAlias, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalAlias,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalAlias,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(GlobalAlias, Visibility) - nameWithType: GlobalValueExtensions.Visibility(GlobalAlias, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Ubiquity.NET.Llvm.Values.GlobalAlias, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of GlobalAlias)(GlobalAlias, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of Ubiquity.NET.Llvm.Values.GlobalAlias)(Ubiquity.NET.Llvm.Values.GlobalAlias, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of GlobalAlias)(GlobalAlias, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalAlias,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalAlias,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(GlobalAlias, string) - nameWithType: ValueExtensions.RegisterName(GlobalAlias, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.GlobalAlias, string) - nameWithType.vb: ValueExtensions.RegisterName(Of GlobalAlias)(GlobalAlias, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.GlobalAlias)(Ubiquity.NET.Llvm.Values.GlobalAlias, String) - name.vb: RegisterName(Of GlobalAlias)(GlobalAlias, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalAlias,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalAlias,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(T, Linkage) - nameWithType: GlobalValueExtensions.Linkage(T, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(T, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of T)(T, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of T)(T, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of T)(T, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(T, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(T, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of T)(T, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of T)(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of T)(T, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(T, Visibility) - nameWithType: GlobalValueExtensions.Visibility(T, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(T, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of T)(T, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of T)(T, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of T)(T, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html#Ubiquity_NET_Llvm_Values_GlobalAlias_Aliasee - name: Aliasee - nameWithType: GlobalAlias.Aliasee - fullName: Ubiquity.NET.Llvm.Values.GlobalAlias.Aliasee diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalIFunc.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalIFunc.yml deleted file mode 100644 index 709315cf39..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalIFunc.yml +++ /dev/null @@ -1,1206 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - commentId: T:Ubiquity.NET.Llvm.Values.GlobalIFunc - id: GlobalIFunc - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent - - Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver - langs: - - csharp - - vb - name: GlobalIFunc - nameWithType: GlobalIFunc - fullName: Ubiquity.NET.Llvm.Values.GlobalIFunc - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalIFunc.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalIFunc - path: ../src/Ubiquity.NET.Llvm/Values/GlobalIFunc.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Global Indirect Function - remarks: >- - represents a single indirect function in the IR. Indirect function uses - - ELF symbol type extension to mark that the address of a declaration should - - be resolved at runtime by calling a resolver function. - example: [] - syntax: - content: 'public class GlobalIFunc : GlobalIndirectSymbol, IEquatable' - content.vb: Public Class GlobalIFunc Inherits GlobalIndirectSymbol Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.GlobalValue - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - - Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - - Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - - Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - - Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - - Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - - Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.GlobalIFunc.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - - Ubiquity.NET.Llvm.Values.GlobalIFunc.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - - Ubiquity.NET.Llvm.Values.GlobalIFunc.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - - Ubiquity.NET.Llvm.Values.GlobalIFunc.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver - commentId: P:Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver - id: Resolver - parent: Ubiquity.NET.Llvm.Values.GlobalIFunc - langs: - - csharp - - vb - name: Resolver - nameWithType: GlobalIFunc.Resolver - fullName: Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalIFunc.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Resolver - path: ../src/Ubiquity.NET.Llvm/Values/GlobalIFunc.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the ifunc resolver - example: [] - syntax: - content: public Constant Resolver { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Constant - content.vb: Public Property Resolver As Constant - overload: Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver* -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent - commentId: M:Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent - id: RemoveFromParent - parent: Ubiquity.NET.Llvm.Values.GlobalIFunc - langs: - - csharp - - vb - name: RemoveFromParent() - nameWithType: GlobalIFunc.RemoveFromParent() - fullName: Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalIFunc.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveFromParent - path: ../src/Ubiquity.NET.Llvm/Values/GlobalIFunc.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes this instance from the parent module without destroying it - example: [] - syntax: - content: public void RemoveFromParent() - content.vb: Public Sub RemoveFromParent() - overload: Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - commentId: T:Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - name: GlobalIndirectSymbol - nameWithType: GlobalIndirectSymbol - fullName: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - commentId: P:Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - parent: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html#Ubiquity_NET_Llvm_Values_GlobalIndirectSymbol_IndirectSymbol - name: IndirectSymbol - nameWithType: GlobalIndirectSymbol.IndirectSymbol - fullName: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Visibility - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Linkage - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_UnnamedAddress - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_IsDeclaration - name: IsDeclaration - nameWithType: GlobalValue.IsDeclaration - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ValueType - name: ValueType - nameWithType: GlobalValue.ValueType - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(GlobalIFunc, Linkage) - nameWithType: GlobalValueExtensions.Linkage(GlobalIFunc, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Ubiquity.NET.Llvm.Values.GlobalIFunc, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of GlobalIFunc)(GlobalIFunc, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of Ubiquity.NET.Llvm.Values.GlobalIFunc)(Ubiquity.NET.Llvm.Values.GlobalIFunc, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of GlobalIFunc)(GlobalIFunc, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalIFunc,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalIFunc,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(GlobalIFunc, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(GlobalIFunc, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Ubiquity.NET.Llvm.Values.GlobalIFunc, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of GlobalIFunc)(GlobalIFunc, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of Ubiquity.NET.Llvm.Values.GlobalIFunc)(Ubiquity.NET.Llvm.Values.GlobalIFunc, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of GlobalIFunc)(GlobalIFunc, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalIFunc,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalIFunc,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(GlobalIFunc, Visibility) - nameWithType: GlobalValueExtensions.Visibility(GlobalIFunc, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Ubiquity.NET.Llvm.Values.GlobalIFunc, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of GlobalIFunc)(GlobalIFunc, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of Ubiquity.NET.Llvm.Values.GlobalIFunc)(Ubiquity.NET.Llvm.Values.GlobalIFunc, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of GlobalIFunc)(GlobalIFunc, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalIFunc,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalIFunc,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(GlobalIFunc, string) - nameWithType: ValueExtensions.RegisterName(GlobalIFunc, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.GlobalIFunc, string) - nameWithType.vb: ValueExtensions.RegisterName(Of GlobalIFunc)(GlobalIFunc, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.GlobalIFunc)(Ubiquity.NET.Llvm.Values.GlobalIFunc, String) - name.vb: RegisterName(Of GlobalIFunc)(GlobalIFunc, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalIFunc,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalIFunc,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(T, Linkage) - nameWithType: GlobalValueExtensions.Linkage(T, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(T, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of T)(T, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of T)(T, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of T)(T, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(T, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(T, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of T)(T, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of T)(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of T)(T, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(T, Visibility) - nameWithType: GlobalValueExtensions.Visibility(T, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(T, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of T)(T, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of T)(T, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of T)(T, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html#Ubiquity_NET_Llvm_Values_GlobalIFunc_Resolver - name: Resolver - nameWithType: GlobalIFunc.Resolver - fullName: Ubiquity.NET.Llvm.Values.GlobalIFunc.Resolver -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html#Ubiquity_NET_Llvm_Values_GlobalIFunc_RemoveFromParent - name: RemoveFromParent - nameWithType: GlobalIFunc.RemoveFromParent - fullName: Ubiquity.NET.Llvm.Values.GlobalIFunc.RemoveFromParent diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.yml deleted file mode 100644 index 970fc17136..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.yml +++ /dev/null @@ -1,1152 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - commentId: T:Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - id: GlobalIndirectSymbol - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - langs: - - csharp - - vb - name: GlobalIndirectSymbol - nameWithType: GlobalIndirectSymbol - fullName: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalIndirectSymbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalIndirectSymbol - path: ../src/Ubiquity.NET.Llvm/Values/GlobalIndirectSymbol.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Global Indirect Symbol - example: [] - syntax: - content: 'public class GlobalIndirectSymbol : GlobalValue, IEquatable' - content.vb: Public Class GlobalIndirectSymbol Inherits GlobalValue Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.GlobalValue - derivedClasses: - - Ubiquity.NET.Llvm.Values.GlobalAlias - - Ubiquity.NET.Llvm.Values.GlobalIFunc - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - - Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - - Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - - Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - - Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - - Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - commentId: P:Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - id: IndirectSymbol - parent: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - langs: - - csharp - - vb - name: IndirectSymbol - nameWithType: GlobalIndirectSymbol.IndirectSymbol - fullName: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalIndirectSymbol.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IndirectSymbol - path: ../src/Ubiquity.NET.Llvm/Values/GlobalIndirectSymbol.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the symbol this indirectly references - example: [] - syntax: - content: public Constant IndirectSymbol { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Constant - content.vb: Public Property IndirectSymbol As Constant - overload: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Visibility - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Linkage - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_UnnamedAddress - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_IsDeclaration - name: IsDeclaration - nameWithType: GlobalValue.IsDeclaration - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ValueType - name: ValueType - nameWithType: GlobalValue.ValueType - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(GlobalIndirectSymbol, Linkage) - nameWithType: GlobalValueExtensions.Linkage(GlobalIndirectSymbol, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of GlobalIndirectSymbol)(GlobalIndirectSymbol, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol)(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of GlobalIndirectSymbol)(GlobalIndirectSymbol, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(GlobalIndirectSymbol, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(GlobalIndirectSymbol, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of GlobalIndirectSymbol)(GlobalIndirectSymbol, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol)(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of GlobalIndirectSymbol)(GlobalIndirectSymbol, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(GlobalIndirectSymbol, Visibility) - nameWithType: GlobalValueExtensions.Visibility(GlobalIndirectSymbol, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of GlobalIndirectSymbol)(GlobalIndirectSymbol, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol)(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of GlobalIndirectSymbol)(GlobalIndirectSymbol, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(GlobalIndirectSymbol, string) - nameWithType: ValueExtensions.RegisterName(GlobalIndirectSymbol, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol, string) - nameWithType.vb: ValueExtensions.RegisterName(Of GlobalIndirectSymbol)(GlobalIndirectSymbol, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol)(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol, String) - name.vb: RegisterName(Of GlobalIndirectSymbol)(GlobalIndirectSymbol, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(T, Linkage) - nameWithType: GlobalValueExtensions.Linkage(T, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(T, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of T)(T, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of T)(T, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of T)(T, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(T, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(T, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of T)(T, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of T)(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of T)(T, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(T, Visibility) - nameWithType: GlobalValueExtensions.Visibility(T, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(T, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of T)(T, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of T)(T, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of T)(T, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html#Ubiquity_NET_Llvm_Values_GlobalIndirectSymbol_IndirectSymbol - name: IndirectSymbol - nameWithType: GlobalIndirectSymbol.IndirectSymbol - fullName: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.IndirectSymbol diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalObject.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalObject.yml deleted file mode 100644 index 43fd2833fb..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalObject.yml +++ /dev/null @@ -1,1875 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.GlobalObject - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObject - id: GlobalObject - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - - Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - - Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - - Ubiquity.NET.Llvm.Values.GlobalObject.Section - - Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - langs: - - csharp - - vb - name: GlobalObject - nameWithType: GlobalObject - fullName: Ubiquity.NET.Llvm.Values.GlobalObject - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalObject - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Base class for Global objects in an LLVM ModuleHandle - example: [] - syntax: - content: 'public class GlobalObject : GlobalValue, IEquatable' - content.vb: Public Class GlobalObject Inherits GlobalValue Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.GlobalValue - derivedClasses: - - Ubiquity.NET.Llvm.Values.Function - - Ubiquity.NET.Llvm.Values.GlobalVariable - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - - Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - - Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - - Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - - Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - - Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(System.UInt32) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String,Ubiquity.NET.Llvm.ComdatKind) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(System.String) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - id: Alignment - parent: Ubiquity.NET.Llvm.Values.GlobalObject - langs: - - csharp - - vb - name: Alignment - nameWithType: GlobalObject.Alignment - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Alignment - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the alignment requirements for this object - example: [] - syntax: - content: public uint Alignment { get; set; } - parameters: [] - return: - type: System.UInt32 - content.vb: Public Property Alignment As UInteger - overload: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment* -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Section - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Section - id: Section - parent: Ubiquity.NET.Llvm.Values.GlobalObject - langs: - - csharp - - vb - name: Section - nameWithType: GlobalObject.Section - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Section - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Section - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the linker section this object belongs to - example: [] - syntax: - content: public string Section { get; set; } - parameters: [] - return: - type: System.String - content.vb: Public Property Section As String - overload: Ubiquity.NET.Llvm.Values.GlobalObject.Section* -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - id: Comdat - parent: Ubiquity.NET.Llvm.Values.GlobalObject - langs: - - csharp - - vb - name: Comdat - nameWithType: GlobalObject.Comdat - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Comdat - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - startLine: 32 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the comdat attached to this object, if any - remarks: >- - Setting this property to null or an - - empty string will remove any comdat setting for the - - global object. - example: [] - syntax: - content: public Comdat Comdat { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Comdat - content.vb: Public Property Comdat As Comdat - overload: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat* -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - id: SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Values.GlobalObject - langs: - - csharp - - vb - name: SetMetadata(uint, IrMetadata) - nameWithType: GlobalObject.SetMetadata(uint, IrMetadata) - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(uint, Ubiquity.NET.Llvm.Metadata.IrMetadata) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SetMetadata - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Sets metadata for this value - example: [] - syntax: - content: public void SetMetadata(uint kindID, IrMetadata node) - parameters: - - id: kindID - type: System.UInt32 - description: Id id for the metadata - - id: node - type: Ubiquity.NET.Llvm.Metadata.IrMetadata - description: IrMetadata wrapped as a value - content.vb: Public Sub SetMetadata(kindID As UInteger, node As IrMetadata) - overload: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata* - nameWithType.vb: GlobalObject.SetMetadata(UInteger, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(UInteger, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: SetMetadata(UInteger, IrMetadata) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - id: Metadata - parent: Ubiquity.NET.Llvm.Values.GlobalObject - langs: - - csharp - - vb - name: Metadata - nameWithType: GlobalObject.Metadata - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Metadata - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObject.cs - startLine: 54 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a snap-shot collection of the metadata for this global - example: [] - syntax: - content: public IEnumerable Metadata { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.MDNode} - description: Enumerable of the metadata nodes for the global - content.vb: Public ReadOnly Property Metadata As IEnumerable(Of MDNode) - overload: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Visibility - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Linkage - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_UnnamedAddress - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_IsDeclaration - name: IsDeclaration - nameWithType: GlobalValue.IsDeclaration - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ValueType - name: ValueType - nameWithType: GlobalValue.ValueType - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - name: Alignment(GlobalObject, uint) - nameWithType: GlobalObjectExtensions.Alignment(GlobalObject, uint) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, uint) - nameWithType.vb: GlobalObjectExtensions.Alignment(GlobalObject, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, UInteger) - name.vb: Alignment(GlobalObject, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: Comdat(GlobalObject, string) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: Comdat(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String,Ubiquity.NET.Llvm.ComdatKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - name: Comdat(GlobalObject, string, ComdatKind) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string, ComdatKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string, Ubiquity.NET.Llvm.ComdatKind) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String, ComdatKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String, Ubiquity.NET.Llvm.ComdatKind) - name.vb: Comdat(GlobalObject, String, ComdatKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: SectionName(GlobalObject, string) - nameWithType: GlobalObjectExtensions.SectionName(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.SectionName(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: SectionName(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(GlobalObject, Linkage) - nameWithType: GlobalValueExtensions.Linkage(GlobalObject, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Ubiquity.NET.Llvm.Values.GlobalObject, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of GlobalObject)(GlobalObject, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of Ubiquity.NET.Llvm.Values.GlobalObject)(Ubiquity.NET.Llvm.Values.GlobalObject, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of GlobalObject)(GlobalObject, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalObject,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalObject,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(GlobalObject, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(GlobalObject, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Ubiquity.NET.Llvm.Values.GlobalObject, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of GlobalObject)(GlobalObject, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of Ubiquity.NET.Llvm.Values.GlobalObject)(Ubiquity.NET.Llvm.Values.GlobalObject, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of GlobalObject)(GlobalObject, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalObject,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalObject,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(GlobalObject, Visibility) - nameWithType: GlobalValueExtensions.Visibility(GlobalObject, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Ubiquity.NET.Llvm.Values.GlobalObject, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of GlobalObject)(GlobalObject, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of Ubiquity.NET.Llvm.Values.GlobalObject)(Ubiquity.NET.Llvm.Values.GlobalObject, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of GlobalObject)(GlobalObject, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalObject,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalObject,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(GlobalObject, string) - nameWithType: ValueExtensions.RegisterName(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: ValueExtensions.RegisterName(Of GlobalObject)(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.GlobalObject)(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: RegisterName(Of GlobalObject)(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - name: Alignment(GlobalObject, uint) - nameWithType: GlobalObjectExtensions.Alignment(GlobalObject, uint) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, uint) - nameWithType.vb: GlobalObjectExtensions.Alignment(GlobalObject, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, UInteger) - name.vb: Alignment(GlobalObject, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html - name: GlobalObjectExtensions - nameWithType: GlobalObjectExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: Comdat(GlobalObject, string) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: Comdat(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - name: Comdat(GlobalObject, string, ComdatKind) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string, ComdatKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string, Ubiquity.NET.Llvm.ComdatKind) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String, ComdatKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String, Ubiquity.NET.Llvm.ComdatKind) - name.vb: Comdat(GlobalObject, String, ComdatKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: SectionName(GlobalObject, string) - nameWithType: GlobalObjectExtensions.SectionName(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.SectionName(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: SectionName(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(T, Linkage) - nameWithType: GlobalValueExtensions.Linkage(T, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(T, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of T)(T, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of T)(T, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of T)(T, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(T, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(T, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of T)(T, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of T)(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of T)(T, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(T, Visibility) - nameWithType: GlobalValueExtensions.Visibility(T, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(T, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of T)(T, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of T)(T, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of T)(T, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Alignment - name: Alignment - nameWithType: GlobalObject.Alignment - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Section* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalObject.Section - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Section - name: Section - nameWithType: GlobalObject.Section - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Section -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Comdat - name: Comdat - nameWithType: GlobalObject.Comdat - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat -- uid: Ubiquity.NET.Llvm.Comdat - commentId: T:Ubiquity.NET.Llvm.Comdat - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Comdat.html - name: Comdat - nameWithType: Comdat - fullName: Ubiquity.NET.Llvm.Comdat -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_SetMetadata_System_UInt32_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: SetMetadata - nameWithType: GlobalObject.SetMetadata - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Metadata - name: Metadata - nameWithType: GlobalObject.Metadata - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.MDNode} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Metadata.MDNode} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of MDNode) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Metadata.MDNode) - name.vb: IEnumerable(Of MDNode) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Metadata.MDNode - name: MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.MDNode - name: MDNode - href: Ubiquity.NET.Llvm.Metadata.MDNode.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.yml deleted file mode 100644 index 72951cd824..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.yml +++ /dev/null @@ -1,638 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - id: GlobalObjectExtensions - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - - Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - - Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - - Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - langs: - - csharp - - vb - name: GlobalObjectExtensions - nameWithType: GlobalObjectExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalObjectExtensions - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Fluent style extensions for properties of - example: [] - syntax: - content: public static class GlobalObjectExtensions - content.vb: Public Module GlobalObjectExtensions - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - id: Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - langs: - - csharp - - vb - name: Comdat(GlobalObject, string) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Comdat - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - startLine: 20 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Sets a named for a - remarks: >- - This finds a in the - - of the object if it exists or creates a new one if it doesn't and assigns the - - property with the . - example: [] - syntax: - content: public static GlobalObject Comdat(this GlobalObject self, string name) - parameters: - - id: self - type: Ubiquity.NET.Llvm.Values.GlobalObject - description: Global to get the Comdat for - - id: name - type: System.String - description: name of the ComDat - return: - type: Ubiquity.NET.Llvm.Values.GlobalObject - description: self for fluent use - content.vb: Public Shared Function Comdat(self As GlobalObject, name As String) As GlobalObject - overload: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat* - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: Comdat(GlobalObject, String) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - id: Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - langs: - - csharp - - vb - name: Comdat(GlobalObject, string, ComdatKind) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string, ComdatKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string, Ubiquity.NET.Llvm.ComdatKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Comdat - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Sets a named for a - remarks: >- - This finds a in the - - of the object if it exists or creates a new one if it doesn't and assigns the - - property with the . - example: [] - syntax: - content: public static GlobalObject Comdat(this GlobalObject self, string name, ComdatKind kind) - parameters: - - id: self - type: Ubiquity.NET.Llvm.Values.GlobalObject - description: Global to get the Comdat for - - id: name - type: System.String - description: name of the Comdat - - id: kind - type: Ubiquity.NET.Llvm.ComdatKind - description: Id of Comdat to create if it doesn't exist already - return: - type: Ubiquity.NET.Llvm.Values.GlobalObject - description: self for fluent use - content.vb: Public Shared Function Comdat(self As GlobalObject, name As String, kind As ComdatKind) As GlobalObject - overload: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat* - seealso: - - linkId: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String, ComdatKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String, Ubiquity.NET.Llvm.ComdatKind) - name.vb: Comdat(GlobalObject, String, ComdatKind) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - id: SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - langs: - - csharp - - vb - name: SectionName(GlobalObject, string) - nameWithType: GlobalObjectExtensions.SectionName(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SectionName - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - startLine: 45 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Sets the linker section name for a - example: [] - syntax: - content: public static GlobalObject SectionName(this GlobalObject self, string name) - parameters: - - id: self - type: Ubiquity.NET.Llvm.Values.GlobalObject - description: to set the section for - - id: name - type: System.String - description: Name of the section - return: - type: Ubiquity.NET.Llvm.Values.GlobalObject - description: self for fluent use - content.vb: Public Shared Function SectionName(self As GlobalObject, name As String) As GlobalObject - overload: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName* - seealso: - - linkId: Ubiquity.NET.Llvm.Values.GlobalObject.Section - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Section - nameWithType.vb: GlobalObjectExtensions.SectionName(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: SectionName(GlobalObject, String) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - id: Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - langs: - - csharp - - vb - name: Alignment(GlobalObject, uint) - nameWithType: GlobalObjectExtensions.Alignment(GlobalObject, uint) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, uint) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Alignment - path: ../src/Ubiquity.NET.Llvm/Values/GlobalObjectExtensions.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Sets the alignment for a - example: [] - syntax: - content: public static GlobalObject Alignment(this GlobalObject self, uint value) - parameters: - - id: self - type: Ubiquity.NET.Llvm.Values.GlobalObject - description: Object to set the alignment of - - id: value - type: System.UInt32 - description: Alignment value to set - return: - type: Ubiquity.NET.Llvm.Values.GlobalObject - description: self for fluent use - content.vb: Public Shared Function Alignment(self As GlobalObject, value As UInteger) As GlobalObject - overload: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment* - seealso: - - linkId: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - nameWithType.vb: GlobalObjectExtensions.Alignment(GlobalObject, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, UInteger) - name.vb: Alignment(GlobalObject, UInteger) -references: -- uid: Ubiquity.NET.Llvm.Values.GlobalObject - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObject - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - name: GlobalObject - nameWithType: GlobalObject - fullName: Ubiquity.NET.Llvm.Values.GlobalObject -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Comdat - commentId: T:Ubiquity.NET.Llvm.Comdat - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Comdat.html - name: Comdat - nameWithType: Comdat - fullName: Ubiquity.NET.Llvm.Comdat -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Comdat - name: Comdat - nameWithType: GlobalObject.Comdat - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: Comdat - nameWithType: GlobalObjectExtensions.Comdat - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.ComdatKind - commentId: T:Ubiquity.NET.Llvm.ComdatKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ComdatKind.html - name: ComdatKind - nameWithType: ComdatKind - fullName: Ubiquity.NET.Llvm.ComdatKind -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Section - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Section - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Section - name: Section - nameWithType: GlobalObject.Section - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Section -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: SectionName - nameWithType: GlobalObjectExtensions.SectionName - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Alignment - name: Alignment - nameWithType: GlobalObject.Alignment - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - name: Alignment - nameWithType: GlobalObjectExtensions.Alignment - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalValue.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalValue.yml deleted file mode 100644 index 8bdd227b38..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalValue.yml +++ /dev/null @@ -1,1400 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - id: GlobalValue - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - - Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - - Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - - Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - - Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - - Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - langs: - - csharp - - vb - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalValue - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 108 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: LLVM Global value - example: [] - syntax: - content: 'public class GlobalValue : Constant, IEquatable' - content.vb: Public Class GlobalValue Inherits Constant Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - derivedClasses: - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - - Ubiquity.NET.Llvm.Values.GlobalObject - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.GlobalValue.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - - Ubiquity.NET.Llvm.Values.GlobalValue.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - - Ubiquity.NET.Llvm.Values.GlobalValue.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - - Ubiquity.NET.Llvm.Values.GlobalValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - id: Visibility - parent: Ubiquity.NET.Llvm.Values.GlobalValue - langs: - - csharp - - vb - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Visibility - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 112 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the visibility of this global value - example: [] - syntax: - content: public Visibility Visibility { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Visibility - content.vb: Public Property Visibility As Visibility - overload: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility* -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - id: Linkage - parent: Ubiquity.NET.Llvm.Values.GlobalValue - langs: - - csharp - - vb - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Linkage - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 119 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the linkage specification for this symbol - example: [] - syntax: - content: public Linkage Linkage { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Linkage - content.vb: Public Property Linkage As Linkage - overload: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage* -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - id: UnnamedAddress - parent: Ubiquity.NET.Llvm.Values.GlobalValue - langs: - - csharp - - vb - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnnamedAddress - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 126 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets a value indicating whether this is an Unnamed address - example: [] - syntax: - content: public UnnamedAddressKind UnnamedAddress { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - content.vb: Public Property UnnamedAddress As UnnamedAddressKind - overload: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress* -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - id: IsDeclaration - parent: Ubiquity.NET.Llvm.Values.GlobalValue - langs: - - csharp - - vb - name: IsDeclaration - nameWithType: GlobalValue.IsDeclaration - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsDeclaration - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 133 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether this is a declaration - example: [] - syntax: - content: public bool IsDeclaration { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsDeclaration As Boolean - overload: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration* -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - id: ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - langs: - - csharp - - vb - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ParentModule - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 136 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the ModuleHandle containing this global value - example: [] - syntax: - content: public IModule ParentModule { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IModule - content.vb: Public ReadOnly Property ParentModule As IModule - overload: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule* -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - id: ValueType - parent: Ubiquity.NET.Llvm.Values.GlobalValue - langs: - - csharp - - vb - name: ValueType - nameWithType: GlobalValue.ValueType - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ValueType - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 139 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the Value Type of this global value instance - example: [] - syntax: - content: public ITypeRef ValueType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property ValueType As ITypeRef - overload: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(GlobalValue, Linkage) - nameWithType: GlobalValueExtensions.Linkage(GlobalValue, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Ubiquity.NET.Llvm.Values.GlobalValue, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of GlobalValue)(GlobalValue, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of Ubiquity.NET.Llvm.Values.GlobalValue)(Ubiquity.NET.Llvm.Values.GlobalValue, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of GlobalValue)(GlobalValue, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalValue,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalValue,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(GlobalValue, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(GlobalValue, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Ubiquity.NET.Llvm.Values.GlobalValue, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of GlobalValue)(GlobalValue, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of Ubiquity.NET.Llvm.Values.GlobalValue)(Ubiquity.NET.Llvm.Values.GlobalValue, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of GlobalValue)(GlobalValue, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalValue,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalValue,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(GlobalValue, Visibility) - nameWithType: GlobalValueExtensions.Visibility(GlobalValue, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Ubiquity.NET.Llvm.Values.GlobalValue, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of GlobalValue)(GlobalValue, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of Ubiquity.NET.Llvm.Values.GlobalValue)(Ubiquity.NET.Llvm.Values.GlobalValue, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of GlobalValue)(GlobalValue, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalValue,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalValue,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(GlobalValue, string) - nameWithType: ValueExtensions.RegisterName(GlobalValue, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.GlobalValue, string) - nameWithType.vb: ValueExtensions.RegisterName(Of GlobalValue)(GlobalValue, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.GlobalValue)(Ubiquity.NET.Llvm.Values.GlobalValue, String) - name.vb: RegisterName(Of GlobalValue)(GlobalValue, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(T, Linkage) - nameWithType: GlobalValueExtensions.Linkage(T, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(T, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of T)(T, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of T)(T, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of T)(T, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(T, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(T, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of T)(T, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of T)(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of T)(T, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(T, Visibility) - nameWithType: GlobalValueExtensions.Visibility(T, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(T, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of T)(T, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of T)(T, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of T)(T, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Visibility - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility -- uid: Ubiquity.NET.Llvm.Values.Visibility - commentId: T:Ubiquity.NET.Llvm.Values.Visibility - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Visibility.html - name: Visibility - nameWithType: Visibility - fullName: Ubiquity.NET.Llvm.Values.Visibility -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Linkage - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage - commentId: T:Ubiquity.NET.Llvm.Values.Linkage - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Linkage.html - name: Linkage - nameWithType: Linkage - fullName: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_UnnamedAddress - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - commentId: T:Ubiquity.NET.Llvm.Values.UnnamedAddressKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - name: UnnamedAddressKind - nameWithType: UnnamedAddressKind - fullName: Ubiquity.NET.Llvm.Values.UnnamedAddressKind -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_IsDeclaration - name: IsDeclaration - nameWithType: GlobalValue.IsDeclaration - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IModule.html - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ValueType - name: ValueType - nameWithType: GlobalValue.ValueType - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalValueExtensions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalValueExtensions.yml deleted file mode 100644 index ca208308ec..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalValueExtensions.yml +++ /dev/null @@ -1,544 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - id: GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - - Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - - Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - langs: - - csharp - - vb - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValueExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalValueExtensions - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValueExtensions.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Fluent style extensions for modifying properties of a - remarks: >- - These are not members of to allow the generic return type so that the return - - is for the specific type provided as input instead of the base type of GlobalValue. - example: [] - syntax: - content: public static class GlobalValueExtensions - content.vb: Public Module GlobalValueExtensions - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - id: Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - langs: - - csharp - - vb - name: Visibility(T, Visibility) - nameWithType: GlobalValueExtensions.Visibility(T, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(T, Ubiquity.NET.Llvm.Values.Visibility) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValueExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Visibility - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValueExtensions.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Visibility of this global value - example: [] - syntax: - content: 'public static T Visibility(this T self, Visibility value) where T : GlobalValue' - parameters: - - id: self - type: '{T}' - description: Value to modify - - id: value - type: Ubiquity.NET.Llvm.Values.Visibility - description: New value to set - typeParameters: - - id: T - description: Type of the value (Must be or a type derived from it) - return: - type: '{T}' - description: self for fluent usage patterns - content.vb: Public Shared Function Visibility(Of T As GlobalValue)(self As T, value As Visibility) As T - overload: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility* - seealso: - - linkId: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - nameWithType.vb: GlobalValueExtensions.Visibility(Of T)(T, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of T)(T, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of T)(T, Visibility) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - id: Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - langs: - - csharp - - vb - name: Linkage(T, Linkage) - nameWithType: GlobalValueExtensions.Linkage(T, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(T, Ubiquity.NET.Llvm.Values.Linkage) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValueExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Linkage - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValueExtensions.cs - startLine: 35 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Linkage specification for this symbol - example: [] - syntax: - content: 'public static T Linkage(this T self, Linkage value) where T : GlobalValue' - parameters: - - id: self - type: '{T}' - description: Value to modify - - id: value - type: Ubiquity.NET.Llvm.Values.Linkage - description: New value to set - typeParameters: - - id: T - description: Type of the value (Must be or a type derived from it) - return: - type: '{T}' - description: self for fluent usage patterns - content.vb: Public Shared Function Linkage(Of T As GlobalValue)(self As T, value As Linkage) As T - overload: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage* - seealso: - - linkId: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - nameWithType.vb: GlobalValueExtensions.Linkage(Of T)(T, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of T)(T, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of T)(T, Linkage) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - id: UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - langs: - - csharp - - vb - name: UnnamedAddress(T, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(T, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValueExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnnamedAddress - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValueExtensions.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Sets the UnnamedAddress property of a value - example: [] - syntax: - content: 'public static T UnnamedAddress(this T self, UnnamedAddressKind value) where T : GlobalValue' - parameters: - - id: self - type: '{T}' - description: Value to modify - - id: value - type: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - description: New value to set - typeParameters: - - id: T - description: Type of the value (Must be or a type derived from it) - return: - type: '{T}' - description: self for fluent usage patterns - content.vb: Public Shared Function UnnamedAddress(Of T As GlobalValue)(self As T, value As UnnamedAddressKind) As T - overload: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress* - seealso: - - linkId: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of T)(T, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of T)(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of T)(T, UnnamedAddressKind) -references: -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Visibility - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility - nameWithType: GlobalValueExtensions.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.Values.Visibility - commentId: T:Ubiquity.NET.Llvm.Values.Visibility - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Visibility.html - name: Visibility - nameWithType: Visibility - fullName: Ubiquity.NET.Llvm.Values.Visibility -- uid: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Linkage - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage - nameWithType: GlobalValueExtensions.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage - commentId: T:Ubiquity.NET.Llvm.Values.Linkage - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Linkage.html - name: Linkage - nameWithType: Linkage - fullName: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_UnnamedAddress - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress - nameWithType: GlobalValueExtensions.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - commentId: T:Ubiquity.NET.Llvm.Values.UnnamedAddressKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - name: UnnamedAddressKind - nameWithType: UnnamedAddressKind - fullName: Ubiquity.NET.Llvm.Values.UnnamedAddressKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalVariable.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalVariable.yml deleted file mode 100644 index 8fc67a2efd..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.GlobalVariable.yml +++ /dev/null @@ -1,1837 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable - commentId: T:Ubiquity.NET.Llvm.Values.GlobalVariable - id: GlobalVariable - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo(Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression) - - Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer - - Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant - - Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized - - Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal - - Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent - langs: - - csharp - - vb - name: GlobalVariable - nameWithType: GlobalVariable - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GlobalVariable - path: ../src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - startLine: 11 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: An LLVM Global Variable - example: [] - syntax: - content: 'public class GlobalVariable : GlobalObject, IEquatable' - content.vb: Public Class GlobalVariable Inherits GlobalObject Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.GlobalValue - - Ubiquity.NET.Llvm.Values.GlobalObject - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - - Ubiquity.NET.Llvm.Values.GlobalObject.Section - - Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - - Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - - Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - - Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - - Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - - Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - - Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - - Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - - Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(System.UInt32) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String,Ubiquity.NET.Llvm.ComdatKind) - - Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(System.String) - - Ubiquity.NET.Llvm.Values.GlobalVariable.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - - Ubiquity.NET.Llvm.Values.GlobalVariable.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - - Ubiquity.NET.Llvm.Values.GlobalVariable.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - - Ubiquity.NET.Llvm.Values.GlobalVariable.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized - commentId: P:Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized - id: IsExternallyInitialized - parent: Ubiquity.NET.Llvm.Values.GlobalVariable - langs: - - csharp - - vb - name: IsExternallyInitialized - nameWithType: GlobalVariable.IsExternallyInitialized - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsExternallyInitialized - path: ../src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets a value indicating whether this variable is initialized in an external module - example: [] - syntax: - content: public bool IsExternallyInitialized { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property IsExternallyInitialized As Boolean - overload: Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized* -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant - commentId: P:Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant - id: IsConstant - parent: Ubiquity.NET.Llvm.Values.GlobalVariable - langs: - - csharp - - vb - name: IsConstant - nameWithType: GlobalVariable.IsConstant - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsConstant - path: ../src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets a value indicating whether this global is a Constant - example: [] - syntax: - content: public bool IsConstant { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property IsConstant As Boolean - overload: Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant* -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal - commentId: P:Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal - id: IsThreadLocal - parent: Ubiquity.NET.Llvm.Values.GlobalVariable - langs: - - csharp - - vb - name: IsThreadLocal - nameWithType: GlobalVariable.IsThreadLocal - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsThreadLocal - path: ../src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - startLine: 29 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets a value indicating whether this global is stored per thread - example: [] - syntax: - content: public bool IsThreadLocal { get; set; } - parameters: [] - return: - type: System.Boolean - content.vb: Public Property IsThreadLocal As Boolean - overload: Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal* -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer - commentId: P:Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer - id: Initializer - parent: Ubiquity.NET.Llvm.Values.GlobalVariable - langs: - - csharp - - vb - name: Initializer - nameWithType: GlobalVariable.Initializer - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Initializer - path: ../src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets the initial value for the variable - example: [] - syntax: - content: public Constant? Initializer { get; set; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Constant - content.vb: Public Property Initializer As Constant - overload: Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer* -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo(Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo(Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression) - id: AddDebugInfo(Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression) - parent: Ubiquity.NET.Llvm.Values.GlobalVariable - langs: - - csharp - - vb - name: AddDebugInfo(DIGlobalVariableExpression) - nameWithType: GlobalVariable.AddDebugInfo(DIGlobalVariableExpression) - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo(Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddDebugInfo - path: ../src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds a for a - example: [] - syntax: - content: public void AddDebugInfo(DIGlobalVariableExpression expression) - parameters: - - id: expression - type: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - description: Expression to add - content.vb: Public Sub AddDebugInfo(expression As DIGlobalVariableExpression) - overload: Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo* -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent - commentId: M:Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent - id: RemoveFromParent - parent: Ubiquity.NET.Llvm.Values.GlobalVariable - langs: - - csharp - - vb - name: RemoveFromParent() - nameWithType: GlobalVariable.RemoveFromParent() - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveFromParent - path: ../src/Ubiquity.NET.Llvm/Values/GlobalVariable.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes the value from its parent module, but does not delete it - example: [] - syntax: - content: public void RemoveFromParent() - content.vb: Public Sub RemoveFromParent() - overload: Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.Values.GlobalObject - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObject - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - name: GlobalObject - nameWithType: GlobalObject - fullName: Ubiquity.NET.Llvm.Values.GlobalObject -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Alignment - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Alignment - name: Alignment - nameWithType: GlobalObject.Alignment - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Alignment -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Section - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Section - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Section - name: Section - nameWithType: GlobalObject.Section - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Section -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Comdat - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Comdat - name: Comdat - nameWithType: GlobalObject.Comdat - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Comdat -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - parent: Ubiquity.NET.Llvm.Values.GlobalObject - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_SetMetadata_System_UInt32_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - name: SetMetadata(uint, IrMetadata) - nameWithType: GlobalObject.SetMetadata(uint, IrMetadata) - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(uint, Ubiquity.NET.Llvm.Metadata.IrMetadata) - nameWithType.vb: GlobalObject.SetMetadata(UInteger, IrMetadata) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(UInteger, Ubiquity.NET.Llvm.Metadata.IrMetadata) - name.vb: SetMetadata(UInteger, IrMetadata) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: SetMetadata - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_SetMetadata_System_UInt32_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObject.SetMetadata(System.UInt32,Ubiquity.NET.Llvm.Metadata.IrMetadata) - name: SetMetadata - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_SetMetadata_System_UInt32_Ubiquity_NET_Llvm_Metadata_IrMetadata_ - - name: ( - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - commentId: P:Ubiquity.NET.Llvm.Values.GlobalObject.Metadata - parent: Ubiquity.NET.Llvm.Values.GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html#Ubiquity_NET_Llvm_Values_GlobalObject_Metadata - name: Metadata - nameWithType: GlobalObject.Metadata - fullName: Ubiquity.NET.Llvm.Values.GlobalObject.Metadata -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Visibility - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Visibility - name: Visibility - nameWithType: GlobalValue.Visibility - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Visibility -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.Linkage - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_Linkage - name: Linkage - nameWithType: GlobalValue.Linkage - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.Linkage -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_UnnamedAddress - name: UnnamedAddress - nameWithType: GlobalValue.UnnamedAddress - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.UnnamedAddress -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_IsDeclaration - name: IsDeclaration - nameWithType: GlobalValue.IsDeclaration - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.IsDeclaration -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ParentModule - name: ParentModule - nameWithType: GlobalValue.ParentModule - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ParentModule -- uid: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - commentId: P:Ubiquity.NET.Llvm.Values.GlobalValue.ValueType - parent: Ubiquity.NET.Llvm.Values.GlobalValue - href: Ubiquity.NET.Llvm.Values.GlobalValue.html#Ubiquity_NET_Llvm_Values_GlobalValue_ValueType - name: ValueType - nameWithType: GlobalValue.ValueType - fullName: Ubiquity.NET.Llvm.Values.GlobalValue.ValueType -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - name: Alignment(GlobalObject, uint) - nameWithType: GlobalObjectExtensions.Alignment(GlobalObject, uint) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, uint) - nameWithType.vb: GlobalObjectExtensions.Alignment(GlobalObject, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, UInteger) - name.vb: Alignment(GlobalObject, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: Comdat(GlobalObject, string) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: Comdat(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(System.String,Ubiquity.NET.Llvm.ComdatKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - name: Comdat(GlobalObject, string, ComdatKind) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string, ComdatKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string, Ubiquity.NET.Llvm.ComdatKind) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String, ComdatKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String, Ubiquity.NET.Llvm.ComdatKind) - name.vb: Comdat(GlobalObject, String, ComdatKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObject.Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - parent: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: SectionName(GlobalObject, string) - nameWithType: GlobalObjectExtensions.SectionName(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.SectionName(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: SectionName(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(GlobalVariable, Linkage) - nameWithType: GlobalValueExtensions.Linkage(GlobalVariable, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Ubiquity.NET.Llvm.Values.GlobalVariable, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of GlobalVariable)(GlobalVariable, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of Ubiquity.NET.Llvm.Values.GlobalVariable)(Ubiquity.NET.Llvm.Values.GlobalVariable, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of GlobalVariable)(GlobalVariable, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalVariable,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(Ubiquity.NET.Llvm.Values.GlobalVariable,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(GlobalVariable, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(GlobalVariable, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Ubiquity.NET.Llvm.Values.GlobalVariable, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of GlobalVariable)(GlobalVariable, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of Ubiquity.NET.Llvm.Values.GlobalVariable)(Ubiquity.NET.Llvm.Values.GlobalVariable, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of GlobalVariable)(GlobalVariable, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalVariable,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(Ubiquity.NET.Llvm.Values.GlobalVariable,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - parent: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - definition: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(GlobalVariable, Visibility) - nameWithType: GlobalValueExtensions.Visibility(GlobalVariable, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Ubiquity.NET.Llvm.Values.GlobalVariable, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of GlobalVariable)(GlobalVariable, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of Ubiquity.NET.Llvm.Values.GlobalVariable)(Ubiquity.NET.Llvm.Values.GlobalVariable, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of GlobalVariable)(GlobalVariable, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalVariable,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(Ubiquity.NET.Llvm.Values.GlobalVariable,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(GlobalVariable, string) - nameWithType: ValueExtensions.RegisterName(GlobalVariable, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.GlobalVariable, string) - nameWithType.vb: ValueExtensions.RegisterName(Of GlobalVariable)(GlobalVariable, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.GlobalVariable)(Ubiquity.NET.Llvm.Values.GlobalVariable, String) - name.vb: RegisterName(Of GlobalVariable)(GlobalVariable, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalVariable,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.GlobalVariable,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - name: Alignment(GlobalObject, uint) - nameWithType: GlobalObjectExtensions.Alignment(GlobalObject, uint) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, uint) - nameWithType.vb: GlobalObjectExtensions.Alignment(GlobalObject, UInteger) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject, UInteger) - name.vb: Alignment(GlobalObject, UInteger) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: uint - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Alignment(Ubiquity.NET.Llvm.Values.GlobalObject,System.UInt32) - name: Alignment - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Alignment_Ubiquity_NET_Llvm_Values_GlobalObject_System_UInt32_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.UInt32 - name: UInteger - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html - name: GlobalObjectExtensions - nameWithType: GlobalObjectExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: Comdat(GlobalObject, string) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: Comdat(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - name: Comdat(GlobalObject, string, ComdatKind) - nameWithType: GlobalObjectExtensions.Comdat(GlobalObject, string, ComdatKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, string, Ubiquity.NET.Llvm.ComdatKind) - nameWithType.vb: GlobalObjectExtensions.Comdat(GlobalObject, String, ComdatKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject, String, Ubiquity.NET.Llvm.ComdatKind) - name.vb: Comdat(GlobalObject, String, ComdatKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.Comdat(Ubiquity.NET.Llvm.Values.GlobalObject,System.String,Ubiquity.NET.Llvm.ComdatKind) - name: Comdat - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_Comdat_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_Ubiquity_NET_Llvm_ComdatKind_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - href: Ubiquity.NET.Llvm.ComdatKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - name: SectionName(GlobalObject, string) - nameWithType: GlobalObjectExtensions.SectionName(GlobalObject, string) - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, string) - nameWithType.vb: GlobalObjectExtensions.SectionName(GlobalObject, String) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject, String) - name.vb: SectionName(GlobalObject, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.SectionName(Ubiquity.NET.Llvm.Values.GlobalObject,System.String) - name: SectionName - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html#Ubiquity_NET_Llvm_Values_GlobalObjectExtensions_SectionName_Ubiquity_NET_Llvm_Values_GlobalObject_System_String_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - name: Linkage(T, Linkage) - nameWithType: GlobalValueExtensions.Linkage(T, Linkage) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(T, Ubiquity.NET.Llvm.Values.Linkage) - nameWithType.vb: GlobalValueExtensions.Linkage(Of T)(T, Linkage) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage(Of T)(T, Ubiquity.NET.Llvm.Values.Linkage) - name.vb: Linkage(Of T)(T, Linkage) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Linkage``1(``0,Ubiquity.NET.Llvm.Values.Linkage) - name: Linkage - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Linkage__1___0_Ubiquity_NET_Llvm_Values_Linkage_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - href: Ubiquity.NET.Llvm.Values.Linkage.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - name: UnnamedAddress(T, UnnamedAddressKind) - nameWithType: GlobalValueExtensions.UnnamedAddress(T, UnnamedAddressKind) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - nameWithType.vb: GlobalValueExtensions.UnnamedAddress(Of T)(T, UnnamedAddressKind) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress(Of T)(T, Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name.vb: UnnamedAddress(Of T)(T, UnnamedAddressKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.UnnamedAddress``1(``0,Ubiquity.NET.Llvm.Values.UnnamedAddressKind) - name: UnnamedAddress - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_UnnamedAddress__1___0_Ubiquity_NET_Llvm_Values_UnnamedAddressKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - commentId: M:Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - name: Visibility(T, Visibility) - nameWithType: GlobalValueExtensions.Visibility(T, Visibility) - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(T, Ubiquity.NET.Llvm.Values.Visibility) - nameWithType.vb: GlobalValueExtensions.Visibility(Of T)(T, Visibility) - fullName.vb: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility(Of T)(T, Ubiquity.NET.Llvm.Values.Visibility) - name.vb: Visibility(Of T)(T, Visibility) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.Visibility``1(``0,Ubiquity.NET.Llvm.Values.Visibility) - name: Visibility - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html#Ubiquity_NET_Llvm_Values_GlobalValueExtensions_Visibility__1___0_Ubiquity_NET_Llvm_Values_Visibility_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - href: Ubiquity.NET.Llvm.Values.Visibility.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html#Ubiquity_NET_Llvm_Values_GlobalVariable_IsExternallyInitialized - name: IsExternallyInitialized - nameWithType: GlobalVariable.IsExternallyInitialized - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.IsExternallyInitialized -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html#Ubiquity_NET_Llvm_Values_GlobalVariable_IsConstant - name: IsConstant - nameWithType: GlobalVariable.IsConstant - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.IsConstant -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html#Ubiquity_NET_Llvm_Values_GlobalVariable_IsThreadLocal - name: IsThreadLocal - nameWithType: GlobalVariable.IsThreadLocal - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.IsThreadLocal -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html#Ubiquity_NET_Llvm_Values_GlobalVariable_Initializer - name: Initializer - nameWithType: GlobalVariable.Initializer - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.Initializer -- uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - commentId: T:Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - parent: Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression.html - name: DIGlobalVariableExpression - nameWithType: DIGlobalVariableExpression - fullName: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable - commentId: T:Ubiquity.NET.Llvm.Values.GlobalVariable - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - name: GlobalVariable - nameWithType: GlobalVariable - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html#Ubiquity_NET_Llvm_Values_GlobalVariable_AddDebugInfo_Ubiquity_NET_Llvm_DebugInfo_DIGlobalVariableExpression_ - name: AddDebugInfo - nameWithType: GlobalVariable.AddDebugInfo - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.AddDebugInfo -- uid: Ubiquity.NET.Llvm.DebugInfo - commentId: N:Ubiquity.NET.Llvm.DebugInfo - href: Ubiquity.html - name: Ubiquity.NET.Llvm.DebugInfo - nameWithType: Ubiquity.NET.Llvm.DebugInfo - fullName: Ubiquity.NET.Llvm.DebugInfo - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.DebugInfo - name: DebugInfo - href: Ubiquity.NET.Llvm.DebugInfo.html -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent* - commentId: Overload:Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html#Ubiquity_NET_Llvm_Values_GlobalVariable_RemoveFromParent - name: RemoveFromParent - nameWithType: GlobalVariable.RemoveFromParent - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable.RemoveFromParent diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml deleted file mode 100644 index 2078cb742d..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeAccessor.yml +++ /dev/null @@ -1,1523 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - id: IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - langs: - - csharp - - vb - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IAttributeAccessor - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Interface for raw attribute access - remarks: >- - As of LLVM v3.9x and later, Functions and call sites use distinct LLVM-C API sets for - - manipulating attributes. Fortunately, they have consistent signatures so this interface - - is used to abstract the difference via derived types specialized for each case. - - Going forward this is the most direct way to manipulate attributes on a value as all the - - other forms ultimately come down to this interface. - example: [] - syntax: - content: 'public interface IAttributeAccessor : IAttributeContainer' - content.vb: Public Interface IAttributeAccessor Inherits IAttributeContainer - inheritedMembers: - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Context - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - extensionMethods: - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - langs: - - csharp - - vb - name: GetAttributeCountAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributeCountAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeCountAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the count of attributes on a given index - example: [] - syntax: - content: uint GetAttributeCountAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the count for - return: - type: System.UInt32 - description: Number of attributes on the specified index - content.vb: Function GetAttributeCountAtIndex(index As FunctionAttributeIndex) As UInteger - overload: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex* -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - id: GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - langs: - - csharp - - vb - name: GetAttributesAtIndex(FunctionAttributeIndex) - nameWithType: IAttributeAccessor.GetAttributesAtIndex(FunctionAttributeIndex) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributesAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the attributes on a given index - example: [] - syntax: - content: IEnumerable GetAttributesAtIndex(FunctionAttributeIndex index) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: index to get the attributes for - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - description: Attributes for the index - content.vb: Function GetAttributesAtIndex(index As FunctionAttributeIndex) As IEnumerable(Of AttributeValue) - overload: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex* -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a specific attribute at a given index - example: [] - syntax: - content: AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Function GetAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) As AttributeValue - overload: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex* -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - langs: - - csharp - - vb - name: GetAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a named attribute at a given index - example: [] - syntax: - content: AttributeValue GetAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to get the attribute from - - id: name - type: System.String - description: name of the attribute to get - return: - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: The specified attribute or the default - content.vb: Function GetAttributeAtIndex(index As FunctionAttributeIndex, name As String) As AttributeValue - overload: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex* - nameWithType.vb: IAttributeAccessor.GetAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: GetAttributeAtIndex(FunctionAttributeIndex, String) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - id: AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - langs: - - csharp - - vb - name: AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - nameWithType: IAttributeAccessor.AddAttributeAtIndex(FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AddAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Adds an at a specified index - example: [] - syntax: - content: void AddAttributeAtIndex(FunctionAttributeIndex index, AttributeValue attrib) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: attrib - type: Ubiquity.NET.Llvm.Values.AttributeValue - description: Attribute to add - content.vb: Sub AddAttributeAtIndex(index As FunctionAttributeIndex, attrib As AttributeValue) - overload: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex* -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 71 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes an at a specified index - example: [] - syntax: - content: void RemoveAttributeAtIndex(FunctionAttributeIndex index, AttributeKind kind) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: kind - type: Ubiquity.NET.Llvm.Values.AttributeKind - description: Attribute to Remove - content.vb: Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, kind As AttributeKind) - overload: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex* -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - id: RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.IAttributeAccessor - langs: - - csharp - - vb - name: RemoveAttributeAtIndex(FunctionAttributeIndex, string) - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RemoveAttributeAtIndex - path: ../src/Ubiquity.NET.Llvm/Values/IAttributeAccessor.cs - startLine: 76 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Removes a named attribute at a specified index - example: [] - syntax: - content: void RemoveAttributeAtIndex(FunctionAttributeIndex index, string name) - parameters: - - id: index - type: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - description: Index to add the attribute to - - id: name - type: System.String - description: Name of the attribute to remove - content.vb: Sub RemoveAttributeAtIndex(index As FunctionAttributeIndex, name As String) - overload: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex* - nameWithType.vb: IAttributeAccessor.RemoveAttributeAtIndex(FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttributeAtIndex(FunctionAttributeIndex, String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Context - commentId: P:Ubiquity.NET.Llvm.Values.IAttributeContainer.Context - parent: Ubiquity.NET.Llvm.Values.IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html#Ubiquity_NET_Llvm_Values_IAttributeContainer_Context - name: Context - nameWithType: IAttributeContainer.Context - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Context -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - commentId: P:Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - parent: Ubiquity.NET.Llvm.Values.IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html#Ubiquity_NET_Llvm_Values_IAttributeContainer_Attributes - name: Attributes - nameWithType: IAttributeContainer.Attributes - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(IAttributeAccessor, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(IAttributeAccessor, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Values.IAttributeAccessor)(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(IAttributeAccessor, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(IAttributeAccessor, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Values.IAttributeAccessor)(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(IAttributeAccessor, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(IAttributeAccessor, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.IAttributeAccessor)(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(IAttributeAccessor, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(IAttributeAccessor, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.IAttributeAccessor)(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(IAttributeAccessor, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(IAttributeAccessor, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.IAttributeAccessor)(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(IAttributeAccessor, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(IAttributeAccessor, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.IAttributeAccessor)(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(IAttributeAccessor, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(IAttributeAccessor, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Values.IAttributeAccessor)(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(IAttributeAccessor, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(IAttributeAccessor, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Values.IAttributeAccessor)(Ubiquity.NET.Llvm.Values.IAttributeAccessor, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of IAttributeAccessor)(IAttributeAccessor, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeAccessor,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeCountAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributeCountAtIndex - nameWithType: IAttributeAccessor.GetAttributeCountAtIndex - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeCountAtIndex -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: System.UInt32 - commentId: T:System.UInt32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.uint32 - name: uint - nameWithType: uint - fullName: uint - nameWithType.vb: UInteger - fullName.vb: UInteger - name.vb: UInteger -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributesAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_ - name: GetAttributesAtIndex - nameWithType: IAttributeAccessor.GetAttributesAtIndex - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributesAtIndex -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of AttributeValue) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: IEnumerable(Of AttributeValue) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_GetAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: GetAttributeAtIndex - nameWithType: IAttributeAccessor.GetAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.GetAttributeAtIndex -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_AddAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttributeAtIndex - nameWithType: IAttributeAccessor.AddAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.AddAttributeAtIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex* - commentId: Overload:Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html#Ubiquity_NET_Llvm_Values_IAttributeAccessor_RemoveAttributeAtIndex_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttributeAtIndex - nameWithType: IAttributeAccessor.RemoveAttributeAtIndex - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor.RemoveAttributeAtIndex diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeContainer.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeContainer.yml deleted file mode 100644 index f1d408d312..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeContainer.yml +++ /dev/null @@ -1,1179 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - id: IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Context - langs: - - csharp - - vb - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IAttributeContainer - path: ../src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - startLine: 62 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Interface for objects that contain Attributes - example: [] - syntax: - content: public interface IAttributeContainer - content.vb: Public Interface IAttributeContainer - extensionMethods: - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - - Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Context - commentId: P:Ubiquity.NET.Llvm.Values.IAttributeContainer.Context - id: Context - parent: Ubiquity.NET.Llvm.Values.IAttributeContainer - langs: - - csharp - - vb - name: Context - nameWithType: IAttributeContainer.Context - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - startLine: 65 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the that owns these attributes - example: [] - syntax: - content: IContext Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.Values.IAttributeContainer.Context* -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - commentId: P:Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - id: Attributes - parent: Ubiquity.NET.Llvm.Values.IAttributeContainer - langs: - - csharp - - vb - name: Attributes - nameWithType: IAttributeContainer.Attributes - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Attributes - path: ../src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - startLine: 68 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the full set of Attributes keyed by - example: [] - syntax: - content: IAttributeDictionary Attributes { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.IAttributeDictionary - content.vb: ReadOnly Property Attributes As IAttributeDictionary - overload: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(IAttributeContainer, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(IAttributeContainer, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Values.IAttributeContainer)(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(IAttributeContainer, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(IAttributeContainer, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of Ubiquity.NET.Llvm.Values.IAttributeContainer)(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(IAttributeContainer, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(IAttributeContainer, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.IAttributeContainer)(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(IAttributeContainer, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(IAttributeContainer, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.IAttributeContainer)(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(IAttributeContainer, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(IAttributeContainer, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.IAttributeContainer)(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(IAttributeContainer, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(IAttributeContainer, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of Ubiquity.NET.Llvm.Values.IAttributeContainer)(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(IAttributeContainer, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(IAttributeContainer, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Values.IAttributeContainer)(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - parent: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - definition: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(IAttributeContainer, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(IAttributeContainer, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of Ubiquity.NET.Llvm.Values.IAttributeContainer)(Ubiquity.NET.Llvm.Values.IAttributeContainer, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of IAttributeContainer)(IAttributeContainer, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(Ubiquity.NET.Llvm.Values.IAttributeContainer,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - name: AddAttribute(T, FunctionAttributeIndex, AttributeValue) - nameWithType: AttributeContainerMixins.AddAttribute(T, FunctionAttributeIndex, AttributeValue) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - nameWithType.vb: AttributeContainerMixins.AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeValue) - name.vb: AddAttribute(Of T)(T, FunctionAttributeIndex, AttributeValue) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue) - name: AddAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - name: AddAttributes(T, FunctionAttributeIndex, IEnumerable) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IEnumerable) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IEnumerable(Of AttributeValue)) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.AttributeValue}) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_Collections_Generic_IEnumerable_Ubiquity_NET_Llvm_Values_AttributeValue__ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeKind[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeKind[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeKind()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeKind()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - name: AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, params AttributeValue[]) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, params Ubiquity.NET.Llvm.Values.AttributeValue[]) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, ParamArray Ubiquity.NET.Llvm.Values.AttributeValue()) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, ParamArray AttributeValue()) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: params - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '[' - - name: ']' - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeValue[]) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeValue___ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: ParamArray - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ( - - name: ) - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - name: AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - nameWithType: AttributeContainerMixins.AddAttributes(T, FunctionAttributeIndex, IAttributeDictionary) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - nameWithType.vb: AttributeContainerMixins.AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name.vb: AddAttributes(Of T)(T, FunctionAttributeIndex, IAttributeDictionary) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.AddAttributes``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.IAttributeDictionary) - name: AddAttributes - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_AddAttributes__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_IAttributeDictionary_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - name: RemoveAttribute(T, FunctionAttributeIndex, string) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, string) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, string) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, String) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.String) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - commentId: M:Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - name: RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - nameWithType: AttributeContainerMixins.RemoveAttribute(T, FunctionAttributeIndex, AttributeKind) - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - nameWithType.vb: AttributeContainerMixins.RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - fullName.vb: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute(Of T)(T, Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, Ubiquity.NET.Llvm.Values.AttributeKind) - name.vb: RemoveAttribute(Of T)(T, FunctionAttributeIndex, AttributeKind) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.RemoveAttribute``1(``0,Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,Ubiquity.NET.Llvm.Values.AttributeKind) - name: RemoveAttribute - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html#Ubiquity_NET_Llvm_Values_AttributeContainerMixins_RemoveAttribute__1___0_Ubiquity_NET_Llvm_Values_FunctionAttributeIndex_Ubiquity_NET_Llvm_Values_AttributeKind_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - - name: ) -- uid: Ubiquity.NET.Llvm.ContextAlias - commentId: T:Ubiquity.NET.Llvm.ContextAlias - name: ContextAlias - nameWithType: ContextAlias - fullName: Ubiquity.NET.Llvm.ContextAlias -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Context* - commentId: Overload:Ubiquity.NET.Llvm.Values.IAttributeContainer.Context - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html#Ubiquity_NET_Llvm_Values_IAttributeContainer_Context - name: Context - nameWithType: IAttributeContainer.Context - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Context -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes* - commentId: Overload:Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html#Ubiquity_NET_Llvm_Values_IAttributeContainer_Attributes - name: Attributes - nameWithType: IAttributeContainer.Attributes - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer.Attributes -- uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeDictionary - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - name: IAttributeDictionary - nameWithType: IAttributeDictionary - fullName: Ubiquity.NET.Llvm.Values.IAttributeDictionary diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeDictionary.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeDictionary.yml deleted file mode 100644 index 521071dc24..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.IAttributeDictionary.yml +++ /dev/null @@ -1,789 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeDictionary - id: IAttributeDictionary - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: IAttributeDictionary - nameWithType: IAttributeDictionary - fullName: Ubiquity.NET.Llvm.Values.IAttributeDictionary - type: Interface - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IAttributeDictionary - path: ../src/Ubiquity.NET.Llvm/Values/AttributeCollectionExtensions.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Interface to an Attribute Dictionary - remarks: >- -

This interface provides a full collection of all the - - attributes keyed by the - -

- -
note

This conceptually corresponds to the functionality of the - - LLVM AttributeSet class for Versions prior to 5. In LLVM 5 the - - equivalent type is currently AttributeList. In v5 AttributeSet - - has no index and is therefore more properly a set than in the - - past. To help remove confusion and satisfy .NET naming rules this - - is called a Dictionary as that reflects the use here and fits - - the direction of LLVM

- example: [] - syntax: - content: 'public interface IAttributeDictionary : IReadOnlyDictionary>, IReadOnlyCollection>>, IEnumerable>>, IEnumerable' - content.vb: Public Interface IAttributeDictionary Inherits IReadOnlyDictionary(Of FunctionAttributeIndex, ICollection(Of AttributeValue)), IReadOnlyCollection(Of KeyValuePair(Of FunctionAttributeIndex, ICollection(Of AttributeValue))), IEnumerable(Of KeyValuePair(Of FunctionAttributeIndex, ICollection(Of AttributeValue))), IEnumerable - inheritedMembers: - - System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.ContainsKey(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.TryGetValue(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}@) - - System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Item(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - - System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Keys - - System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Values - - System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}}.Count - - System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}}.GetEnumerator - - System.Collections.IEnumerable.GetEnumerator -references: -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.ContainsKey(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: M:System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.ContainsKey(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}} - definition: System.Collections.Generic.IReadOnlyDictionary`2.ContainsKey(`0) - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.containskey - name: ContainsKey(FunctionAttributeIndex) - nameWithType: IReadOnlyDictionary>.ContainsKey(FunctionAttributeIndex) - fullName: System.Collections.Generic.IReadOnlyDictionary>.ContainsKey(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - nameWithType.vb: IReadOnlyDictionary(Of FunctionAttributeIndex, ICollection(Of AttributeValue)).ContainsKey(FunctionAttributeIndex) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue)).ContainsKey(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.ContainsKey(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: ContainsKey - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.containskey - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.ContainsKey(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: ContainsKey - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.containskey - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.TryGetValue(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}@) - commentId: M:System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.TryGetValue(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}@) - parent: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}} - definition: System.Collections.Generic.IReadOnlyDictionary`2.TryGetValue(`0,`1@) - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.trygetvalue - name: TryGetValue(FunctionAttributeIndex, out ICollection) - nameWithType: IReadOnlyDictionary>.TryGetValue(FunctionAttributeIndex, out ICollection) - fullName: System.Collections.Generic.IReadOnlyDictionary>.TryGetValue(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, out System.Collections.Generic.ICollection) - nameWithType.vb: IReadOnlyDictionary(Of FunctionAttributeIndex, ICollection(Of AttributeValue)).TryGetValue(FunctionAttributeIndex, ICollection(Of AttributeValue)) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue)).TryGetValue(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: TryGetValue(FunctionAttributeIndex, ICollection(Of AttributeValue)) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.TryGetValue(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}@) - name: TryGetValue - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.trygetvalue - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - name: out - - name: " " - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: ) - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.TryGetValue(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}@) - name: TryGetValue - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.trygetvalue - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Item(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - commentId: P:System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Item(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - parent: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}} - definition: System.Collections.Generic.IReadOnlyDictionary`2.Item(`0) - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: this[FunctionAttributeIndex] - nameWithType: IReadOnlyDictionary>.this[FunctionAttributeIndex] - fullName: System.Collections.Generic.IReadOnlyDictionary>.this[Ubiquity.NET.Llvm.Values.FunctionAttributeIndex] - nameWithType.vb: IReadOnlyDictionary(Of FunctionAttributeIndex, ICollection(Of AttributeValue)).this[](FunctionAttributeIndex) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue)).this[](Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name.vb: this[](FunctionAttributeIndex) - spec.csharp: - - name: this - - name: '[' - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ']' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Item(Ubiquity.NET.Llvm.Values.FunctionAttributeIndex) - name: this[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.item - - name: ( - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Keys - commentId: P:System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Keys - parent: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}} - definition: System.Collections.Generic.IReadOnlyDictionary`2.Keys - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.keys - name: Keys - nameWithType: IReadOnlyDictionary>.Keys - fullName: System.Collections.Generic.IReadOnlyDictionary>.Keys - nameWithType.vb: IReadOnlyDictionary(Of FunctionAttributeIndex, ICollection(Of AttributeValue)).Keys - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue)).Keys -- uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Values - commentId: P:System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}.Values - parent: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}} - definition: System.Collections.Generic.IReadOnlyDictionary`2.Values - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.values - name: Values - nameWithType: IReadOnlyDictionary>.Values - fullName: System.Collections.Generic.IReadOnlyDictionary>.Values - nameWithType.vb: IReadOnlyDictionary(Of FunctionAttributeIndex, ICollection(Of AttributeValue)).Values - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue)).Values -- uid: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}}.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}}.Count - parent: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}} - definition: System.Collections.Generic.IReadOnlyCollection`1.Count - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection>>.Count - fullName: System.Collections.Generic.IReadOnlyCollection>>.Count - nameWithType.vb: IReadOnlyCollection(Of KeyValuePair(Of FunctionAttributeIndex, ICollection(Of AttributeValue))).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue))).Count -- uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}}.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}}.GetEnumerator - parent: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}} - definition: System.Collections.Generic.IEnumerable`1.GetEnumerator - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable>>.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable>>.GetEnumerator() - nameWithType.vb: IEnumerable(Of KeyValuePair(Of FunctionAttributeIndex, ICollection(Of AttributeValue))).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue))).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.IEnumerable.GetEnumerator - commentId: M:System.Collections.IEnumerable.GetEnumerator - parent: System.Collections.IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.IEnumerable.GetEnumerator() - spec.csharp: - - uid: System.Collections.IEnumerable.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.IEnumerable.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary`2.ContainsKey(`0) - commentId: M:System.Collections.Generic.IReadOnlyDictionary`2.ContainsKey(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.containskey - name: ContainsKey(TKey) - nameWithType: IReadOnlyDictionary.ContainsKey(TKey) - fullName: System.Collections.Generic.IReadOnlyDictionary.ContainsKey(TKey) - nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue).ContainsKey(TKey) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue).ContainsKey(TKey) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary`2.ContainsKey(`0) - name: ContainsKey - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.containskey - - name: ( - - name: TKey - - name: ) - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2.ContainsKey(`0) - name: ContainsKey - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.containskey - - name: ( - - name: TKey - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}} - commentId: T:System.Collections.Generic.IReadOnlyDictionary{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyDictionary`2 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: IReadOnlyDictionary> - nameWithType: IReadOnlyDictionary> - fullName: System.Collections.Generic.IReadOnlyDictionary> - nameWithType.vb: IReadOnlyDictionary(Of FunctionAttributeIndex, ICollection(Of AttributeValue)) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue)) - name.vb: IReadOnlyDictionary(Of FunctionAttributeIndex, ICollection(Of AttributeValue)) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: < - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary`2.TryGetValue(`0,`1@) - commentId: M:System.Collections.Generic.IReadOnlyDictionary`2.TryGetValue(`0,`1@) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.trygetvalue - name: TryGetValue(TKey, out TValue) - nameWithType: IReadOnlyDictionary.TryGetValue(TKey, out TValue) - fullName: System.Collections.Generic.IReadOnlyDictionary.TryGetValue(TKey, out TValue) - nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue).TryGetValue(TKey, TValue) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue).TryGetValue(TKey, TValue) - name.vb: TryGetValue(TKey, TValue) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary`2.TryGetValue(`0,`1@) - name: TryGetValue - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.trygetvalue - - name: ( - - name: TKey - - name: ',' - - name: " " - - name: out - - name: " " - - name: TValue - - name: ) - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2.TryGetValue(`0,`1@) - name: TryGetValue - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.trygetvalue - - name: ( - - name: TKey - - name: ',' - - name: " " - - name: TValue - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary`2.Item(`0) - commentId: P:System.Collections.Generic.IReadOnlyDictionary`2.Item(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.item - name: this[TKey] - nameWithType: IReadOnlyDictionary.this[TKey] - fullName: System.Collections.Generic.IReadOnlyDictionary.this[TKey] - nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue).this[](TKey) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue).this[](TKey) - name.vb: this[](TKey) - spec.csharp: - - name: this - - name: '[' - - name: TKey - - name: ']' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2.Item(`0) - name: this[] - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.item - - name: ( - - name: TKey - - name: ) -- uid: System.Collections.Generic.IReadOnlyDictionary`2.Keys - commentId: P:System.Collections.Generic.IReadOnlyDictionary`2.Keys - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.keys - name: Keys - nameWithType: IReadOnlyDictionary.Keys - fullName: System.Collections.Generic.IReadOnlyDictionary.Keys - nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue).Keys - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue).Keys -- uid: System.Collections.Generic.IReadOnlyDictionary`2.Values - commentId: P:System.Collections.Generic.IReadOnlyDictionary`2.Values - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2.values - name: Values - nameWithType: IReadOnlyDictionary.Values - fullName: System.Collections.Generic.IReadOnlyDictionary.Values - nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue).Values - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue).Values -- uid: System.Collections.Generic.IReadOnlyCollection`1.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection`1.Count - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}} - commentId: T:System.Collections.Generic.IReadOnlyCollection{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection>> - nameWithType: IReadOnlyCollection>> - fullName: System.Collections.Generic.IReadOnlyCollection>> - nameWithType.vb: IReadOnlyCollection(Of KeyValuePair(Of FunctionAttributeIndex, ICollection(Of AttributeValue))) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue))) - name.vb: IReadOnlyCollection(Of KeyValuePair(Of FunctionAttributeIndex, ICollection(Of AttributeValue))) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: < - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) - - name: ) -- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable`1.GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}} - commentId: T:System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{Ubiquity.NET.Llvm.Values.FunctionAttributeIndex,System.Collections.Generic.ICollection{Ubiquity.NET.Llvm.Values.AttributeValue}}} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable>> - nameWithType: IEnumerable>> - fullName: System.Collections.Generic.IEnumerable>> - nameWithType.vb: IEnumerable(Of KeyValuePair(Of FunctionAttributeIndex, ICollection(Of AttributeValue))) - fullName.vb: System.Collections.Generic.IEnumerable(Of System.Collections.Generic.KeyValuePair(Of Ubiquity.NET.Llvm.Values.FunctionAttributeIndex, System.Collections.Generic.ICollection(Of Ubiquity.NET.Llvm.Values.AttributeValue))) - name.vb: IEnumerable(Of KeyValuePair(Of FunctionAttributeIndex, ICollection(Of AttributeValue))) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: < - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: '>' - - name: '>' - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: System.Collections.Generic.KeyValuePair`2 - name: KeyValuePair - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.keyvaluepair-2 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - - name: ',' - - name: " " - - uid: System.Collections.Generic.ICollection`1 - name: ICollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - - name: ) - - name: ) - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: System.Collections.Generic.IReadOnlyDictionary`2 - commentId: T:System.Collections.Generic.IReadOnlyDictionary`2 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - name: IReadOnlyDictionary - nameWithType: IReadOnlyDictionary - fullName: System.Collections.Generic.IReadOnlyDictionary - nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue) - fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue) - name.vb: IReadOnlyDictionary(Of TKey, TValue) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: < - - name: TKey - - name: ',' - - name: " " - - name: TValue - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyDictionary`2 - name: IReadOnlyDictionary - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 - - name: ( - - name: Of - - name: " " - - name: TKey - - name: ',' - - name: " " - - name: TValue - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.InlineAsm.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.InlineAsm.yml deleted file mode 100644 index 9961926cc4..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.InlineAsm.yml +++ /dev/null @@ -1,605 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.InlineAsm - commentId: T:Ubiquity.NET.Llvm.Values.InlineAsm - id: InlineAsm - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: InlineAsm - nameWithType: InlineAsm - fullName: Ubiquity.NET.Llvm.Values.InlineAsm - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/InlineAsm.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: InlineAsm - path: ../src/Ubiquity.NET.Llvm/Values/InlineAsm.cs - startLine: 19 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Inline Assembly for the target - example: [] - syntax: - content: 'public class InlineAsm : Value, IEquatable' - content.vb: Public Class InlineAsm Inherits Value Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.InlineAsm.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.InlineAsm.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(InlineAsm, string) - nameWithType: ValueExtensions.RegisterName(InlineAsm, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.InlineAsm, string) - nameWithType.vb: ValueExtensions.RegisterName(Of InlineAsm)(InlineAsm, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.InlineAsm)(Ubiquity.NET.Llvm.Values.InlineAsm, String) - name.vb: RegisterName(Of InlineAsm)(InlineAsm, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.InlineAsm,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.InlineAsm - name: InlineAsm - href: Ubiquity.NET.Llvm.Values.InlineAsm.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.InlineAsm - name: InlineAsm - href: Ubiquity.NET.Llvm.Values.InlineAsm.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.InlineAsm,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.InlineAsm - name: InlineAsm - href: Ubiquity.NET.Llvm.Values.InlineAsm.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.InlineAsm - name: InlineAsm - href: Ubiquity.NET.Llvm.Values.InlineAsm.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Linkage.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Linkage.yml deleted file mode 100644 index 73f2298aec..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Linkage.yml +++ /dev/null @@ -1,559 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.Linkage - commentId: T:Ubiquity.NET.Llvm.Values.Linkage - id: Linkage - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.Linkage.Append - - Ubiquity.NET.Llvm.Values.Linkage.AvailableExternally - - Ubiquity.NET.Llvm.Values.Linkage.Common - - Ubiquity.NET.Llvm.Values.Linkage.DllExport - - Ubiquity.NET.Llvm.Values.Linkage.DllImport - - Ubiquity.NET.Llvm.Values.Linkage.External - - Ubiquity.NET.Llvm.Values.Linkage.ExternalWeak - - Ubiquity.NET.Llvm.Values.Linkage.Internal - - Ubiquity.NET.Llvm.Values.Linkage.LinkOnceAny - - Ubiquity.NET.Llvm.Values.Linkage.LinkOnceODR - - Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivate - - Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivateWeak - - Ubiquity.NET.Llvm.Values.Linkage.Private - - Ubiquity.NET.Llvm.Values.Linkage.Weak - - Ubiquity.NET.Llvm.Values.Linkage.WeakODR - langs: - - csharp - - vb - name: Linkage - nameWithType: Linkage - fullName: Ubiquity.NET.Llvm.Values.Linkage - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Linkage - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 10 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Linkage specification for functions and globals - example: [] - syntax: - content: public enum Linkage - content.vb: Public Enum Linkage - seealso: - - linkType: HRef - linkId: xref:llvm_langref#linkage-types - altText: LLVM Linkage Types -- uid: Ubiquity.NET.Llvm.Values.Linkage.External - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.External - id: External - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: External - nameWithType: Linkage.External - fullName: Ubiquity.NET.Llvm.Values.Linkage.External - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: External - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 13 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Externally visible Global - example: [] - syntax: - content: External = 0 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.AvailableExternally - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.AvailableExternally - id: AvailableExternally - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: AvailableExternally - nameWithType: Linkage.AvailableExternally - fullName: Ubiquity.NET.Llvm.Values.Linkage.AvailableExternally - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AvailableExternally - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 22 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Available Externally - remarks: >- - Globals with “available_externally” linkage are never emitted into the object file corresponding to the LLVM module. - From the linker’s perspective, an available_externally global is equivalent to an external declaration. They exist to allow - in-lining and other optimizations to take place given knowledge of the definition of the global, which is known to be somewhere - outside the module. Globals with available_externally linkage are allowed to be discarded at will, and allow in-lining and other - optimizations. This linkage type is only allowed on definitions, not declarations. - example: [] - syntax: - content: AvailableExternally = 1 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.LinkOnceAny - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.LinkOnceAny - id: LinkOnceAny - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: LinkOnceAny - nameWithType: Linkage.LinkOnceAny - fullName: Ubiquity.NET.Llvm.Values.Linkage.LinkOnceAny - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LinkOnceAny - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 25 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Keep a single copy when linking - example: [] - syntax: - content: LinkOnceAny = 2 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.LinkOnceODR - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.LinkOnceODR - id: LinkOnceODR - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: LinkOnceODR - nameWithType: Linkage.LinkOnceODR - fullName: Ubiquity.NET.Llvm.Values.Linkage.LinkOnceODR - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LinkOnceODR - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 28 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Like but can only be replaced by equivalent (One Definition Rule) - example: [] - syntax: - content: LinkOnceODR = 3 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.Weak - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Weak - id: Weak - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: Weak - nameWithType: Linkage.Weak - fullName: Ubiquity.NET.Llvm.Values.Linkage.Weak - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Weak - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Keep one copy when linking (weak) - example: [] - syntax: - content: Weak = 5 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.WeakODR - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.WeakODR - id: WeakODR - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: WeakODR - nameWithType: Linkage.WeakODR - fullName: Ubiquity.NET.Llvm.Values.Linkage.WeakODR - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: WeakODR - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 36 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Like but only replaced by something equivalent (e.g. One Definition Rule) - example: [] - syntax: - content: WeakODR = 6 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.Append - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Append - id: Append - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: Append - nameWithType: Linkage.Append - fullName: Ubiquity.NET.Llvm.Values.Linkage.Append - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Append - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 40 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Special purpose, applies only to global arrays - example: [] - syntax: - content: Append = 7 - return: - type: Ubiquity.NET.Llvm.Values.Linkage - seealso: - - linkType: HRef - linkId: xref:llvm_langref#linkage-types - altText: xref:llvm_langref#linkage-types -- uid: Ubiquity.NET.Llvm.Values.Linkage.Internal - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Internal - id: Internal - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: Internal - nameWithType: Linkage.Internal - fullName: Ubiquity.NET.Llvm.Values.Linkage.Internal - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Internal - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 43 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Rename collision when linking (i.e static function) - example: [] - syntax: - content: Internal = 8 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.Private - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Private - id: Private - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: Private - nameWithType: Linkage.Private - fullName: Ubiquity.NET.Llvm.Values.Linkage.Private - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Private - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 46 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Link as but omit from the generated symbol table - example: [] - syntax: - content: Private = 9 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.DllImport - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.DllImport - id: DllImport - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: DllImport - nameWithType: Linkage.DllImport - fullName: Ubiquity.NET.Llvm.Values.Linkage.DllImport - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DllImport - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 49 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Global to be imported from a DLL - example: [] - syntax: - content: DllImport = 10 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.DllExport - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.DllExport - id: DllExport - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: DllExport - nameWithType: Linkage.DllExport - fullName: Ubiquity.NET.Llvm.Values.Linkage.DllExport - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DllExport - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Global to be Exported from a DLL - example: [] - syntax: - content: DllExport = 11 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.ExternalWeak - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.ExternalWeak - id: ExternalWeak - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: ExternalWeak - nameWithType: Linkage.ExternalWeak - fullName: Ubiquity.NET.Llvm.Values.Linkage.ExternalWeak - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ExternalWeak - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 59 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: External weak linkage - remarks: >- - The semantics of this linkage follow the ELF object file model: the symbol is weak until linked, - - if not linked, the symbol becomes null instead of being an undefined reference. - example: [] - syntax: - content: ExternalWeak = 12 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.Common - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Common - id: Common - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: Common - nameWithType: Linkage.Common - fullName: Ubiquity.NET.Llvm.Values.Linkage.Common - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Common - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Tentative definitions - example: [] - syntax: - content: Common = 14 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivate - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivate - id: LinkerPrivate - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: LinkerPrivate - nameWithType: Linkage.LinkerPrivate - fullName: Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivate - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LinkerPrivate - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Like but the linker remove this symbol - example: [] - syntax: - content: LinkerPrivate = 15 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivateWeak - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivateWeak - id: LinkerPrivateWeak - parent: Ubiquity.NET.Llvm.Values.Linkage - langs: - - csharp - - vb - name: LinkerPrivateWeak - nameWithType: Linkage.LinkerPrivateWeak - fullName: Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivateWeak - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: LinkerPrivateWeak - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Weak form of - example: [] - syntax: - content: LinkerPrivateWeak = 16 - return: - type: Ubiquity.NET.Llvm.Values.Linkage -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.Linkage - commentId: T:Ubiquity.NET.Llvm.Values.Linkage - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Linkage.html - name: Linkage - nameWithType: Linkage - fullName: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Linkage.LinkOnceAny - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.LinkOnceAny - href: Ubiquity.NET.Llvm.Values.Linkage.html#Ubiquity_NET_Llvm_Values_Linkage_LinkOnceAny - name: LinkOnceAny - nameWithType: Linkage.LinkOnceAny - fullName: Ubiquity.NET.Llvm.Values.Linkage.LinkOnceAny -- uid: Ubiquity.NET.Llvm.Values.Linkage.Weak - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Weak - href: Ubiquity.NET.Llvm.Values.Linkage.html#Ubiquity_NET_Llvm_Values_Linkage_Weak - name: Weak - nameWithType: Linkage.Weak - fullName: Ubiquity.NET.Llvm.Values.Linkage.Weak -- uid: Ubiquity.NET.Llvm.Values.Linkage.Internal - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Internal - href: Ubiquity.NET.Llvm.Values.Linkage.html#Ubiquity_NET_Llvm_Values_Linkage_Internal - name: Internal - nameWithType: Linkage.Internal - fullName: Ubiquity.NET.Llvm.Values.Linkage.Internal -- uid: Ubiquity.NET.Llvm.Values.Linkage.Private - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Private - href: Ubiquity.NET.Llvm.Values.Linkage.html#Ubiquity_NET_Llvm_Values_Linkage_Private - name: Private - nameWithType: Linkage.Private - fullName: Ubiquity.NET.Llvm.Values.Linkage.Private -- uid: Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivate - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivate - href: Ubiquity.NET.Llvm.Values.Linkage.html#Ubiquity_NET_Llvm_Values_Linkage_LinkerPrivate - name: LinkerPrivate - nameWithType: Linkage.LinkerPrivate - fullName: Ubiquity.NET.Llvm.Values.Linkage.LinkerPrivate diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.UndefValue.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.UndefValue.yml deleted file mode 100644 index 6abb51523e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.UndefValue.yml +++ /dev/null @@ -1,777 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.UndefValue - commentId: T:Ubiquity.NET.Llvm.Values.UndefValue - id: UndefValue - parent: Ubiquity.NET.Llvm.Values - children: [] - langs: - - csharp - - vb - name: UndefValue - nameWithType: UndefValue - fullName: Ubiquity.NET.Llvm.Values.UndefValue - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/UndefValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UndefValue - path: ../src/Ubiquity.NET.Llvm/Values/UndefValue.cs - startLine: 9 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Represents an undefined value in LLVM IR - example: [] - syntax: - content: 'public class UndefValue : ConstantData, IEquatable' - content.vb: Public Class UndefValue Inherits ConstantData Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantData - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - - Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ToMetadata - - Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.UndefValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - commentId: P:Ubiquity.NET.Llvm.Values.Constant.IsZeroValue - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_IsZeroValue - name: IsZeroValue - nameWithType: Constant.IsZeroValue - fullName: Ubiquity.NET.Llvm.Values.Constant.IsZeroValue -- uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: NullValueFor(ITypeRef) - nameWithType: Constant.NullValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.NullValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: NullValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_NullValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ToMetadata - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - name: ToMetadata() - nameWithType: Constant.ToMetadata() - fullName: Ubiquity.NET.Llvm.Values.Constant.ToMetadata() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ToMetadata - name: ToMetadata - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ToMetadata - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: AllOnesValueFor(ITypeRef) - nameWithType: Constant.AllOnesValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.AllOnesValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: AllOnesValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_AllOnesValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: UndefinedValueFor(ITypeRef) - nameWithType: Constant.UndefinedValueFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.UndefinedValueFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: UndefinedValueFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_UndefinedValueFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - commentId: M:Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - parent: Ubiquity.NET.Llvm.Values.Constant - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - name: ConstPointerToNullFor(ITypeRef) - nameWithType: Constant.ConstPointerToNullFor(ITypeRef) - fullName: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Constant.ConstPointerToNullFor(Ubiquity.NET.Llvm.Types.ITypeRef) - name: ConstPointerToNullFor - href: Ubiquity.NET.Llvm.Values.Constant.html#Ubiquity_NET_Llvm_Values_Constant_ConstPointerToNullFor_Ubiquity_NET_Llvm_Types_ITypeRef_ - - name: ( - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - parent: Ubiquity.NET.Llvm.Values.User - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.UndefValue.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(UndefValue, string) - nameWithType: ValueExtensions.RegisterName(UndefValue, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.UndefValue, string) - nameWithType.vb: ValueExtensions.RegisterName(Of UndefValue)(UndefValue, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.UndefValue)(Ubiquity.NET.Llvm.Values.UndefValue, String) - name.vb: RegisterName(Of UndefValue)(UndefValue, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.UndefValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.UndefValue - name: UndefValue - href: Ubiquity.NET.Llvm.Values.UndefValue.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.UndefValue - name: UndefValue - href: Ubiquity.NET.Llvm.Values.UndefValue.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.UndefValue,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.UndefValue - name: UndefValue - href: Ubiquity.NET.Llvm.Values.UndefValue.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.UndefValue - name: UndefValue - href: Ubiquity.NET.Llvm.Values.UndefValue.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.UnnamedAddressKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.UnnamedAddressKind.yml deleted file mode 100644 index f74b940271..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.UnnamedAddressKind.yml +++ /dev/null @@ -1,163 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - commentId: T:Ubiquity.NET.Llvm.Values.UnnamedAddressKind - id: UnnamedAddressKind - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Global - - Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Local - - Ubiquity.NET.Llvm.Values.UnnamedAddressKind.None - langs: - - csharp - - vb - name: UnnamedAddressKind - nameWithType: UnnamedAddressKind - fullName: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: UnnamedAddressKind - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 95 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Unnamed address state of a global value - example: [] - syntax: - content: public enum UnnamedAddressKind - content.vb: Public Enum UnnamedAddressKind -- uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.None - commentId: F:Ubiquity.NET.Llvm.Values.UnnamedAddressKind.None - id: None - parent: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - langs: - - csharp - - vb - name: None - nameWithType: UnnamedAddressKind.None - fullName: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.None - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: None - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 98 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Address of the global is significant - example: [] - syntax: - content: None = 0 - return: - type: Ubiquity.NET.Llvm.Values.UnnamedAddressKind -- uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Local - commentId: F:Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Local - id: Local - parent: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - langs: - - csharp - - vb - name: Local - nameWithType: UnnamedAddressKind.Local - fullName: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Local - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Local - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 101 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Address of the global is locally significant - example: [] - syntax: - content: Local = 1 - return: - type: Ubiquity.NET.Llvm.Values.UnnamedAddressKind -- uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Global - commentId: F:Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Global - id: Global - parent: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - langs: - - csharp - - vb - name: Global - nameWithType: UnnamedAddressKind.Global - fullName: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.Global - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Global - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 104 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Address of the global is globally significant - example: [] - syntax: - content: Global = 2 - return: - type: Ubiquity.NET.Llvm.Values.UnnamedAddressKind -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - commentId: T:Ubiquity.NET.Llvm.Values.UnnamedAddressKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - name: UnnamedAddressKind - nameWithType: UnnamedAddressKind - fullName: Ubiquity.NET.Llvm.Values.UnnamedAddressKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Use.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Use.yml deleted file mode 100644 index 9195381cb5..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Use.yml +++ /dev/null @@ -1,425 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.Use - commentId: T:Ubiquity.NET.Llvm.Values.Use - id: Use - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.Use.User - - Ubiquity.NET.Llvm.Values.Use.Value - langs: - - csharp - - vb - name: Use - nameWithType: Use - fullName: Ubiquity.NET.Llvm.Values.Use - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Use.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Use - path: ../src/Ubiquity.NET.Llvm/Values/Use.cs - startLine: 12 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: LLVM Use, which is essentially a tuple of the and the used - remarks: A Use in LLVM forms a link in a directed graph of dependencies for values. - example: [] - syntax: - content: public class Use - content.vb: Public Class Use - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Values.Use.User - commentId: P:Ubiquity.NET.Llvm.Values.Use.User - id: User - parent: Ubiquity.NET.Llvm.Values.Use - langs: - - csharp - - vb - name: User - nameWithType: Use.User - fullName: Ubiquity.NET.Llvm.Values.Use.User - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Use.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: User - path: ../src/Ubiquity.NET.Llvm/Values/Use.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the of this - example: [] - syntax: - content: public User User { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.User - content.vb: Public ReadOnly Property User As User - overload: Ubiquity.NET.Llvm.Values.Use.User* -- uid: Ubiquity.NET.Llvm.Values.Use.Value - commentId: P:Ubiquity.NET.Llvm.Values.Use.Value - id: Value - parent: Ubiquity.NET.Llvm.Values.Use - langs: - - csharp - - vb - name: Value - nameWithType: Use.Value - fullName: Ubiquity.NET.Llvm.Values.Use.Value - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Use.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Value - path: ../src/Ubiquity.NET.Llvm/Values/Use.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the used - example: [] - syntax: - content: public Value Value { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.Value - content.vb: Public ReadOnly Property Value As Value - overload: Ubiquity.NET.Llvm.Values.Use.Value* -references: -- uid: Ubiquity.NET.Llvm.Values.Use.User - commentId: P:Ubiquity.NET.Llvm.Values.Use.User - href: Ubiquity.NET.Llvm.Values.Use.html#Ubiquity_NET_Llvm_Values_Use_User - name: User - nameWithType: Use.User - fullName: Ubiquity.NET.Llvm.Values.Use.User -- uid: Ubiquity.NET.Llvm.Values.Use.Value - commentId: P:Ubiquity.NET.Llvm.Values.Use.Value - href: Ubiquity.NET.Llvm.Values.Use.html#Ubiquity_NET_Llvm_Values_Use_Value - name: Value - nameWithType: Use.Value - fullName: Ubiquity.NET.Llvm.Values.Use.Value -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Values.Use - commentId: T:Ubiquity.NET.Llvm.Values.Use - href: Ubiquity.NET.Llvm.Values.Use.html - name: Use - nameWithType: Use - fullName: Ubiquity.NET.Llvm.Values.Use -- uid: Ubiquity.NET.Llvm.Values.Use.User* - commentId: Overload:Ubiquity.NET.Llvm.Values.Use.User - href: Ubiquity.NET.Llvm.Values.Use.html#Ubiquity_NET_Llvm_Values_Use_User - name: User - nameWithType: Use.User - fullName: Ubiquity.NET.Llvm.Values.Use.User -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Use.Value* - commentId: Overload:Ubiquity.NET.Llvm.Values.Use.Value - href: Ubiquity.NET.Llvm.Values.Use.html#Ubiquity_NET_Llvm_Values_Use_Value - name: Value - nameWithType: Use.Value - fullName: Ubiquity.NET.Llvm.Values.Use.Value -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.User.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.User.yml deleted file mode 100644 index 557eb3911e..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.User.yml +++ /dev/null @@ -1,850 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - id: User - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.User.Operands - - Ubiquity.NET.Llvm.Values.User.Uses - langs: - - csharp - - vb - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/User.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: User - path: ../src/Ubiquity.NET.Llvm/Values/User.cs - startLine: 14 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Contains an LLVM User value - remarks: >- - A user is one role in the user->uses relationship - - conveyed by the LLVM value model. A User can contain - - references (e.g. uses) of other values. - example: [] - syntax: - content: 'public class User : Value, IEquatable' - content.vb: Public Class User Inherits Value Implements IEquatable(Of Value) - inheritance: - - System.Object - - Ubiquity.NET.Llvm.Values.Value - derivedClasses: - - Ubiquity.NET.Llvm.Instructions.Instruction - - Ubiquity.NET.Llvm.Values.Constant - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.ToString - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.User.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.User.Operands - commentId: P:Ubiquity.NET.Llvm.Values.User.Operands - id: Operands - parent: Ubiquity.NET.Llvm.Values.User - langs: - - csharp - - vb - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/User.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Operands - path: ../src/Ubiquity.NET.Llvm/Values/User.cs - startLine: 18 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a list of the operands for this User - example: [] - syntax: - content: public ValueOperandListCollection Operands { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Value} - content.vb: Public ReadOnly Property Operands As ValueOperandListCollection(Of Value) - overload: Ubiquity.NET.Llvm.Values.User.Operands* -- uid: Ubiquity.NET.Llvm.Values.User.Uses - commentId: P:Ubiquity.NET.Llvm.Values.User.Uses - id: Uses - parent: Ubiquity.NET.Llvm.Values.User - langs: - - csharp - - vb - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/User.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Uses - path: ../src/Ubiquity.NET.Llvm/Values/User.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a collection of s used by this User - example: [] - syntax: - content: public IEnumerable Uses { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Use} - content.vb: Public ReadOnly Property Uses As IEnumerable(Of Use) - overload: Ubiquity.NET.Llvm.Values.User.Uses* -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals(Value) - nameWithType: Value.Equals(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - isExternal: true - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - name: Equals(object) - nameWithType: Value.Equals(object) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object) - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - name: Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_System_Object_ - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - name: GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ToString - name: ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - name: ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.User.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(User, string) - nameWithType: ValueExtensions.RegisterName(User, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.User, string) - nameWithType.vb: ValueExtensions.RegisterName(Of User)(User, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.User)(Ubiquity.NET.Llvm.Values.User, String) - name.vb: RegisterName(Of User)(User, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.User,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.User - name: User - href: Ubiquity.NET.Llvm.Values.User.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.User - name: User - href: Ubiquity.NET.Llvm.Values.User.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.User,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.User - name: User - href: Ubiquity.NET.Llvm.Values.User.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.User - name: User - href: Ubiquity.NET.Llvm.Values.User.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.User.Operands* - commentId: Overload:Ubiquity.NET.Llvm.Values.User.Operands - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Operands - name: Operands - nameWithType: User.Operands - fullName: Ubiquity.NET.Llvm.Values.User.Operands -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Value} - commentId: T:Ubiquity.NET.Llvm.Values.ValueOperandListCollection{Ubiquity.NET.Llvm.Values.Value} - parent: Ubiquity.NET.Llvm.Values - definition: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - name: ValueOperandListCollection - nameWithType: ValueOperandListCollection - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection - nameWithType.vb: ValueOperandListCollection(Of Value) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: ValueOperandListCollection(Of Value) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - commentId: T:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - name: ValueOperandListCollection - nameWithType: ValueOperandListCollection - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection - nameWithType.vb: ValueOperandListCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T) - name.vb: ValueOperandListCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Use - commentId: T:Ubiquity.NET.Llvm.Values.Use - href: Ubiquity.NET.Llvm.Values.Use.html - name: Use - nameWithType: Use - fullName: Ubiquity.NET.Llvm.Values.Use -- uid: Ubiquity.NET.Llvm.Values.User.Uses* - commentId: Overload:Ubiquity.NET.Llvm.Values.User.Uses - href: Ubiquity.NET.Llvm.Values.User.html#Ubiquity_NET_Llvm_Values_User_Uses - name: Uses - nameWithType: User.Uses - fullName: Ubiquity.NET.Llvm.Values.User.Uses -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Use} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.Values.Use} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of Use) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.Values.Use) - name.vb: IEnumerable(Of Use) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Use - name: Use - href: Ubiquity.NET.Llvm.Values.Use.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Use - name: Use - href: Ubiquity.NET.Llvm.Values.Use.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Value.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Value.yml deleted file mode 100644 index fedf1b5f1c..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Value.yml +++ /dev/null @@ -1,1340 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - id: Value - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.Value.Context - - Ubiquity.NET.Llvm.Values.Value.DebugRecords - - Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - - Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.GetHashCode - - Ubiquity.NET.Llvm.Values.Value.IsCallSite - - Ubiquity.NET.Llvm.Values.Value.IsFunction - - Ubiquity.NET.Llvm.Values.Value.IsInstruction - - Ubiquity.NET.Llvm.Values.Value.IsNull - - Ubiquity.NET.Llvm.Values.Value.IsUndefined - - Ubiquity.NET.Llvm.Values.Value.Name - - Ubiquity.NET.Llvm.Values.Value.NativeType - - Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - - Ubiquity.NET.Llvm.Values.Value.ToString - langs: - - csharp - - vb - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Value - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 21 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: LLVM Value - remarks: >- - Value is the root of a hierarchy of types representing values in LLVM. Values (and derived classes) - - are never constructed directly with the new operator. Instead, they are produced by other classes - - in this library internally. This is because they are just wrappers around the LLVM-C API handles - - and must maintain the "uniqueing" semantics. (e.g. allowing reference equality for values that are - - fundamentally the same value). This is generally hidden in the internals of the Ubiquity.NET.Llvm - - library so that callers need not be concerned with the details but can rely on the expected behavior - - that two instances referring to the same actual value (i.e. a function) are - - actually the same .NET object as well (within the same ) - example: [] - syntax: - content: 'public class Value : IEquatable' - content.vb: Public Class Value Implements IEquatable(Of Value) - inheritance: - - System.Object - derivedClasses: - - Ubiquity.NET.Llvm.Metadata.MetadataAsValue - - Ubiquity.NET.Llvm.Values.Argument - - Ubiquity.NET.Llvm.Values.BasicBlock - - Ubiquity.NET.Llvm.Values.InlineAsm - - Ubiquity.NET.Llvm.Values.User - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - inheritedMembers: - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - extensionMethods: - - Ubiquity.NET.Llvm.Values.Value.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - id: Equals(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: Equals(Value?) - nameWithType: Value.Equals(Value?) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 27 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Indicates whether the current object is equal to another object of the same type. - example: [] - syntax: - content: public bool Equals(Value? other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Values.Value - description: An object to compare with this object. - return: - type: System.Boolean - description: true if the current object is equal to the other parameter; otherwise, false. - content.vb: Public Function Equals(other As Value) As Boolean - overload: Ubiquity.NET.Llvm.Values.Value.Equals* - implements: - - System.IEquatable{Ubiquity.NET.Llvm.Values.Value}.Equals(Ubiquity.NET.Llvm.Values.Value) - nameWithType.vb: Value.Equals(Value) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Ubiquity.NET.Llvm.Values.Value) - name.vb: Equals(Value) -- uid: Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - commentId: M:Ubiquity.NET.Llvm.Values.Value.Equals(System.Object) - id: Equals(System.Object) - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: Equals(object?) - nameWithType: Value.Equals(object?) - fullName: Ubiquity.NET.Llvm.Values.Value.Equals(object?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Equals - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 30 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Determines whether the specified object is equal to the current object. - example: [] - syntax: - content: public override bool Equals(object? obj) - parameters: - - id: obj - type: System.Object - description: The object to compare with the current object. - return: - type: System.Boolean - description: true if the specified object is equal to the current object; otherwise, false. - content.vb: Public Overrides Function Equals(obj As Object) As Boolean - overridden: System.Object.Equals(System.Object) - overload: Ubiquity.NET.Llvm.Values.Value.Equals* - nameWithType.vb: Value.Equals(Object) - fullName.vb: Ubiquity.NET.Llvm.Values.Value.Equals(Object) - name.vb: Equals(Object) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode - commentId: M:Ubiquity.NET.Llvm.Values.Value.GetHashCode - id: GetHashCode - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: GetHashCode() - nameWithType: Value.GetHashCode() - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetHashCode - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 33 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Serves as the default hash function. - example: [] - syntax: - content: public override int GetHashCode() - return: - type: System.Int32 - description: A hash code for the current object. - content.vb: Public Overrides Function GetHashCode() As Integer - overridden: System.Object.GetHashCode - overload: Ubiquity.NET.Llvm.Values.Value.GetHashCode* -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - id: Name - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Name - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 44 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets or sets name of the value (if any) - remarks: >- -
note

- - LLVM will add a numeric suffix to the name set if a - - value with the name already exists. Thus, the name - - read from this property may not match what is set. - -

- example: [] - syntax: - content: public string Name { get; set; } - parameters: [] - return: - type: System.String - content.vb: Public Property Name As String - overload: Ubiquity.NET.Llvm.Values.Value.Name* -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsUndefined - id: IsUndefined - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsUndefined - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 52 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether this value is Undefined - example: [] - syntax: - content: public bool IsUndefined { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsUndefined As Boolean - overload: Ubiquity.NET.Llvm.Values.Value.IsUndefined* -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsNull - id: IsNull - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsNull - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 55 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the Value represents the NULL value for the values type - example: [] - syntax: - content: public bool IsNull { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsNull As Boolean - overload: Ubiquity.NET.Llvm.Values.Value.IsNull* -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType - commentId: P:Ubiquity.NET.Llvm.Values.Value.NativeType - id: NativeType - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NativeType - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 58 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the type of the value - example: [] - syntax: - content: public ITypeRef NativeType { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.Types.ITypeRef - content.vb: Public ReadOnly Property NativeType As ITypeRef - overload: Ubiquity.NET.Llvm.Values.Value.NativeType* -- uid: Ubiquity.NET.Llvm.Values.Value.Context - commentId: P:Ubiquity.NET.Llvm.Values.Value.Context - id: Context - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Context - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 61 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the context for this value - example: [] - syntax: - content: public IContext Context { get; } - parameters: [] - return: - type: Ubiquity.NET.Llvm.IContext - content.vb: Public ReadOnly Property Context As IContext - overload: Ubiquity.NET.Llvm.Values.Value.Context* -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsInstruction - id: IsInstruction - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsInstruction - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 64 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the Value is an instruction - example: [] - syntax: - content: public bool IsInstruction { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsInstruction As Boolean - overload: Ubiquity.NET.Llvm.Values.Value.IsInstruction* -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsFunction - id: IsFunction - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsFunction - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 67 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the Value is a function - example: [] - syntax: - content: public bool IsFunction { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsFunction As Boolean - overload: Ubiquity.NET.Llvm.Values.Value.IsFunction* -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite - commentId: P:Ubiquity.NET.Llvm.Values.Value.IsCallSite - id: IsCallSite - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IsCallSite - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 70 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the Value is a call-site - example: [] - syntax: - content: public bool IsCallSite { get; } - parameters: [] - return: - type: System.Boolean - content.vb: Public ReadOnly Property IsCallSite As Boolean - overload: Ubiquity.NET.Llvm.Values.Value.IsCallSite* -- uid: Ubiquity.NET.Llvm.Values.Value.ToString - commentId: M:Ubiquity.NET.Llvm.Values.Value.ToString - id: ToString - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: ToString() - nameWithType: Value.ToString() - fullName: Ubiquity.NET.Llvm.Values.Value.ToString() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ToString - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 81 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Generates a string representing the LLVM syntax of the value - example: [] - syntax: - content: public override string? ToString() - return: - type: System.String - description: string version of the value formatted by LLVM - content.vb: Public Overrides Function ToString() As String - overridden: System.Object.ToString - overload: Ubiquity.NET.Llvm.Values.Value.ToString* -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - commentId: M:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - id: ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: ReplaceAllUsesWith(Value) - nameWithType: Value.ReplaceAllUsesWith(Value) - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith(Ubiquity.NET.Llvm.Values.Value) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ReplaceAllUsesWith - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Replace all uses of a with another one - example: [] - syntax: - content: public void ReplaceAllUsesWith(Value other) - parameters: - - id: other - type: Ubiquity.NET.Llvm.Values.Value - description: New value - content.vb: Public Sub ReplaceAllUsesWith(other As Value) - overload: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith* -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords - commentId: P:Ubiquity.NET.Llvm.Values.Value.DebugRecords - id: DebugRecords - parent: Ubiquity.NET.Llvm.Values.Value - langs: - - csharp - - vb - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/Value.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: DebugRecords - path: ../src/Ubiquity.NET.Llvm/Values/Value.cs - startLine: 95 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets an enumeration of all the debug records associated with this value - example: [] - syntax: - content: public IEnumerable DebugRecords { get; } - parameters: [] - return: - type: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugRecord} - content.vb: Public ReadOnly Property DebugRecords As IEnumerable(Of DebugRecord) - overload: Ubiquity.NET.Llvm.Values.Value.DebugRecords* -references: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.ContextAlias - commentId: T:Ubiquity.NET.Llvm.ContextAlias - name: ContextAlias - nameWithType: ContextAlias - fullName: Ubiquity.NET.Llvm.ContextAlias -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - commentId: T:System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - parent: System - definition: System.IEquatable`1 - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value) - name.vb: IEquatable(Of Value) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - definition: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(Value, string) - nameWithType: ValueExtensions.RegisterName(Value, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Ubiquity.NET.Llvm.Values.Value, string) - nameWithType.vb: ValueExtensions.RegisterName(Of Value)(Value, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of Ubiquity.NET.Llvm.Values.Value)(Ubiquity.NET.Llvm.Values.Value, String) - name.vb: RegisterName(Of Value)(Value, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.Value,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: '>' - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(Ubiquity.NET.Llvm.Values.Value,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: System.IEquatable`1 - commentId: T:System.IEquatable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - name: IEquatable - nameWithType: IEquatable - fullName: System.IEquatable - nameWithType.vb: IEquatable(Of T) - fullName.vb: System.IEquatable(Of T) - name.vb: IEquatable(Of T) - spec.csharp: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.IEquatable`1 - name: IEquatable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - isExternal: true - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: < - - name: T - - name: '>' - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: string - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - name: RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - - name: ( - - name: Of - - name: " " - - name: T - - name: ) - - name: ( - - name: T - - name: ',' - - name: " " - - uid: System.String - name: String - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.Value.Equals* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.Equals - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Equals_Ubiquity_NET_Llvm_Values_Value_ - name: Equals - nameWithType: Value.Equals - fullName: Ubiquity.NET.Llvm.Values.Value.Equals -- uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value}.Equals(Ubiquity.NET.Llvm.Values.Value) - commentId: M:System.IEquatable{Ubiquity.NET.Llvm.Values.Value}.Equals(Ubiquity.NET.Llvm.Values.Value) - parent: System.IEquatable{Ubiquity.NET.Llvm.Values.Value} - definition: System.IEquatable`1.Equals(`0) - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(Value) - nameWithType: IEquatable.Equals(Value) - fullName: System.IEquatable.Equals(Ubiquity.NET.Llvm.Values.Value) - nameWithType.vb: IEquatable(Of Value).Equals(Value) - fullName.vb: System.IEquatable(Of Ubiquity.NET.Llvm.Values.Value).Equals(Ubiquity.NET.Llvm.Values.Value) - spec.csharp: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value}.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) - spec.vb: - - uid: System.IEquatable{Ubiquity.NET.Llvm.Values.Value}.Equals(Ubiquity.NET.Llvm.Values.Value) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - href: Ubiquity.NET.Llvm.Values.Value.html - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: System.IEquatable`1.Equals(`0) - commentId: M:System.IEquatable`1.Equals(`0) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - name: Equals(T) - nameWithType: IEquatable.Equals(T) - fullName: System.IEquatable.Equals(T) - nameWithType.vb: IEquatable(Of T).Equals(T) - fullName.vb: System.IEquatable(Of T).Equals(T) - spec.csharp: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) - spec.vb: - - uid: System.IEquatable`1.Equals(`0) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.iequatable-1.equals - - name: ( - - name: T - - name: ) -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.GetHashCode* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.GetHashCode - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_GetHashCode - name: GetHashCode - nameWithType: Value.GetHashCode - fullName: Ubiquity.NET.Llvm.Values.Value.GetHashCode -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: Ubiquity.NET.Llvm.Values.Value.Name* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.Name - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Values.Value.IsUndefined* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.IsUndefined - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsUndefined - name: IsUndefined - nameWithType: Value.IsUndefined - fullName: Ubiquity.NET.Llvm.Values.Value.IsUndefined -- uid: Ubiquity.NET.Llvm.Values.Value.IsNull* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.IsNull - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsNull - name: IsNull - nameWithType: Value.IsNull - fullName: Ubiquity.NET.Llvm.Values.Value.IsNull -- uid: Ubiquity.NET.Llvm.Values.Value.NativeType* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.NativeType - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_NativeType - name: NativeType - nameWithType: Value.NativeType - fullName: Ubiquity.NET.Llvm.Values.Value.NativeType -- uid: Ubiquity.NET.Llvm.Types.ITypeRef - commentId: T:Ubiquity.NET.Llvm.Types.ITypeRef - parent: Ubiquity.NET.Llvm.Types - href: Ubiquity.NET.Llvm.Types.ITypeRef.html - name: ITypeRef - nameWithType: ITypeRef - fullName: Ubiquity.NET.Llvm.Types.ITypeRef -- uid: Ubiquity.NET.Llvm.Types - commentId: N:Ubiquity.NET.Llvm.Types - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Types - nameWithType: Ubiquity.NET.Llvm.Types - fullName: Ubiquity.NET.Llvm.Types - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Types - name: Types - href: Ubiquity.NET.Llvm.Types.html -- uid: Ubiquity.NET.Llvm.Values.Value.Context* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.Context - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Context - name: Context - nameWithType: Value.Context - fullName: Ubiquity.NET.Llvm.Values.Value.Context -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.Values.Value.IsInstruction* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.IsInstruction - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsInstruction - name: IsInstruction - nameWithType: Value.IsInstruction - fullName: Ubiquity.NET.Llvm.Values.Value.IsInstruction -- uid: Ubiquity.NET.Llvm.Values.Value.IsFunction* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.IsFunction - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsFunction - name: IsFunction - nameWithType: Value.IsFunction - fullName: Ubiquity.NET.Llvm.Values.Value.IsFunction -- uid: Ubiquity.NET.Llvm.Values.Value.IsCallSite* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.IsCallSite - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_IsCallSite - name: IsCallSite - nameWithType: Value.IsCallSite - fullName: Ubiquity.NET.Llvm.Values.Value.IsCallSite -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: Ubiquity.NET.Llvm.Values.Value.ToString* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.ToString - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ToString - name: ToString - nameWithType: Value.ToString - fullName: Ubiquity.NET.Llvm.Values.Value.ToString -- uid: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_ReplaceAllUsesWith_Ubiquity_NET_Llvm_Values_Value_ - name: ReplaceAllUsesWith - nameWithType: Value.ReplaceAllUsesWith - fullName: Ubiquity.NET.Llvm.Values.Value.ReplaceAllUsesWith -- uid: Ubiquity.NET.Llvm.Values.Value.DebugRecords* - commentId: Overload:Ubiquity.NET.Llvm.Values.Value.DebugRecords - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_DebugRecords - name: DebugRecords - nameWithType: Value.DebugRecords - fullName: Ubiquity.NET.Llvm.Values.Value.DebugRecords -- uid: System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugRecord} - commentId: T:System.Collections.Generic.IEnumerable{Ubiquity.NET.Llvm.DebugInfo.DebugRecord} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of DebugRecord) - fullName.vb: System.Collections.Generic.IEnumerable(Of Ubiquity.NET.Llvm.DebugInfo.DebugRecord) - name.vb: IEnumerable(Of DebugRecord) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - name: DebugRecord - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - name: DebugRecord - href: Ubiquity.NET.Llvm.DebugInfo.DebugRecord.html - - name: ) -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ValueExtensions.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ValueExtensions.yml deleted file mode 100644 index 609b5c6bac..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ValueExtensions.yml +++ /dev/null @@ -1,495 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - id: ValueExtensions - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - langs: - - csharp - - vb - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ValueExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ValueExtensions - path: ../src/Ubiquity.NET.Llvm/Values/ValueExtensions.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Provides extension methods to that cannot be achieved as members of the class - remarks: >- - Using generic static extension methods allows for fluent coding while retaining the type of the "this" parameter. - - If these were members of the class then the only return type could be , - - thus losing the original type and requiring a cast to get back to it. - example: [] - syntax: - content: public static class ValueExtensions - content.vb: Public Module ValueExtensions - inheritance: - - System.Object - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.MemberwiseClone - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - commentId: M:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName``1(``0,System.String) - id: RegisterName``1(``0,System.String) - isExtensionMethod: true - parent: Ubiquity.NET.Llvm.Values.ValueExtensions - langs: - - csharp - - vb - name: RegisterName(T, string) - nameWithType: ValueExtensions.RegisterName(T, string) - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(T, string) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ValueExtensions.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: RegisterName - path: ../src/Ubiquity.NET.Llvm/Values/ValueExtensions.cs - startLine: 41 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Sets the virtual register name for a value - remarks: >- -

Technically speaking only an can have register name - - information. However, since LLVM will perform constant folding in the - - most of the methods in return a rather - - than a more specific . Thus, without this extension method here, - - code would need to know ahead of time that an actual instruction would be produced then cast the result - - to an and then set the debug location. This makes the code rather - - ugly and tedious to manage. Placing this as a generic extension method ensures that the return type matches - - the original and no additional casting is needed, which would defeat the purpose of doing this. For - - types that are not instructions this does nothing. This allows for a simpler fluent - - style of programming where the actual type is retained even in cases where an - - method will always return an actual instruction.

- -

Since the property is available on all s this is slightly - - redundant. It is useful for maintaining the fluent style of coding along with expressing intent more clearly. - - (e.g. using this makes it expressly clear that the intent is to set the virtual register name and not the - - name of a local variable etc...) Using the fluent style allows a significant reduction in the number of - - overloaded methods in to account for all variations with or without a name. - -

- example: [] - syntax: - content: 'public static T RegisterName(this T value, string name) where T : Value' - parameters: - - id: value - type: '{T}' - description: Value to set register name for - - id: name - type: System.String - description: Name for the virtual register the value represents - typeParameters: - - id: T - description: Type of the value to set the name for - return: - type: '{T}' - description: value for fluent usage - content.vb: Public Shared Function RegisterName(Of T As Value)(value As T, name As String) As T - overload: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName* - nameWithType.vb: ValueExtensions.RegisterName(Of T)(T, String) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName(Of T)(T, String) - name.vb: RegisterName(Of T)(T, String) -references: -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.MemberwiseClone - commentId: M:System.Object.MemberwiseClone - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: MemberwiseClone() - nameWithType: object.MemberwiseClone() - fullName: object.MemberwiseClone() - nameWithType.vb: Object.MemberwiseClone() - fullName.vb: Object.MemberwiseClone() - spec.csharp: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) - spec.vb: - - uid: System.Object.MemberwiseClone - name: MemberwiseClone - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.Instructions.Instruction - commentId: T:Ubiquity.NET.Llvm.Instructions.Instruction - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.Instruction.html - name: Instruction - nameWithType: Instruction - fullName: Ubiquity.NET.Llvm.Instructions.Instruction -- uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - commentId: T:Ubiquity.NET.Llvm.Instructions.InstructionBuilder - parent: Ubiquity.NET.Llvm.Instructions - href: Ubiquity.NET.Llvm.Instructions.InstructionBuilder.html - name: InstructionBuilder - nameWithType: InstructionBuilder - fullName: Ubiquity.NET.Llvm.Instructions.InstructionBuilder -- uid: Ubiquity.NET.Llvm.Values.Value.Name - commentId: P:Ubiquity.NET.Llvm.Values.Value.Name - parent: Ubiquity.NET.Llvm.Values.Value - href: Ubiquity.NET.Llvm.Values.Value.html#Ubiquity_NET_Llvm_Values_Value_Name - name: Name - nameWithType: Value.Name - fullName: Ubiquity.NET.Llvm.Values.Value.Name -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName* - commentId: Overload:Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html#Ubiquity_NET_Llvm_Values_ValueExtensions_RegisterName__1___0_System_String_ - name: RegisterName - nameWithType: ValueExtensions.RegisterName - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions.RegisterName -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: System.String - commentId: T:System.String - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.string - name: string - nameWithType: string - fullName: string - nameWithType.vb: String - fullName.vb: String - name.vb: String -- uid: Ubiquity.NET.Llvm.Instructions - commentId: N:Ubiquity.NET.Llvm.Instructions - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Instructions - nameWithType: Ubiquity.NET.Llvm.Instructions - fullName: Ubiquity.NET.Llvm.Instructions - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Instructions - name: Instructions - href: Ubiquity.NET.Llvm.Instructions.html -- uid: T - name: T - nameWithType: T - fullName: T diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml deleted file mode 100644 index b729a31bee..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.yml +++ /dev/null @@ -1,1161 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - commentId: T:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - id: ValueOperandListCollection`1 - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Contains(`0) - - Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Count - - Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetEnumerator - - Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetOperand``1(System.Index) - - Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Item(System.Int32) - langs: - - csharp - - vb - name: ValueOperandListCollection - nameWithType: ValueOperandListCollection - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection - type: Class - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ValueOperandListCollection - path: ../src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - startLine: 15 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Support class to provide read/update semantics to the operands of a container element - remarks: >- - This class is used to implement Operand lists of elements including sub lists based on an offset. - - The latter case is useful for types that expose some fixed set of operands as properties and some - - arbitrary number of additional items as operands. - example: [] - syntax: - content: 'public sealed class ValueOperandListCollection : IOperandCollection, IReadOnlyCollection, IEnumerable, IEnumerable where T : Value' - typeParameters: - - id: T - description: Type of elements in the collection - content.vb: Public NotInheritable Class ValueOperandListCollection(Of T As Value) Implements IOperandCollection(Of T), IReadOnlyCollection(Of T), IEnumerable(Of T), IEnumerable - inheritance: - - System.Object - implements: - - Ubiquity.NET.Llvm.IOperandCollection{{T}} - - System.Collections.Generic.IReadOnlyCollection{{T}} - - System.Collections.Generic.IEnumerable{{T}} - - System.Collections.IEnumerable - inheritedMembers: - - System.Object.Equals(System.Object) - - System.Object.Equals(System.Object,System.Object) - - System.Object.GetHashCode - - System.Object.GetType - - System.Object.ReferenceEquals(System.Object,System.Object) - - System.Object.ToString - nameWithType.vb: ValueOperandListCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T) - name.vb: ValueOperandListCollection(Of T) -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Item(System.Int32) - id: Item(System.Int32) - parent: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - langs: - - csharp - - vb - name: this[int] - nameWithType: ValueOperandListCollection.this[int] - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.this[int] - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: this[] - path: ../src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - startLine: 23 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the operand at the specified index - example: [] - syntax: - content: public T? this[int index] { get; set; } - parameters: - - id: index - type: System.Int32 - description: Index of the operand to receive - return: - type: '{T}' - description: Item at the specified index - content.vb: Public Default Property this[](index As Integer) As T - overload: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Item* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: index is out of range for this collection - implements: - - Ubiquity.NET.Llvm.IOperandCollection{{T}}.Item(System.Int32) - nameWithType.vb: ValueOperandListCollection(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).this[](Integer) - name.vb: this[](Integer) -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Count - commentId: P:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Count - id: Count - parent: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - langs: - - csharp - - vb - name: Count - nameWithType: ValueOperandListCollection.Count - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.Count - type: Property - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Count - path: ../src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - startLine: 34 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets the count of operands in this collection - example: [] - syntax: - content: public int Count { get; } - parameters: [] - return: - type: System.Int32 - content.vb: Public ReadOnly Property Count As Integer - overload: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Count* - implements: - - System.Collections.Generic.IReadOnlyCollection{{T}}.Count - nameWithType.vb: ValueOperandListCollection(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).Count -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetEnumerator - commentId: M:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetEnumerator - id: GetEnumerator - parent: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - langs: - - csharp - - vb - name: GetEnumerator() - nameWithType: ValueOperandListCollection.GetEnumerator() - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.GetEnumerator() - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetEnumerator - path: ../src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - startLine: 38 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets an enumerator for this collection - example: [] - syntax: - content: public IEnumerator GetEnumerator() - return: - type: System.Collections.Generic.IEnumerator{{T}} - description: Enumerator for the operands in this collection - content.vb: Public Function GetEnumerator() As IEnumerator(Of T) - overload: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetEnumerator* - implements: - - System.Collections.Generic.IEnumerable{{T}}.GetEnumerator - nameWithType.vb: ValueOperandListCollection(Of T).GetEnumerator() - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).GetEnumerator() -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Contains(`0) - commentId: M:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Contains(`0) - id: Contains(`0) - parent: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - langs: - - csharp - - vb - name: Contains(T?) - nameWithType: ValueOperandListCollection.Contains(T?) - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.Contains(T?) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Contains - path: ../src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - startLine: 57 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Gets a value indicating whether the collection contains the specified item or not - example: [] - syntax: - content: public bool Contains(T? item) - parameters: - - id: item - type: '{T}' - description: Item to look for - return: - type: System.Boolean - description: true if the item is found - content.vb: Public Function Contains(item As T) As Boolean - overload: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Contains* - implements: - - Ubiquity.NET.Llvm.IOperandCollection{{T}}.Contains({T}) - nameWithType.vb: ValueOperandListCollection(Of T).Contains(T) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).Contains(T) - name.vb: Contains(T) -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetOperand``1(System.Index) - commentId: M:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetOperand``1(System.Index) - id: GetOperand``1(System.Index) - parent: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - langs: - - csharp - - vb - name: GetOperand(Index) - nameWithType: ValueOperandListCollection.GetOperand(Index) - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.GetOperand(System.Index) - type: Method - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: GetOperand - path: ../src/Ubiquity.NET.Llvm/Values/ValueOperandListCollection.cs - startLine: 66 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Specialized indexer to get the element as a specific derived type - remarks: This provides a common (and likely internally optimized) means of getting an element as a specific type - example: [] - syntax: - content: 'public TItem? GetOperand(Index i) where TItem : T' - parameters: - - id: i - type: System.Index - description: index for the item - typeParameters: - - id: TItem - description: Type of the element (must be derived from - return: - type: '{TItem}' - description: Item at the specified index - content.vb: Public Function GetOperand(Of TItem As T)(i As Index) As TItem - overload: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetOperand* - exceptions: - - type: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - description: index is out of range for the collection - - type: System.InvalidCastException - commentId: T:System.InvalidCastException - description: If the element at the index is not castable to TItem - nameWithType.vb: ValueOperandListCollection(Of T).GetOperand(Of TItem)(Index) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).GetOperand(Of TItem)(System.Index) - name.vb: GetOperand(Of TItem)(Index) -references: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: System.Object - commentId: T:System.Object - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - name: object - nameWithType: object - fullName: object - nameWithType.vb: Object - fullName.vb: Object - name.vb: Object -- uid: Ubiquity.NET.Llvm.IOperandCollection{{T}} - commentId: T:Ubiquity.NET.Llvm.IOperandCollection{`0} - parent: Ubiquity.NET.Llvm - definition: Ubiquity.NET.Llvm.IOperandCollection`1 - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IReadOnlyCollection{{T}} - commentId: T:System.Collections.Generic.IReadOnlyCollection{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IReadOnlyCollection`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable{{T}} - commentId: T:System.Collections.Generic.IEnumerable{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerable`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.IEnumerable - commentId: T:System.Collections.IEnumerable - parent: System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.IEnumerable -- uid: System.Object.Equals(System.Object) - commentId: M:System.Object.Equals(System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: Equals(object) - nameWithType: object.Equals(object) - fullName: object.Equals(object) - nameWithType.vb: Object.Equals(Object) - fullName.vb: Object.Equals(Object) - name.vb: Equals(Object) - spec.csharp: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.Equals(System.Object,System.Object) - commentId: M:System.Object.Equals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: Equals(object, object) - nameWithType: object.Equals(object, object) - fullName: object.Equals(object, object) - nameWithType.vb: Object.Equals(Object, Object) - fullName.vb: Object.Equals(Object, Object) - name.vb: Equals(Object, Object) - spec.csharp: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.Equals(System.Object,System.Object) - name: Equals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.GetHashCode - commentId: M:System.Object.GetHashCode - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: GetHashCode() - nameWithType: object.GetHashCode() - fullName: object.GetHashCode() - nameWithType.vb: Object.GetHashCode() - fullName.vb: Object.GetHashCode() - spec.csharp: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetHashCode - name: GetHashCode - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - - name: ( - - name: ) -- uid: System.Object.GetType - commentId: M:System.Object.GetType - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: GetType() - nameWithType: object.GetType() - fullName: object.GetType() - nameWithType.vb: Object.GetType() - fullName.vb: Object.GetType() - spec.csharp: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) - spec.vb: - - uid: System.Object.GetType - name: GetType - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.gettype - - name: ( - - name: ) -- uid: System.Object.ReferenceEquals(System.Object,System.Object) - commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ReferenceEquals(object, object) - nameWithType: object.ReferenceEquals(object, object) - fullName: object.ReferenceEquals(object, object) - nameWithType.vb: Object.ReferenceEquals(Object, Object) - fullName.vb: Object.ReferenceEquals(Object, Object) - name.vb: ReferenceEquals(Object, Object) - spec.csharp: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) - spec.vb: - - uid: System.Object.ReferenceEquals(System.Object,System.Object) - name: ReferenceEquals - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - - name: ( - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ',' - - name: " " - - uid: System.Object - name: Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object - - name: ) -- uid: System.Object.ToString - commentId: M:System.Object.ToString - parent: System.Object - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ToString() - nameWithType: object.ToString() - fullName: object.ToString() - nameWithType.vb: Object.ToString() - fullName.vb: Object.ToString() - spec.csharp: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) - spec.vb: - - uid: System.Object.ToString - name: ToString - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.object.tostring - - name: ( - - name: ) -- uid: System - commentId: N:System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System - nameWithType: System - fullName: System -- uid: Ubiquity.NET.Llvm.IOperandCollection`1 - commentId: T:Ubiquity.NET.Llvm.IOperandCollection`1 - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: System.Collections.Generic.IReadOnlyCollection`1 - commentId: T:System.Collections.Generic.IReadOnlyCollection`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - name: IReadOnlyCollection - nameWithType: IReadOnlyCollection - fullName: System.Collections.Generic.IReadOnlyCollection - nameWithType.vb: IReadOnlyCollection(Of T) - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T) - name.vb: IReadOnlyCollection(Of T) - spec.csharp: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IReadOnlyCollection`1 - name: IReadOnlyCollection - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic - commentId: N:System.Collections.Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections.Generic - nameWithType: System.Collections.Generic - fullName: System.Collections.Generic - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - - name: . - - uid: System.Collections.Generic - name: Generic - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic -- uid: System.Collections.Generic.IEnumerable`1 - commentId: T:System.Collections.Generic.IEnumerable`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: IEnumerable - nameWithType: IEnumerable - fullName: System.Collections.Generic.IEnumerable - nameWithType.vb: IEnumerable(Of T) - fullName.vb: System.Collections.Generic.IEnumerable(Of T) - name.vb: IEnumerable(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1 - name: IEnumerable - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections - commentId: N:System.Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - name: System.Collections - nameWithType: System.Collections - fullName: System.Collections - spec.csharp: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections - spec.vb: - - uid: System - name: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system - - name: . - - uid: System.Collections - name: Collections - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections -- uid: System.ArgumentOutOfRangeException - commentId: T:System.ArgumentOutOfRangeException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception - name: ArgumentOutOfRangeException - nameWithType: ArgumentOutOfRangeException - fullName: System.ArgumentOutOfRangeException -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Item* - commentId: Overload:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Item - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html#Ubiquity_NET_Llvm_Values_ValueOperandListCollection_1_Item_System_Int32_ - name: this - nameWithType: ValueOperandListCollection.this - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.this - nameWithType.vb: ValueOperandListCollection(Of T).this[] - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).this[] - name.vb: this[] -- uid: Ubiquity.NET.Llvm.IOperandCollection{{T}}.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.IOperandCollection{`0}.Item(System.Int32) - parent: Ubiquity.NET.Llvm.IOperandCollection{{T}} - definition: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: IOperandCollection.this[int] - fullName: Ubiquity.NET.Llvm.IOperandCollection.this[int] - nameWithType.vb: IOperandCollection(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection{`0}.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: System.Int32 - commentId: T:System.Int32 - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: int - nameWithType: int - fullName: int - nameWithType.vb: Integer - fullName.vb: Integer - name.vb: Integer -- uid: '{T}' - commentId: '!:T' - definition: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - commentId: P:Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - name: this[int] - nameWithType: IOperandCollection.this[int] - fullName: Ubiquity.NET.Llvm.IOperandCollection.this[int] - nameWithType.vb: IOperandCollection(Of T).this[](Integer) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).this[](Integer) - name.vb: this[](Integer) - spec.csharp: - - name: this - - name: '[' - - uid: System.Int32 - name: int - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ']' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Item(System.Int32) - name: this[] - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Item_System_Int32_ - - name: ( - - uid: System.Int32 - name: Integer - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.int32 - - name: ) -- uid: T - name: T - nameWithType: T - fullName: T -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Count* - commentId: Overload:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Count - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html#Ubiquity_NET_Llvm_Values_ValueOperandListCollection_1_Count - name: Count - nameWithType: ValueOperandListCollection.Count - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.Count - nameWithType.vb: ValueOperandListCollection(Of T).Count - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).Count -- uid: System.Collections.Generic.IReadOnlyCollection{{T}}.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection{`0}.Count - parent: System.Collections.Generic.IReadOnlyCollection{{T}} - definition: System.Collections.Generic.IReadOnlyCollection`1.Count - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: System.Collections.Generic.IReadOnlyCollection`1.Count - commentId: P:System.Collections.Generic.IReadOnlyCollection`1.Count - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1.count - name: Count - nameWithType: IReadOnlyCollection.Count - fullName: System.Collections.Generic.IReadOnlyCollection.Count - nameWithType.vb: IReadOnlyCollection(Of T).Count - fullName.vb: System.Collections.Generic.IReadOnlyCollection(Of T).Count -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetEnumerator* - commentId: Overload:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetEnumerator - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html#Ubiquity_NET_Llvm_Values_ValueOperandListCollection_1_GetEnumerator - name: GetEnumerator - nameWithType: ValueOperandListCollection.GetEnumerator - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.GetEnumerator - nameWithType.vb: ValueOperandListCollection(Of T).GetEnumerator - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).GetEnumerator -- uid: System.Collections.Generic.IEnumerable{{T}}.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable{`0}.GetEnumerator - parent: System.Collections.Generic.IEnumerable{{T}} - definition: System.Collections.Generic.IEnumerable`1.GetEnumerator - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable{`0}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable{`0}.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerator{{T}} - commentId: T:System.Collections.Generic.IEnumerator{`0} - parent: System.Collections.Generic - definition: System.Collections.Generic.IEnumerator`1 - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - name: IEnumerator - nameWithType: IEnumerator - fullName: System.Collections.Generic.IEnumerator - nameWithType.vb: IEnumerator(Of T) - fullName.vb: System.Collections.Generic.IEnumerator(Of T) - name.vb: IEnumerator(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - commentId: M:System.Collections.Generic.IEnumerable`1.GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - name: GetEnumerator() - nameWithType: IEnumerable.GetEnumerator() - fullName: System.Collections.Generic.IEnumerable.GetEnumerator() - nameWithType.vb: IEnumerable(Of T).GetEnumerator() - fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator() - spec.csharp: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) - spec.vb: - - uid: System.Collections.Generic.IEnumerable`1.GetEnumerator - name: GetEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator - - name: ( - - name: ) -- uid: System.Collections.Generic.IEnumerator`1 - commentId: T:System.Collections.Generic.IEnumerator`1 - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - name: IEnumerator - nameWithType: IEnumerator - fullName: System.Collections.Generic.IEnumerator - nameWithType.vb: IEnumerator(Of T) - fullName.vb: System.Collections.Generic.IEnumerator(Of T) - name.vb: IEnumerator(Of T) - spec.csharp: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: < - - name: T - - name: '>' - spec.vb: - - uid: System.Collections.Generic.IEnumerator`1 - name: IEnumerator - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1 - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Contains* - commentId: Overload:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.Contains - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html#Ubiquity_NET_Llvm_Values_ValueOperandListCollection_1_Contains__0_ - name: Contains - nameWithType: ValueOperandListCollection.Contains - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.Contains - nameWithType.vb: ValueOperandListCollection(Of T).Contains - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).Contains -- uid: Ubiquity.NET.Llvm.IOperandCollection{{T}}.Contains({T}) - commentId: M:Ubiquity.NET.Llvm.IOperandCollection{`0}.Contains(`0) - parent: Ubiquity.NET.Llvm.IOperandCollection{{T}} - definition: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - name: Contains(T) - nameWithType: IOperandCollection.Contains(T) - fullName: Ubiquity.NET.Llvm.IOperandCollection.Contains(T) - nameWithType.vb: IOperandCollection(Of T).Contains(T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).Contains(T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection{`0}.Contains(`0) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - name: T - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection{`0}.Contains(`0) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - name: T - - name: ) -- uid: System.Boolean - commentId: T:System.Boolean - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.boolean - name: bool - nameWithType: bool - fullName: bool - nameWithType.vb: Boolean - fullName.vb: Boolean - name.vb: Boolean -- uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - commentId: M:Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - name: Contains(T) - nameWithType: IOperandCollection.Contains(T) - fullName: Ubiquity.NET.Llvm.IOperandCollection.Contains(T) - nameWithType.vb: IOperandCollection(Of T).Contains(T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T).Contains(T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - name: T - - name: ) - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1.Contains(`0) - name: Contains - href: Ubiquity.NET.Llvm.IOperandCollection-1.html#Ubiquity_NET_Llvm_IOperandCollection_1_Contains__0_ - - name: ( - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - commentId: T:Ubiquity.NET.Llvm.Metadata.IrMetadata - parent: Ubiquity.NET.Llvm.Metadata - href: Ubiquity.NET.Llvm.Metadata.IrMetadata.html - name: IrMetadata - nameWithType: IrMetadata - fullName: Ubiquity.NET.Llvm.Metadata.IrMetadata -- uid: System.InvalidCastException - commentId: T:System.InvalidCastException - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.invalidcastexception - name: InvalidCastException - nameWithType: InvalidCastException - fullName: System.InvalidCastException -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetOperand* - commentId: Overload:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1.GetOperand - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html#Ubiquity_NET_Llvm_Values_ValueOperandListCollection_1_GetOperand__1_System_Index_ - name: GetOperand - nameWithType: ValueOperandListCollection.GetOperand - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection.GetOperand - nameWithType.vb: ValueOperandListCollection(Of T).GetOperand - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T).GetOperand -- uid: System.Index - commentId: T:System.Index - parent: System - isExternal: true - href: https://learn.microsoft.com/dotnet/api/system.index - name: Index - nameWithType: Index - fullName: System.Index -- uid: '{TItem}' - commentId: '!:TItem' - definition: TItem - name: TItem - nameWithType: TItem - fullName: TItem -- uid: Ubiquity.NET.Llvm.Metadata - commentId: N:Ubiquity.NET.Llvm.Metadata - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Metadata - nameWithType: Ubiquity.NET.Llvm.Metadata - fullName: Ubiquity.NET.Llvm.Metadata - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Metadata - name: Metadata - href: Ubiquity.NET.Llvm.Metadata.html -- uid: TItem - name: TItem - nameWithType: TItem - fullName: TItem diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Visibility.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Visibility.yml deleted file mode 100644 index d41471acfe..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.Visibility.yml +++ /dev/null @@ -1,196 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values.Visibility - commentId: T:Ubiquity.NET.Llvm.Values.Visibility - id: Visibility - parent: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.Visibility.Default - - Ubiquity.NET.Llvm.Values.Visibility.Hidden - - Ubiquity.NET.Llvm.Values.Visibility.Protected - langs: - - csharp - - vb - name: Visibility - nameWithType: Visibility - fullName: Ubiquity.NET.Llvm.Values.Visibility - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Visibility - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 82 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Enumeration for the visibility of a global value - remarks: >- - A symbol with or - - must have visibility. - example: [] - syntax: - content: public enum Visibility - content.vb: Public Enum Visibility - seealso: - - linkType: HRef - linkId: xref:llvm_langref#visibility-styles - altText: LLVM Visibility Styles -- uid: Ubiquity.NET.Llvm.Values.Visibility.Default - commentId: F:Ubiquity.NET.Llvm.Values.Visibility.Default - id: Default - parent: Ubiquity.NET.Llvm.Values.Visibility - langs: - - csharp - - vb - name: Default - nameWithType: Visibility.Default - fullName: Ubiquity.NET.Llvm.Values.Visibility.Default - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Default - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 85 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Default visibility for a - example: [] - syntax: - content: Default = 0 - return: - type: Ubiquity.NET.Llvm.Values.Visibility -- uid: Ubiquity.NET.Llvm.Values.Visibility.Hidden - commentId: F:Ubiquity.NET.Llvm.Values.Visibility.Hidden - id: Hidden - parent: Ubiquity.NET.Llvm.Values.Visibility - langs: - - csharp - - vb - name: Hidden - nameWithType: Visibility.Hidden - fullName: Ubiquity.NET.Llvm.Values.Visibility.Hidden - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Hidden - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 88 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Two declarations of an object with hidden visibility refer to the same object if they are in the same shared object - example: [] - syntax: - content: Hidden = 1 - return: - type: Ubiquity.NET.Llvm.Values.Visibility -- uid: Ubiquity.NET.Llvm.Values.Visibility.Protected - commentId: F:Ubiquity.NET.Llvm.Values.Visibility.Protected - id: Protected - parent: Ubiquity.NET.Llvm.Values.Visibility - langs: - - csharp - - vb - name: Protected - nameWithType: Visibility.Protected - fullName: Ubiquity.NET.Llvm.Values.Visibility.Protected - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Protected - path: ../src/Ubiquity.NET.Llvm/Values/GlobalValue.cs - startLine: 91 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm.Values - summary: Symbol cannot be overridden by another module - example: [] - syntax: - content: Protected = 2 - return: - type: Ubiquity.NET.Llvm.Values.Visibility -references: -- uid: Ubiquity.NET.Llvm.Values.Linkage.Internal - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Internal - href: Ubiquity.NET.Llvm.Values.Linkage.html#Ubiquity_NET_Llvm_Values_Linkage_Internal - name: Internal - nameWithType: Linkage.Internal - fullName: Ubiquity.NET.Llvm.Values.Linkage.Internal -- uid: Ubiquity.NET.Llvm.Values.Linkage.Private - commentId: F:Ubiquity.NET.Llvm.Values.Linkage.Private - href: Ubiquity.NET.Llvm.Values.Linkage.html#Ubiquity_NET_Llvm_Values_Linkage_Private - name: Private - nameWithType: Linkage.Private - fullName: Ubiquity.NET.Llvm.Values.Linkage.Private -- uid: Ubiquity.NET.Llvm.Values.Visibility.Default - commentId: F:Ubiquity.NET.Llvm.Values.Visibility.Default - href: Ubiquity.NET.Llvm.Values.Visibility.html#Ubiquity_NET_Llvm_Values_Visibility_Default - name: Default - nameWithType: Visibility.Default - fullName: Ubiquity.NET.Llvm.Values.Visibility.Default -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.Values.Visibility - commentId: T:Ubiquity.NET.Llvm.Values.Visibility - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Visibility.html - name: Visibility - nameWithType: Visibility - fullName: Ubiquity.NET.Llvm.Values.Visibility diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.Values.yml deleted file mode 100644 index 0d90307a23..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.Values.yml +++ /dev/null @@ -1,452 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - id: Ubiquity.NET.Llvm.Values - children: - - Ubiquity.NET.Llvm.Values.Argument - - Ubiquity.NET.Llvm.Values.AsmDialect - - Ubiquity.NET.Llvm.Values.AttributeAllowedOn - - Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - - Ubiquity.NET.Llvm.Values.AttributeContainerMixins - - Ubiquity.NET.Llvm.Values.AttributeKind - - Ubiquity.NET.Llvm.Values.AttributeKindExtensions - - Ubiquity.NET.Llvm.Values.AttributeValue - - Ubiquity.NET.Llvm.Values.BasicBlock - - Ubiquity.NET.Llvm.Values.BlockAddress - - Ubiquity.NET.Llvm.Values.CallingConvention - - Ubiquity.NET.Llvm.Values.Constant - - Ubiquity.NET.Llvm.Values.ConstantAggregate - - Ubiquity.NET.Llvm.Values.ConstantAggregateZero - - Ubiquity.NET.Llvm.Values.ConstantArray - - Ubiquity.NET.Llvm.Values.ConstantData - - Ubiquity.NET.Llvm.Values.ConstantDataArray - - Ubiquity.NET.Llvm.Values.ConstantDataSequential - - Ubiquity.NET.Llvm.Values.ConstantDataVector - - Ubiquity.NET.Llvm.Values.ConstantExpression - - Ubiquity.NET.Llvm.Values.ConstantFP - - Ubiquity.NET.Llvm.Values.ConstantInt - - Ubiquity.NET.Llvm.Values.ConstantPointerNull - - Ubiquity.NET.Llvm.Values.ConstantStruct - - Ubiquity.NET.Llvm.Values.ConstantTokenNone - - Ubiquity.NET.Llvm.Values.ConstantVector - - Ubiquity.NET.Llvm.Values.Function - - Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - - Ubiquity.NET.Llvm.Values.GlobalAlias - - Ubiquity.NET.Llvm.Values.GlobalIFunc - - Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - - Ubiquity.NET.Llvm.Values.GlobalObject - - Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - - Ubiquity.NET.Llvm.Values.GlobalValue - - Ubiquity.NET.Llvm.Values.GlobalValueExtensions - - Ubiquity.NET.Llvm.Values.GlobalVariable - - Ubiquity.NET.Llvm.Values.IAttributeAccessor - - Ubiquity.NET.Llvm.Values.IAttributeContainer - - Ubiquity.NET.Llvm.Values.IAttributeDictionary - - Ubiquity.NET.Llvm.Values.InlineAsm - - Ubiquity.NET.Llvm.Values.Linkage - - Ubiquity.NET.Llvm.Values.UndefValue - - Ubiquity.NET.Llvm.Values.UnnamedAddressKind - - Ubiquity.NET.Llvm.Values.Use - - Ubiquity.NET.Llvm.Values.User - - Ubiquity.NET.Llvm.Values.Value - - Ubiquity.NET.Llvm.Values.ValueExtensions - - Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - - Ubiquity.NET.Llvm.Values.Visibility - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.Values.Argument - commentId: T:Ubiquity.NET.Llvm.Values.Argument - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Argument.html - name: Argument - nameWithType: Argument - fullName: Ubiquity.NET.Llvm.Values.Argument -- uid: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - commentId: T:Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - href: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions.html - name: AttributeCollectionExtensions - nameWithType: AttributeCollectionExtensions - fullName: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions -- uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeDictionary - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeDictionary.html - name: IAttributeDictionary - nameWithType: IAttributeDictionary - fullName: Ubiquity.NET.Llvm.Values.IAttributeDictionary -- uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeContainer - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeContainer.html - name: IAttributeContainer - nameWithType: IAttributeContainer - fullName: Ubiquity.NET.Llvm.Values.IAttributeContainer -- uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - commentId: T:Ubiquity.NET.Llvm.Values.AttributeContainerMixins - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeContainerMixins.html - name: AttributeContainerMixins - nameWithType: AttributeContainerMixins - fullName: Ubiquity.NET.Llvm.Values.AttributeContainerMixins -- uid: Ubiquity.NET.Llvm.Values.AttributeKind - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKind.html - name: AttributeKind - nameWithType: AttributeKind - fullName: Ubiquity.NET.Llvm.Values.AttributeKind -- uid: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - commentId: T:Ubiquity.NET.Llvm.Values.AttributeAllowedOn - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeAllowedOn.html - name: AttributeAllowedOn - nameWithType: AttributeAllowedOn - fullName: Ubiquity.NET.Llvm.Values.AttributeAllowedOn -- uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - commentId: T:Ubiquity.NET.Llvm.Values.AttributeKindExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeKindExtensions.html - name: AttributeKindExtensions - nameWithType: AttributeKindExtensions - fullName: Ubiquity.NET.Llvm.Values.AttributeKindExtensions -- uid: Ubiquity.NET.Llvm.Values.AttributeValue - commentId: T:Ubiquity.NET.Llvm.Values.AttributeValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AttributeValue.html - name: AttributeValue - nameWithType: AttributeValue - fullName: Ubiquity.NET.Llvm.Values.AttributeValue -- uid: Ubiquity.NET.Llvm.Values.BasicBlock - commentId: T:Ubiquity.NET.Llvm.Values.BasicBlock - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.BasicBlock.html - name: BasicBlock - nameWithType: BasicBlock - fullName: Ubiquity.NET.Llvm.Values.BasicBlock -- uid: Ubiquity.NET.Llvm.Values.BlockAddress - commentId: T:Ubiquity.NET.Llvm.Values.BlockAddress - href: Ubiquity.NET.Llvm.Values.BlockAddress.html - name: BlockAddress - nameWithType: BlockAddress - fullName: Ubiquity.NET.Llvm.Values.BlockAddress -- uid: Ubiquity.NET.Llvm.Values.Constant - commentId: T:Ubiquity.NET.Llvm.Values.Constant - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Constant.html - name: Constant - nameWithType: Constant - fullName: Ubiquity.NET.Llvm.Values.Constant -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - commentId: T:Ubiquity.NET.Llvm.Values.ConstantAggregate - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantAggregate.html - name: ConstantAggregate - nameWithType: ConstantAggregate - fullName: Ubiquity.NET.Llvm.Values.ConstantAggregate -- uid: Ubiquity.NET.Llvm.Values.ConstantAggregateZero - commentId: T:Ubiquity.NET.Llvm.Values.ConstantAggregateZero - href: Ubiquity.NET.Llvm.Values.ConstantAggregateZero.html - name: ConstantAggregateZero - nameWithType: ConstantAggregateZero - fullName: Ubiquity.NET.Llvm.Values.ConstantAggregateZero -- uid: Ubiquity.NET.Llvm.Values.ConstantArray - commentId: T:Ubiquity.NET.Llvm.Values.ConstantArray - href: Ubiquity.NET.Llvm.Values.ConstantArray.html - name: ConstantArray - nameWithType: ConstantArray - fullName: Ubiquity.NET.Llvm.Values.ConstantArray -- uid: Ubiquity.NET.Llvm.Values.ConstantData - commentId: T:Ubiquity.NET.Llvm.Values.ConstantData - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantData.html - name: ConstantData - nameWithType: ConstantData - fullName: Ubiquity.NET.Llvm.Values.ConstantData -- uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataArray - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantDataArray.html - name: ConstantDataArray - nameWithType: ConstantDataArray - fullName: Ubiquity.NET.Llvm.Values.ConstantDataArray -- uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataSequential - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantDataSequential.html - name: ConstantDataSequential - nameWithType: ConstantDataSequential - fullName: Ubiquity.NET.Llvm.Values.ConstantDataSequential -- uid: Ubiquity.NET.Llvm.Values.ConstantDataVector - commentId: T:Ubiquity.NET.Llvm.Values.ConstantDataVector - href: Ubiquity.NET.Llvm.Values.ConstantDataVector.html - name: ConstantDataVector - nameWithType: ConstantDataVector - fullName: Ubiquity.NET.Llvm.Values.ConstantDataVector -- uid: Ubiquity.NET.Llvm.Values.ConstantExpression - commentId: T:Ubiquity.NET.Llvm.Values.ConstantExpression - href: Ubiquity.NET.Llvm.Values.ConstantExpression.html - name: ConstantExpression - nameWithType: ConstantExpression - fullName: Ubiquity.NET.Llvm.Values.ConstantExpression -- uid: Ubiquity.NET.Llvm.Values.ConstantFP - commentId: T:Ubiquity.NET.Llvm.Values.ConstantFP - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantFP.html - name: ConstantFP - nameWithType: ConstantFP - fullName: Ubiquity.NET.Llvm.Values.ConstantFP -- uid: Ubiquity.NET.Llvm.Values.ConstantInt - commentId: T:Ubiquity.NET.Llvm.Values.ConstantInt - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantInt.html - name: ConstantInt - nameWithType: ConstantInt - fullName: Ubiquity.NET.Llvm.Values.ConstantInt -- uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull - commentId: T:Ubiquity.NET.Llvm.Values.ConstantPointerNull - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ConstantPointerNull.html - name: ConstantPointerNull - nameWithType: ConstantPointerNull - fullName: Ubiquity.NET.Llvm.Values.ConstantPointerNull -- uid: Ubiquity.NET.Llvm.Values.ConstantStruct - commentId: T:Ubiquity.NET.Llvm.Values.ConstantStruct - href: Ubiquity.NET.Llvm.Values.ConstantStruct.html - name: ConstantStruct - nameWithType: ConstantStruct - fullName: Ubiquity.NET.Llvm.Values.ConstantStruct -- uid: Ubiquity.NET.Llvm.Values.ConstantTokenNone - commentId: T:Ubiquity.NET.Llvm.Values.ConstantTokenNone - href: Ubiquity.NET.Llvm.Values.ConstantTokenNone.html - name: ConstantTokenNone - nameWithType: ConstantTokenNone - fullName: Ubiquity.NET.Llvm.Values.ConstantTokenNone -- uid: Ubiquity.NET.Llvm.Values.ConstantVector - commentId: T:Ubiquity.NET.Llvm.Values.ConstantVector - href: Ubiquity.NET.Llvm.Values.ConstantVector.html - name: ConstantVector - nameWithType: ConstantVector - fullName: Ubiquity.NET.Llvm.Values.ConstantVector -- uid: Ubiquity.NET.Llvm.Values.CallingConvention - commentId: T:Ubiquity.NET.Llvm.Values.CallingConvention - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.CallingConvention.html - name: CallingConvention - nameWithType: CallingConvention - fullName: Ubiquity.NET.Llvm.Values.CallingConvention -- uid: Ubiquity.NET.Llvm.Values.Function - commentId: T:Ubiquity.NET.Llvm.Values.Function - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Function.html - name: Function - nameWithType: Function - fullName: Ubiquity.NET.Llvm.Values.Function -- uid: Ubiquity.NET.Llvm.Values.GlobalAlias - commentId: T:Ubiquity.NET.Llvm.Values.GlobalAlias - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalAlias.html - name: GlobalAlias - nameWithType: GlobalAlias - fullName: Ubiquity.NET.Llvm.Values.GlobalAlias -- uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - commentId: T:Ubiquity.NET.Llvm.Values.GlobalIFunc - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalIFunc.html - name: GlobalIFunc - nameWithType: GlobalIFunc - fullName: Ubiquity.NET.Llvm.Values.GlobalIFunc -- uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - commentId: T:Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol.html - name: GlobalIndirectSymbol - nameWithType: GlobalIndirectSymbol - fullName: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol -- uid: Ubiquity.NET.Llvm.Values.GlobalObject - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObject - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalObject.html - name: GlobalObject - nameWithType: GlobalObject - fullName: Ubiquity.NET.Llvm.Values.GlobalObject -- uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions.html - name: GlobalObjectExtensions - nameWithType: GlobalObjectExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions -- uid: Ubiquity.NET.Llvm.Values.Linkage - commentId: T:Ubiquity.NET.Llvm.Values.Linkage - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Linkage.html - name: Linkage - nameWithType: Linkage - fullName: Ubiquity.NET.Llvm.Values.Linkage -- uid: Ubiquity.NET.Llvm.Values.Visibility - commentId: T:Ubiquity.NET.Llvm.Values.Visibility - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Visibility.html - name: Visibility - nameWithType: Visibility - fullName: Ubiquity.NET.Llvm.Values.Visibility -- uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - commentId: T:Ubiquity.NET.Llvm.Values.UnnamedAddressKind - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.UnnamedAddressKind.html - name: UnnamedAddressKind - nameWithType: UnnamedAddressKind - fullName: Ubiquity.NET.Llvm.Values.UnnamedAddressKind -- uid: Ubiquity.NET.Llvm.Values.GlobalValue - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValue - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValue.html - name: GlobalValue - nameWithType: GlobalValue - fullName: Ubiquity.NET.Llvm.Values.GlobalValue -- uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.GlobalValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalValueExtensions.html - name: GlobalValueExtensions - nameWithType: GlobalValueExtensions - fullName: Ubiquity.NET.Llvm.Values.GlobalValueExtensions -- uid: Ubiquity.NET.Llvm.Values.GlobalVariable - commentId: T:Ubiquity.NET.Llvm.Values.GlobalVariable - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.GlobalVariable.html - name: GlobalVariable - nameWithType: GlobalVariable - fullName: Ubiquity.NET.Llvm.Values.GlobalVariable -- uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - commentId: T:Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex.html - name: FunctionAttributeIndex - nameWithType: FunctionAttributeIndex - fullName: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex -- uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - commentId: T:Ubiquity.NET.Llvm.Values.IAttributeAccessor - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.IAttributeAccessor.html - name: IAttributeAccessor - nameWithType: IAttributeAccessor - fullName: Ubiquity.NET.Llvm.Values.IAttributeAccessor -- uid: Ubiquity.NET.Llvm.Values.AsmDialect - commentId: T:Ubiquity.NET.Llvm.Values.AsmDialect - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.AsmDialect.html - name: AsmDialect - nameWithType: AsmDialect - fullName: Ubiquity.NET.Llvm.Values.AsmDialect -- uid: Ubiquity.NET.Llvm.Values.InlineAsm - commentId: T:Ubiquity.NET.Llvm.Values.InlineAsm - href: Ubiquity.NET.Llvm.Values.InlineAsm.html - name: InlineAsm - nameWithType: InlineAsm - fullName: Ubiquity.NET.Llvm.Values.InlineAsm -- uid: Ubiquity.NET.Llvm.Values.UndefValue - commentId: T:Ubiquity.NET.Llvm.Values.UndefValue - href: Ubiquity.NET.Llvm.Values.UndefValue.html - name: UndefValue - nameWithType: UndefValue - fullName: Ubiquity.NET.Llvm.Values.UndefValue -- uid: Ubiquity.NET.Llvm.Values.Use - commentId: T:Ubiquity.NET.Llvm.Values.Use - href: Ubiquity.NET.Llvm.Values.Use.html - name: Use - nameWithType: Use - fullName: Ubiquity.NET.Llvm.Values.Use -- uid: Ubiquity.NET.Llvm.Values.User - commentId: T:Ubiquity.NET.Llvm.Values.User - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.User.html - name: User - nameWithType: User - fullName: Ubiquity.NET.Llvm.Values.User -- uid: Ubiquity.NET.Llvm.Values.Value - commentId: T:Ubiquity.NET.Llvm.Values.Value - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.Value.html - name: Value - nameWithType: Value - fullName: Ubiquity.NET.Llvm.Values.Value -- uid: Ubiquity.NET.Llvm.Values.ValueExtensions - commentId: T:Ubiquity.NET.Llvm.Values.ValueExtensions - parent: Ubiquity.NET.Llvm.Values - href: Ubiquity.NET.Llvm.Values.ValueExtensions.html - name: ValueExtensions - nameWithType: ValueExtensions - fullName: Ubiquity.NET.Llvm.Values.ValueExtensions -- uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - commentId: T:Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - name: ValueOperandListCollection - nameWithType: ValueOperandListCollection - fullName: Ubiquity.NET.Llvm.Values.ValueOperandListCollection - nameWithType.vb: ValueOperandListCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.Values.ValueOperandListCollection(Of T) - name.vb: ValueOperandListCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - href: Ubiquity.NET.Llvm.Values.ValueOperandListCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Values - commentId: N:Ubiquity.NET.Llvm.Values - href: Ubiquity.html - name: Ubiquity.NET.Llvm.Values - nameWithType: Ubiquity.NET.Llvm.Values - fullName: Ubiquity.NET.Llvm.Values - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - - name: . - - uid: Ubiquity.NET.Llvm.Values - name: Values - href: Ubiquity.NET.Llvm.Values.html diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.VendorKind.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.VendorKind.yml deleted file mode 100644 index 70c0bdf381..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.VendorKind.yml +++ /dev/null @@ -1,503 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm.VendorKind - commentId: T:Ubiquity.NET.Llvm.VendorKind - id: VendorKind - parent: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.VendorKind.AMD - - Ubiquity.NET.Llvm.VendorKind.Apple - - Ubiquity.NET.Llvm.VendorKind.CSR - - Ubiquity.NET.Llvm.VendorKind.Freescale - - Ubiquity.NET.Llvm.VendorKind.IBM - - Ubiquity.NET.Llvm.VendorKind.ImaginationTechnologies - - Ubiquity.NET.Llvm.VendorKind.Intel - - Ubiquity.NET.Llvm.VendorKind.Mesa - - Ubiquity.NET.Llvm.VendorKind.MipsTechnologies - - Ubiquity.NET.Llvm.VendorKind.NVIDIA - - Ubiquity.NET.Llvm.VendorKind.OpenEmbedded - - Ubiquity.NET.Llvm.VendorKind.PC - - Ubiquity.NET.Llvm.VendorKind.SCEI - - Ubiquity.NET.Llvm.VendorKind.SUSE - - Ubiquity.NET.Llvm.VendorKind.Unknown - langs: - - csharp - - vb - name: VendorKind - nameWithType: VendorKind - fullName: Ubiquity.NET.Llvm.VendorKind - type: Enum - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: VendorKind - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 352 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Vendor type for the triple - example: [] - syntax: - content: public enum VendorKind - content.vb: Public Enum VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.Unknown - commentId: F:Ubiquity.NET.Llvm.VendorKind.Unknown - id: Unknown - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: Unknown - nameWithType: VendorKind.Unknown - fullName: Ubiquity.NET.Llvm.VendorKind.Unknown - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Unknown - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 355 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Unknown vendor - example: [] - syntax: - content: Unknown = 0 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.Apple - commentId: F:Ubiquity.NET.Llvm.VendorKind.Apple - id: Apple - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: Apple - nameWithType: VendorKind.Apple - fullName: Ubiquity.NET.Llvm.VendorKind.Apple - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Apple - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 358 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Apple - example: [] - syntax: - content: Apple = 1 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.PC - commentId: F:Ubiquity.NET.Llvm.VendorKind.PC - id: PC - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: PC - nameWithType: VendorKind.PC - fullName: Ubiquity.NET.Llvm.VendorKind.PC - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: PC - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 361 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Generic PC - example: [] - syntax: - content: PC = 2 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.SCEI - commentId: F:Ubiquity.NET.Llvm.VendorKind.SCEI - id: SCEI - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: SCEI - nameWithType: VendorKind.SCEI - fullName: Ubiquity.NET.Llvm.VendorKind.SCEI - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SCEI - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 364 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SCEI - example: [] - syntax: - content: SCEI = 3 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.Freescale - commentId: F:Ubiquity.NET.Llvm.VendorKind.Freescale - id: Freescale - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: Freescale - nameWithType: VendorKind.Freescale - fullName: Ubiquity.NET.Llvm.VendorKind.Freescale - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Freescale - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 367 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Freescale - example: [] - syntax: - content: Freescale = 4 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.IBM - commentId: F:Ubiquity.NET.Llvm.VendorKind.IBM - id: IBM - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: IBM - nameWithType: VendorKind.IBM - fullName: Ubiquity.NET.Llvm.VendorKind.IBM - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: IBM - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 370 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: IBM - example: [] - syntax: - content: IBM = 5 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.ImaginationTechnologies - commentId: F:Ubiquity.NET.Llvm.VendorKind.ImaginationTechnologies - id: ImaginationTechnologies - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: ImaginationTechnologies - nameWithType: VendorKind.ImaginationTechnologies - fullName: Ubiquity.NET.Llvm.VendorKind.ImaginationTechnologies - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: ImaginationTechnologies - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 373 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Imagination Technologies - example: [] - syntax: - content: ImaginationTechnologies = 6 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.MipsTechnologies - commentId: F:Ubiquity.NET.Llvm.VendorKind.MipsTechnologies - id: MipsTechnologies - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: MipsTechnologies - nameWithType: VendorKind.MipsTechnologies - fullName: Ubiquity.NET.Llvm.VendorKind.MipsTechnologies - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: MipsTechnologies - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 376 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: MIPS Technologies - example: [] - syntax: - content: MipsTechnologies = 7 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.NVIDIA - commentId: F:Ubiquity.NET.Llvm.VendorKind.NVIDIA - id: NVIDIA - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: NVIDIA - nameWithType: VendorKind.NVIDIA - fullName: Ubiquity.NET.Llvm.VendorKind.NVIDIA - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: NVIDIA - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 379 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: NVidia - example: [] - syntax: - content: NVIDIA = 8 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.CSR - commentId: F:Ubiquity.NET.Llvm.VendorKind.CSR - id: CSR - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: CSR - nameWithType: VendorKind.CSR - fullName: Ubiquity.NET.Llvm.VendorKind.CSR - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: CSR - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 382 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: CSR - example: [] - syntax: - content: CSR = 9 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.AMD - commentId: F:Ubiquity.NET.Llvm.VendorKind.AMD - id: AMD - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: AMD - nameWithType: VendorKind.AMD - fullName: Ubiquity.NET.Llvm.VendorKind.AMD - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: AMD - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 385 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: AMD - example: [] - syntax: - content: AMD = 10 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.Mesa - commentId: F:Ubiquity.NET.Llvm.VendorKind.Mesa - id: Mesa - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: Mesa - nameWithType: VendorKind.Mesa - fullName: Ubiquity.NET.Llvm.VendorKind.Mesa - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Mesa - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 388 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Mesa - example: [] - syntax: - content: Mesa = 11 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.SUSE - commentId: F:Ubiquity.NET.Llvm.VendorKind.SUSE - id: SUSE - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: SUSE - nameWithType: VendorKind.SUSE - fullName: Ubiquity.NET.Llvm.VendorKind.SUSE - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: SUSE - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 391 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: SUSE - example: [] - syntax: - content: SUSE = 12 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.OpenEmbedded - commentId: F:Ubiquity.NET.Llvm.VendorKind.OpenEmbedded - id: OpenEmbedded - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: OpenEmbedded - nameWithType: VendorKind.OpenEmbedded - fullName: Ubiquity.NET.Llvm.VendorKind.OpenEmbedded - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: OpenEmbedded - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 394 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: OpenEmbedded - example: [] - syntax: - content: OpenEmbedded = 13 - return: - type: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.VendorKind.Intel - commentId: F:Ubiquity.NET.Llvm.VendorKind.Intel - id: Intel - parent: Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: Intel - nameWithType: VendorKind.Intel - fullName: Ubiquity.NET.Llvm.VendorKind.Intel - type: Field - source: - remote: - path: src/Ubiquity.NET.Llvm/Triple.cs - branch: LLVM20 - repo: https://github.com/smaillet/Llvm.NET.git - id: Intel - path: ../src/Ubiquity.NET.Llvm/Triple.cs - startLine: 397 - assemblies: - - Ubiquity.NET.Llvm - namespace: Ubiquity.NET.Llvm - summary: Intel - example: [] - syntax: - content: Intel = 14 - return: - type: Ubiquity.NET.Llvm.VendorKind -references: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html -- uid: Ubiquity.NET.Llvm.VendorKind - commentId: T:Ubiquity.NET.Llvm.VendorKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.VendorKind.html - name: VendorKind - nameWithType: VendorKind - fullName: Ubiquity.NET.Llvm.VendorKind diff --git a/docfx/llvm/api/Ubiquity.NET.Llvm.yml b/docfx/llvm/api/Ubiquity.NET.Llvm.yml deleted file mode 100644 index 56b6f5b0f6..0000000000 --- a/docfx/llvm/api/Ubiquity.NET.Llvm.yml +++ /dev/null @@ -1,397 +0,0 @@ -### YamlMime:ManagedReference -items: -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - id: Ubiquity.NET.Llvm - children: - - Ubiquity.NET.Llvm.ArchKind - - Ubiquity.NET.Llvm.Blake3Hash - - Ubiquity.NET.Llvm.ByteOrdering - - Ubiquity.NET.Llvm.CodeGenFileKind - - Ubiquity.NET.Llvm.CodeGenOpt - - Ubiquity.NET.Llvm.CodeGenTarget - - Ubiquity.NET.Llvm.CodeModel - - Ubiquity.NET.Llvm.Comdat - - Ubiquity.NET.Llvm.ComdatCollection - - Ubiquity.NET.Llvm.ComdatKind - - Ubiquity.NET.Llvm.Context - - Ubiquity.NET.Llvm.DataLayout - - Ubiquity.NET.Llvm.DiagnosticInfo - - Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - - Ubiquity.NET.Llvm.DiagnosticSeverity - - Ubiquity.NET.Llvm.Disassembler - - Ubiquity.NET.Llvm.DisassemblerOptions - - Ubiquity.NET.Llvm.DisposableObject - - Ubiquity.NET.Llvm.EnvironmentKind - - Ubiquity.NET.Llvm.ErrorInfo - - Ubiquity.NET.Llvm.IContext - - Ubiquity.NET.Llvm.IDataLayout - - Ubiquity.NET.Llvm.IDisassemblerCallbacks - - Ubiquity.NET.Llvm.ILibLlvm - - Ubiquity.NET.Llvm.IModule - - Ubiquity.NET.Llvm.IOperandCollection`1 - - Ubiquity.NET.Llvm.InternalCodeGeneratorException - - Ubiquity.NET.Llvm.Library - - Ubiquity.NET.Llvm.MemoryBuffer - - Ubiquity.NET.Llvm.Module - - Ubiquity.NET.Llvm.ModuleFlagBehavior - - Ubiquity.NET.Llvm.OSKind - - Ubiquity.NET.Llvm.ObjectFormatKind - - Ubiquity.NET.Llvm.OptimizationSizeLevel - - Ubiquity.NET.Llvm.PassBuilderOptions - - Ubiquity.NET.Llvm.RelocationMode - - Ubiquity.NET.Llvm.SubArchKind - - Ubiquity.NET.Llvm.Target - - Ubiquity.NET.Llvm.TargetMachine - - Ubiquity.NET.Llvm.TargetRegistration - - Ubiquity.NET.Llvm.Triple - - Ubiquity.NET.Llvm.VendorKind - langs: - - csharp - - vb - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - type: Namespace - assemblies: - - Ubiquity.NET.Llvm -references: -- uid: Ubiquity.NET.Llvm.Blake3Hash - commentId: T:Ubiquity.NET.Llvm.Blake3Hash - href: Ubiquity.NET.Llvm.Blake3Hash.html - name: Blake3Hash - nameWithType: Blake3Hash - fullName: Ubiquity.NET.Llvm.Blake3Hash -- uid: Ubiquity.NET.Llvm.ComdatKind - commentId: T:Ubiquity.NET.Llvm.ComdatKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ComdatKind.html - name: ComdatKind - nameWithType: ComdatKind - fullName: Ubiquity.NET.Llvm.ComdatKind -- uid: Ubiquity.NET.Llvm.Comdat - commentId: T:Ubiquity.NET.Llvm.Comdat - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Comdat.html - name: Comdat - nameWithType: Comdat - fullName: Ubiquity.NET.Llvm.Comdat -- uid: Ubiquity.NET.Llvm.ComdatCollection - commentId: T:Ubiquity.NET.Llvm.ComdatCollection - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ComdatCollection.html - name: ComdatCollection - nameWithType: ComdatCollection - fullName: Ubiquity.NET.Llvm.ComdatCollection -- uid: Ubiquity.NET.Llvm.Context - commentId: T:Ubiquity.NET.Llvm.Context - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Context.html - name: Context - nameWithType: Context - fullName: Ubiquity.NET.Llvm.Context -- uid: Ubiquity.NET.Llvm.DataLayout - commentId: T:Ubiquity.NET.Llvm.DataLayout - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DataLayout.html - name: DataLayout - nameWithType: DataLayout - fullName: Ubiquity.NET.Llvm.DataLayout -- uid: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - commentId: T:Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction.html - name: DiagnosticInfoCallbackAction - nameWithType: DiagnosticInfoCallbackAction - fullName: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction -- uid: Ubiquity.NET.Llvm.DiagnosticSeverity - commentId: T:Ubiquity.NET.Llvm.DiagnosticSeverity - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DiagnosticSeverity.html - name: DiagnosticSeverity - nameWithType: DiagnosticSeverity - fullName: Ubiquity.NET.Llvm.DiagnosticSeverity -- uid: Ubiquity.NET.Llvm.DiagnosticInfo - commentId: T:Ubiquity.NET.Llvm.DiagnosticInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DiagnosticInfo.html - name: DiagnosticInfo - nameWithType: DiagnosticInfo - fullName: Ubiquity.NET.Llvm.DiagnosticInfo -- uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks - commentId: T:Ubiquity.NET.Llvm.IDisassemblerCallbacks - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IDisassemblerCallbacks.html - name: IDisassemblerCallbacks - nameWithType: IDisassemblerCallbacks - fullName: Ubiquity.NET.Llvm.IDisassemblerCallbacks -- uid: Ubiquity.NET.Llvm.DisassemblerOptions - commentId: T:Ubiquity.NET.Llvm.DisassemblerOptions - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisassemblerOptions.html - name: DisassemblerOptions - nameWithType: DisassemblerOptions - fullName: Ubiquity.NET.Llvm.DisassemblerOptions -- uid: Ubiquity.NET.Llvm.Disassembler - commentId: T:Ubiquity.NET.Llvm.Disassembler - href: Ubiquity.NET.Llvm.Disassembler.html - name: Disassembler - nameWithType: Disassembler - fullName: Ubiquity.NET.Llvm.Disassembler -- uid: Ubiquity.NET.Llvm.DisposableObject - commentId: T:Ubiquity.NET.Llvm.DisposableObject - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.DisposableObject.html - name: DisposableObject - nameWithType: DisposableObject - fullName: Ubiquity.NET.Llvm.DisposableObject -- uid: Ubiquity.NET.Llvm.ErrorInfo - commentId: T:Ubiquity.NET.Llvm.ErrorInfo - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ErrorInfo.html - name: ErrorInfo - nameWithType: ErrorInfo - fullName: Ubiquity.NET.Llvm.ErrorInfo -- uid: Ubiquity.NET.Llvm.IContext - commentId: T:Ubiquity.NET.Llvm.IContext - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IContext.html - name: IContext - nameWithType: IContext - fullName: Ubiquity.NET.Llvm.IContext -- uid: Ubiquity.NET.Llvm.ByteOrdering - commentId: T:Ubiquity.NET.Llvm.ByteOrdering - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ByteOrdering.html - name: ByteOrdering - nameWithType: ByteOrdering - fullName: Ubiquity.NET.Llvm.ByteOrdering -- uid: Ubiquity.NET.Llvm.IDataLayout - commentId: T:Ubiquity.NET.Llvm.IDataLayout - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IDataLayout.html - name: IDataLayout - nameWithType: IDataLayout - fullName: Ubiquity.NET.Llvm.IDataLayout -- uid: Ubiquity.NET.Llvm.CodeGenTarget - commentId: T:Ubiquity.NET.Llvm.CodeGenTarget - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenTarget.html - name: CodeGenTarget - nameWithType: CodeGenTarget - fullName: Ubiquity.NET.Llvm.CodeGenTarget -- uid: Ubiquity.NET.Llvm.TargetRegistration - commentId: T:Ubiquity.NET.Llvm.TargetRegistration - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetRegistration.html - name: TargetRegistration - nameWithType: TargetRegistration - fullName: Ubiquity.NET.Llvm.TargetRegistration -- uid: Ubiquity.NET.Llvm.ILibLlvm - commentId: T:Ubiquity.NET.Llvm.ILibLlvm - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ILibLlvm.html - name: ILibLlvm - nameWithType: ILibLlvm - fullName: Ubiquity.NET.Llvm.ILibLlvm -- uid: Ubiquity.NET.Llvm.IModule - commentId: T:Ubiquity.NET.Llvm.IModule - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IModule.html - name: IModule - nameWithType: IModule - fullName: Ubiquity.NET.Llvm.IModule -- uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException - commentId: T:Ubiquity.NET.Llvm.InternalCodeGeneratorException - href: Ubiquity.NET.Llvm.InternalCodeGeneratorException.html - name: InternalCodeGeneratorException - nameWithType: InternalCodeGeneratorException - fullName: Ubiquity.NET.Llvm.InternalCodeGeneratorException -- uid: Ubiquity.NET.Llvm.IOperandCollection`1 - commentId: T:Ubiquity.NET.Llvm.IOperandCollection`1 - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - name: IOperandCollection - nameWithType: IOperandCollection - fullName: Ubiquity.NET.Llvm.IOperandCollection - nameWithType.vb: IOperandCollection(Of T) - fullName.vb: Ubiquity.NET.Llvm.IOperandCollection(Of T) - name.vb: IOperandCollection(Of T) - spec.csharp: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: < - - name: T - - name: '>' - spec.vb: - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - href: Ubiquity.NET.Llvm.IOperandCollection-1.html - - name: ( - - name: Of - - name: " " - - name: T - - name: ) -- uid: Ubiquity.NET.Llvm.Library - commentId: T:Ubiquity.NET.Llvm.Library - href: Ubiquity.NET.Llvm.Library.html - name: Library - nameWithType: Library - fullName: Ubiquity.NET.Llvm.Library -- uid: Ubiquity.NET.Llvm.MemoryBuffer - commentId: T:Ubiquity.NET.Llvm.MemoryBuffer - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.MemoryBuffer.html - name: MemoryBuffer - nameWithType: MemoryBuffer - fullName: Ubiquity.NET.Llvm.MemoryBuffer -- uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - commentId: T:Ubiquity.NET.Llvm.ModuleFlagBehavior - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ModuleFlagBehavior.html - name: ModuleFlagBehavior - nameWithType: ModuleFlagBehavior - fullName: Ubiquity.NET.Llvm.ModuleFlagBehavior -- uid: Ubiquity.NET.Llvm.Module - commentId: T:Ubiquity.NET.Llvm.Module - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Module.html - name: Module - nameWithType: Module - fullName: Ubiquity.NET.Llvm.Module -- uid: Ubiquity.NET.Llvm.PassBuilderOptions - commentId: T:Ubiquity.NET.Llvm.PassBuilderOptions - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.PassBuilderOptions.html - name: PassBuilderOptions - nameWithType: PassBuilderOptions - fullName: Ubiquity.NET.Llvm.PassBuilderOptions -- uid: Ubiquity.NET.Llvm.CodeGenOpt - commentId: T:Ubiquity.NET.Llvm.CodeGenOpt - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenOpt.html - name: CodeGenOpt - nameWithType: CodeGenOpt - fullName: Ubiquity.NET.Llvm.CodeGenOpt -- uid: Ubiquity.NET.Llvm.OptimizationSizeLevel - commentId: T:Ubiquity.NET.Llvm.OptimizationSizeLevel - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.OptimizationSizeLevel.html - name: OptimizationSizeLevel - nameWithType: OptimizationSizeLevel - fullName: Ubiquity.NET.Llvm.OptimizationSizeLevel -- uid: Ubiquity.NET.Llvm.RelocationMode - commentId: T:Ubiquity.NET.Llvm.RelocationMode - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.RelocationMode.html - name: RelocationMode - nameWithType: RelocationMode - fullName: Ubiquity.NET.Llvm.RelocationMode -- uid: Ubiquity.NET.Llvm.CodeModel - commentId: T:Ubiquity.NET.Llvm.CodeModel - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeModel.html - name: CodeModel - nameWithType: CodeModel - fullName: Ubiquity.NET.Llvm.CodeModel -- uid: Ubiquity.NET.Llvm.CodeGenFileKind - commentId: T:Ubiquity.NET.Llvm.CodeGenFileKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.CodeGenFileKind.html - name: CodeGenFileKind - nameWithType: CodeGenFileKind - fullName: Ubiquity.NET.Llvm.CodeGenFileKind -- uid: Ubiquity.NET.Llvm.Target - commentId: T:Ubiquity.NET.Llvm.Target - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Target.html - name: Target - nameWithType: Target - fullName: Ubiquity.NET.Llvm.Target -- uid: Ubiquity.NET.Llvm.TargetMachine - commentId: T:Ubiquity.NET.Llvm.TargetMachine - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.TargetMachine.html - name: TargetMachine - nameWithType: TargetMachine - fullName: Ubiquity.NET.Llvm.TargetMachine -- uid: Ubiquity.NET.Llvm.ArchKind - commentId: T:Ubiquity.NET.Llvm.ArchKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ArchKind.html - name: ArchKind - nameWithType: ArchKind - fullName: Ubiquity.NET.Llvm.ArchKind -- uid: Ubiquity.NET.Llvm.SubArchKind - commentId: T:Ubiquity.NET.Llvm.SubArchKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.SubArchKind.html - name: SubArchKind - nameWithType: SubArchKind - fullName: Ubiquity.NET.Llvm.SubArchKind -- uid: Ubiquity.NET.Llvm.VendorKind - commentId: T:Ubiquity.NET.Llvm.VendorKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.VendorKind.html - name: VendorKind - nameWithType: VendorKind - fullName: Ubiquity.NET.Llvm.VendorKind -- uid: Ubiquity.NET.Llvm.OSKind - commentId: T:Ubiquity.NET.Llvm.OSKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.OSKind.html - name: OSKind - nameWithType: OSKind - fullName: Ubiquity.NET.Llvm.OSKind -- uid: Ubiquity.NET.Llvm.EnvironmentKind - commentId: T:Ubiquity.NET.Llvm.EnvironmentKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.EnvironmentKind.html - name: EnvironmentKind - nameWithType: EnvironmentKind - fullName: Ubiquity.NET.Llvm.EnvironmentKind -- uid: Ubiquity.NET.Llvm.ObjectFormatKind - commentId: T:Ubiquity.NET.Llvm.ObjectFormatKind - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.ObjectFormatKind.html - name: ObjectFormatKind - nameWithType: ObjectFormatKind - fullName: Ubiquity.NET.Llvm.ObjectFormatKind -- uid: Ubiquity.NET.Llvm.Triple - commentId: T:Ubiquity.NET.Llvm.Triple - parent: Ubiquity.NET.Llvm - href: Ubiquity.NET.Llvm.Triple.html - name: Triple - nameWithType: Triple - fullName: Ubiquity.NET.Llvm.Triple -- uid: Ubiquity.NET.Llvm - commentId: N:Ubiquity.NET.Llvm - href: Ubiquity.html - name: Ubiquity.NET.Llvm - nameWithType: Ubiquity.NET.Llvm - fullName: Ubiquity.NET.Llvm - spec.csharp: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html - spec.vb: - - uid: Ubiquity - name: Ubiquity - href: Ubiquity.html - - name: . - - uid: Ubiquity.NET - name: NET - href: Ubiquity.NET.html - - name: . - - uid: Ubiquity.NET.Llvm - name: Llvm - href: Ubiquity.NET.Llvm.html diff --git a/docfx/llvm/api/toc.yml b/docfx/llvm/api/toc.yml deleted file mode 100644 index b4a49d0b37..0000000000 --- a/docfx/llvm/api/toc.yml +++ /dev/null @@ -1,894 +0,0 @@ -### YamlMime:TableOfContent -items: -- uid: Ubiquity.NET.Llvm - name: Ubiquity.NET.Llvm - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.ArchKind - name: ArchKind - type: Enum - - uid: Ubiquity.NET.Llvm.Blake3Hash - name: Blake3Hash - type: Class - - uid: Ubiquity.NET.Llvm.ByteOrdering - name: ByteOrdering - type: Enum - - uid: Ubiquity.NET.Llvm.CodeGenFileKind - name: CodeGenFileKind - type: Enum - - uid: Ubiquity.NET.Llvm.CodeGenOpt - name: CodeGenOpt - type: Enum - - uid: Ubiquity.NET.Llvm.CodeGenTarget - name: CodeGenTarget - type: Enum - - uid: Ubiquity.NET.Llvm.CodeModel - name: CodeModel - type: Enum - - uid: Ubiquity.NET.Llvm.Comdat - name: Comdat - type: Struct - - uid: Ubiquity.NET.Llvm.ComdatCollection - name: ComdatCollection - type: Struct - - uid: Ubiquity.NET.Llvm.ComdatKind - name: ComdatKind - type: Enum - - uid: Ubiquity.NET.Llvm.Context - name: Context - type: Class - - uid: Ubiquity.NET.Llvm.DataLayout - name: DataLayout - type: Class - - uid: Ubiquity.NET.Llvm.DiagnosticInfo - name: DiagnosticInfo - type: Struct - - uid: Ubiquity.NET.Llvm.DiagnosticInfoCallbackAction - name: DiagnosticInfoCallbackAction - type: Delegate - - uid: Ubiquity.NET.Llvm.DiagnosticSeverity - name: DiagnosticSeverity - type: Enum - - uid: Ubiquity.NET.Llvm.Disassembler - name: Disassembler - type: Class - - uid: Ubiquity.NET.Llvm.DisassemblerOptions - name: DisassemblerOptions - type: Enum - - uid: Ubiquity.NET.Llvm.DisposableObject - name: DisposableObject - type: Class - - uid: Ubiquity.NET.Llvm.EnvironmentKind - name: EnvironmentKind - type: Enum - - uid: Ubiquity.NET.Llvm.ErrorInfo - name: ErrorInfo - type: Struct - - uid: Ubiquity.NET.Llvm.IContext - name: IContext - type: Interface - - uid: Ubiquity.NET.Llvm.IDataLayout - name: IDataLayout - type: Interface - - uid: Ubiquity.NET.Llvm.IDisassemblerCallbacks - name: IDisassemblerCallbacks - type: Interface - - uid: Ubiquity.NET.Llvm.ILibLlvm - name: ILibLlvm - type: Interface - - uid: Ubiquity.NET.Llvm.IModule - name: IModule - type: Interface - - uid: Ubiquity.NET.Llvm.IOperandCollection`1 - name: IOperandCollection - type: Interface - - uid: Ubiquity.NET.Llvm.InternalCodeGeneratorException - name: InternalCodeGeneratorException - type: Class - - uid: Ubiquity.NET.Llvm.Library - name: Library - type: Class - - uid: Ubiquity.NET.Llvm.MemoryBuffer - name: MemoryBuffer - type: Class - - uid: Ubiquity.NET.Llvm.Module - name: Module - type: Class - - uid: Ubiquity.NET.Llvm.ModuleFlagBehavior - name: ModuleFlagBehavior - type: Enum - - uid: Ubiquity.NET.Llvm.OSKind - name: OSKind - type: Enum - - uid: Ubiquity.NET.Llvm.ObjectFormatKind - name: ObjectFormatKind - type: Enum - - uid: Ubiquity.NET.Llvm.OptimizationSizeLevel - name: OptimizationSizeLevel - type: Enum - - uid: Ubiquity.NET.Llvm.PassBuilderOptions - name: PassBuilderOptions - type: Struct - - uid: Ubiquity.NET.Llvm.RelocationMode - name: RelocationMode - type: Enum - - uid: Ubiquity.NET.Llvm.SubArchKind - name: SubArchKind - type: Enum - - uid: Ubiquity.NET.Llvm.Target - name: Target - type: Class - - uid: Ubiquity.NET.Llvm.TargetMachine - name: TargetMachine - type: Class - - uid: Ubiquity.NET.Llvm.TargetRegistration - name: TargetRegistration - type: Enum - - uid: Ubiquity.NET.Llvm.Triple - name: Triple - type: Class - - uid: Ubiquity.NET.Llvm.VendorKind - name: VendorKind - type: Enum -- uid: Ubiquity.NET.Llvm.DebugInfo - name: Ubiquity.NET.Llvm.DebugInfo - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBasicType - name: DIBasicType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIBuilder - name: DIBuilder - type: Struct - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompileUnit - name: DICompileUnit - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeType - name: DICompositeType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DICompositeTypeArray - name: DICompositeTypeArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIDerivedType - name: DIDerivedType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIEnumerator - name: DIEnumerator - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIExpression - name: DIExpression - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIFile - name: DIFile - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariable - name: DIGlobalVariable - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpression - name: DIGlobalVariableExpression - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIGlobalVariableExpressionArray - name: DIGlobalVariableExpressionArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntity - name: DIImportedEntity - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIImportedEntityArray - name: DIImportedEntityArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlock - name: DILexicalBlock - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockBase - name: DILexicalBlockBase - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DILexicalBlockFile - name: DILexicalBlockFile - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalScope - name: DILocalScope - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariable - name: DILocalVariable - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocalVariableArray - name: DILocalVariableArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DILocation - name: DILocation - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIMacro - name: DIMacro - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroFile - name: DIMacroFile - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNode - name: DIMacroNode - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIMacroNodeArray - name: DIMacroNodeArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIModule - name: DIModule - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DINamespace - name: DINamespace - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DINode - name: DINode - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DINodeArray - name: DINodeArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIObjCProperty - name: DIObjCProperty - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIScope - name: DIScope - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIScopeArray - name: DIScopeArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DISubProgram - name: DISubProgram - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DISubRange - name: DISubRange - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DISubroutineType - name: DISubroutineType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameter - name: DITemplateParameter - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateParameterArray - name: DITemplateParameterArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateTypeParameter - name: DITemplateTypeParameter - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DITemplateValueParameter - name: DITemplateValueParameter - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIType - name: DIType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DITypeArray - name: DITypeArray - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DIVariable - name: DIVariable - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugArrayType - name: DebugArrayType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugBasicType - name: DebugBasicType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugFunctionType - name: DebugFunctionType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugInfoFlags - name: DebugInfoFlags - type: Enum - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberInfo - name: DebugMemberInfo - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugMemberLayout - name: DebugMemberLayout - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugPointerType - name: DebugPointerType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugRecord - name: DebugRecord - type: Struct - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugStructType - name: DebugStructType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType - name: DebugType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugType`2 - name: DebugType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DebugUnionType - name: DebugUnionType - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.DiTypeKind - name: DiTypeKind - type: Enum - - uid: Ubiquity.NET.Llvm.DebugInfo.DwarfEmissionKind - name: DwarfEmissionKind - type: Enum - - uid: Ubiquity.NET.Llvm.DebugInfo.ExpressionOp - name: ExpressionOp - type: Enum - - uid: Ubiquity.NET.Llvm.DebugInfo.GenericDINode - name: GenericDINode - type: Class - - uid: Ubiquity.NET.Llvm.DebugInfo.IDebugType`2 - name: IDebugType - type: Interface - - uid: Ubiquity.NET.Llvm.DebugInfo.MacroKind - name: MacroKind - type: Enum - - uid: Ubiquity.NET.Llvm.DebugInfo.QualifiedTypeTag - name: QualifiedTypeTag - type: Enum - - uid: Ubiquity.NET.Llvm.DebugInfo.SourceLanguage - name: SourceLanguage - type: Enum - - uid: Ubiquity.NET.Llvm.DebugInfo.Tag - name: Tag - type: Enum - - uid: Ubiquity.NET.Llvm.DebugInfo.TupleTypedArrayWrapper`1 - name: TupleTypedArrayWrapper - type: Class -- uid: Ubiquity.NET.Llvm.Instructions - name: Ubiquity.NET.Llvm.Instructions - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.Instructions.AddressSpaceCast - name: AddressSpaceCast - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Alloca - name: Alloca - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.AtomicCmpXchg - name: AtomicCmpXchg - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMW - name: AtomicRMW - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.AtomicRMWBinOp - name: AtomicRMWBinOp - type: Enum - - uid: Ubiquity.NET.Llvm.Instructions.BinaryOperator - name: BinaryOperator - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.BitCast - name: BitCast - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Branch - name: Branch - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.CallBr - name: CallBr - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.CallInstruction - name: CallInstruction - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Cast - name: Cast - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.CatchPad - name: CatchPad - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.CatchReturn - name: CatchReturn - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.CatchSwitch - name: CatchSwitch - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.CleanupPad - name: CleanupPad - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.CleanupReturn - name: CleanupReturn - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Cmp - name: Cmp - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.DebugDeclare - name: DebugDeclare - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.DebugInfoIntrinsic - name: DebugInfoIntrinsic - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.DebugLabel - name: DebugLabel - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.ExtractElement - name: ExtractElement - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.ExtractValue - name: ExtractValue - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.FCmp - name: FCmp - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.FPExt - name: FPExt - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.FPToSI - name: FPToSI - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.FPToUI - name: FPToUI - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.FPTrunc - name: FPTrunc - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Fence - name: Fence - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Freeze - name: Freeze - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.FuncletPad - name: FuncletPad - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.GetElementPtr - name: GetElementPtr - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.IndirectBranch - name: IndirectBranch - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.InsertElement - name: InsertElement - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.InsertValue - name: InsertValue - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Instruction - name: Instruction - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.InstructionBuilder - name: InstructionBuilder - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.InstructionExtensions - name: InstructionExtensions - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.IntCmp - name: IntCmp - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.IntPredicate - name: IntPredicate - type: Enum - - uid: Ubiquity.NET.Llvm.Instructions.IntToPointer - name: IntToPointer - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Intrinsic - name: Intrinsic - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Invoke - name: Invoke - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.LandingPad - name: LandingPad - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Load - name: Load - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.MemCpy - name: MemCpy - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.MemIntrinsic - name: MemIntrinsic - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.MemMove - name: MemMove - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.MemSet - name: MemSet - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.OpCode - name: OpCode - type: Enum - - uid: Ubiquity.NET.Llvm.Instructions.PhiNode - name: PhiNode - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.PointerToInt - name: PointerToInt - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Predicate - name: Predicate - type: Enum - - uid: Ubiquity.NET.Llvm.Instructions.RealPredicate - name: RealPredicate - type: Enum - - uid: Ubiquity.NET.Llvm.Instructions.ResumeInstruction - name: ResumeInstruction - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.ReturnInstruction - name: ReturnInstruction - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.SIToFP - name: SIToFP - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.SelectInstruction - name: SelectInstruction - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.ShuffleVector - name: ShuffleVector - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.SignExtend - name: SignExtend - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Store - name: Store - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.SuccessorBlockCollection - name: SuccessorBlockCollection - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Switch - name: Switch - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Terminator - name: Terminator - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Trunc - name: Trunc - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.UIToFP - name: UIToFP - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.UnaryInstruction - name: UnaryInstruction - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.UnaryOperator - name: UnaryOperator - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.Unreachable - name: Unreachable - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.UserOp1 - name: UserOp1 - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.UserOp2 - name: UserOp2 - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.VaArg - name: VaArg - type: Class - - uid: Ubiquity.NET.Llvm.Instructions.ZeroExtend - name: ZeroExtend - type: Class -- uid: Ubiquity.NET.Llvm.Metadata - name: Ubiquity.NET.Llvm.Metadata - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.Metadata.ConstantAsMetadata - name: ConstantAsMetadata - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.IrMetadata - name: IrMetadata - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.LocalAsMetadata - name: LocalAsMetadata - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.MDNode - name: MDNode - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.MDString - name: MDString - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.MDTuple - name: MDTuple - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.MetadataAsValue - name: MetadataAsValue - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.MetadataKind - name: MetadataKind - type: Enum - - uid: Ubiquity.NET.Llvm.Metadata.MetadataOperandCollection - name: MetadataOperandCollection - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.ModuleFlag - name: ModuleFlag - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.NamedMDNode - name: NamedMDNode - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.OperandBundleNames - name: OperandBundleNames - type: Class - - uid: Ubiquity.NET.Llvm.Metadata.ValueAsMetadata - name: ValueAsMetadata - type: Class -- uid: Ubiquity.NET.Llvm.ObjectFile - name: Ubiquity.NET.Llvm.ObjectFile - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.ObjectFile.BinaryKind - name: BinaryKind - type: Enum - - uid: Ubiquity.NET.Llvm.ObjectFile.Relocation - name: Relocation - type: Struct - - uid: Ubiquity.NET.Llvm.ObjectFile.Section - name: Section - type: Struct - - uid: Ubiquity.NET.Llvm.ObjectFile.Symbol - name: Symbol - type: Struct - - uid: Ubiquity.NET.Llvm.ObjectFile.TargetBinary - name: TargetBinary - type: Class -- uid: Ubiquity.NET.Llvm.OrcJITv2 - name: Ubiquity.NET.Llvm.OrcJITv2 - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.OrcJITv2.AbsoluteMaterializationUnit - name: AbsoluteMaterializationUnit - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.CustomMaterializationUnit - name: CustomMaterializationUnit - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.DiscardAction - name: DiscardAction - type: Delegate - - uid: Ubiquity.NET.Llvm.OrcJITv2.ErrorReporter - name: ErrorReporter - type: Delegate - - uid: Ubiquity.NET.Llvm.OrcJITv2.EvaluatedSymbol - name: EvaluatedSymbol - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.ExecutionSession - name: ExecutionSession - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.GenericSymbolOption - name: GenericSymbolOption - type: Enum - - uid: Ubiquity.NET.Llvm.OrcJITv2.IrTransformLayer - name: IrTransformLayer - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.JITDyLib - name: JITDyLib - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.LazyCallThroughManager - name: LazyCallThroughManager - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.LazyReExportsMaterializationUnit - name: LazyReExportsMaterializationUnit - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.LlJIT - name: LlJIT - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.LocalIndirectStubsManager - name: LocalIndirectStubsManager - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationAction - name: MaterializationAction - type: Delegate - - uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationResponsibility - name: MaterializationResponsibility - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.MaterializationUnit - name: MaterializationUnit - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.ResourceTracker - name: ResourceTracker - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolAliasMapEntry - name: SymbolAliasMapEntry - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolFlags - name: SymbolFlags - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolGenericOption - name: SymbolGenericOption - type: Enum - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPool - name: SymbolStringPool - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntry - name: SymbolStringPoolEntry - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.SymbolStringPoolEntryList - name: SymbolStringPoolEntryList - type: Struct - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeContext - name: ThreadSafeContext - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule - name: ThreadSafeModule - type: Class - - uid: Ubiquity.NET.Llvm.OrcJITv2.ThreadSafeModule.GenericModuleOperation - name: ThreadSafeModule.GenericModuleOperation - type: Delegate - - uid: Ubiquity.NET.Llvm.OrcJITv2.TransformAction - name: TransformAction - type: Delegate -- uid: Ubiquity.NET.Llvm.Transforms.Legacy - name: Ubiquity.NET.Llvm.Transforms.Legacy - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.Transforms.Legacy.FunctionPassManager - name: FunctionPassManager - type: Class - - uid: Ubiquity.NET.Llvm.Transforms.Legacy.ModulePassManager - name: ModulePassManager - type: Class - - uid: Ubiquity.NET.Llvm.Transforms.Legacy.PassManager - name: PassManager - type: Class -- uid: Ubiquity.NET.Llvm.Types - name: Ubiquity.NET.Llvm.Types - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.Types.IArrayType - name: IArrayType - type: Interface - - uid: Ubiquity.NET.Llvm.Types.IFunctionType - name: IFunctionType - type: Interface - - uid: Ubiquity.NET.Llvm.Types.INamedStructuralType - name: INamedStructuralType - type: Interface - - uid: Ubiquity.NET.Llvm.Types.IPointerType - name: IPointerType - type: Interface - - uid: Ubiquity.NET.Llvm.Types.ISequenceType - name: ISequenceType - type: Interface - - uid: Ubiquity.NET.Llvm.Types.IStructType - name: IStructType - type: Interface - - uid: Ubiquity.NET.Llvm.Types.ITypeRef - name: ITypeRef - type: Interface - - uid: Ubiquity.NET.Llvm.Types.IVectorType - name: IVectorType - type: Interface - - uid: Ubiquity.NET.Llvm.Types.PointerTypeExtensions - name: PointerTypeExtensions - type: Class - - uid: Ubiquity.NET.Llvm.Types.TypeKind - name: TypeKind - type: Enum -- uid: Ubiquity.NET.Llvm.Values - name: Ubiquity.NET.Llvm.Values - type: Namespace - items: - - uid: Ubiquity.NET.Llvm.Values.Argument - name: Argument - type: Class - - uid: Ubiquity.NET.Llvm.Values.AsmDialect - name: AsmDialect - type: Enum - - uid: Ubiquity.NET.Llvm.Values.AttributeAllowedOn - name: AttributeAllowedOn - type: Enum - - uid: Ubiquity.NET.Llvm.Values.AttributeCollectionExtensions - name: AttributeCollectionExtensions - type: Class - - uid: Ubiquity.NET.Llvm.Values.AttributeContainerMixins - name: AttributeContainerMixins - type: Class - - uid: Ubiquity.NET.Llvm.Values.AttributeKind - name: AttributeKind - type: Enum - - uid: Ubiquity.NET.Llvm.Values.AttributeKindExtensions - name: AttributeKindExtensions - type: Class - - uid: Ubiquity.NET.Llvm.Values.AttributeValue - name: AttributeValue - type: Struct - - uid: Ubiquity.NET.Llvm.Values.BasicBlock - name: BasicBlock - type: Class - - uid: Ubiquity.NET.Llvm.Values.BlockAddress - name: BlockAddress - type: Class - - uid: Ubiquity.NET.Llvm.Values.CallingConvention - name: CallingConvention - type: Enum - - uid: Ubiquity.NET.Llvm.Values.Constant - name: Constant - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregate - name: ConstantAggregate - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantAggregateZero - name: ConstantAggregateZero - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantArray - name: ConstantArray - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantData - name: ConstantData - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantDataArray - name: ConstantDataArray - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantDataSequential - name: ConstantDataSequential - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantDataVector - name: ConstantDataVector - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantExpression - name: ConstantExpression - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantFP - name: ConstantFP - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantInt - name: ConstantInt - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantPointerNull - name: ConstantPointerNull - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantStruct - name: ConstantStruct - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantTokenNone - name: ConstantTokenNone - type: Class - - uid: Ubiquity.NET.Llvm.Values.ConstantVector - name: ConstantVector - type: Class - - uid: Ubiquity.NET.Llvm.Values.Function - name: Function - type: Class - - uid: Ubiquity.NET.Llvm.Values.FunctionAttributeIndex - name: FunctionAttributeIndex - type: Enum - - uid: Ubiquity.NET.Llvm.Values.GlobalAlias - name: GlobalAlias - type: Class - - uid: Ubiquity.NET.Llvm.Values.GlobalIFunc - name: GlobalIFunc - type: Class - - uid: Ubiquity.NET.Llvm.Values.GlobalIndirectSymbol - name: GlobalIndirectSymbol - type: Class - - uid: Ubiquity.NET.Llvm.Values.GlobalObject - name: GlobalObject - type: Class - - uid: Ubiquity.NET.Llvm.Values.GlobalObjectExtensions - name: GlobalObjectExtensions - type: Class - - uid: Ubiquity.NET.Llvm.Values.GlobalValue - name: GlobalValue - type: Class - - uid: Ubiquity.NET.Llvm.Values.GlobalValueExtensions - name: GlobalValueExtensions - type: Class - - uid: Ubiquity.NET.Llvm.Values.GlobalVariable - name: GlobalVariable - type: Class - - uid: Ubiquity.NET.Llvm.Values.IAttributeAccessor - name: IAttributeAccessor - type: Interface - - uid: Ubiquity.NET.Llvm.Values.IAttributeContainer - name: IAttributeContainer - type: Interface - - uid: Ubiquity.NET.Llvm.Values.IAttributeDictionary - name: IAttributeDictionary - type: Interface - - uid: Ubiquity.NET.Llvm.Values.InlineAsm - name: InlineAsm - type: Class - - uid: Ubiquity.NET.Llvm.Values.Linkage - name: Linkage - type: Enum - - uid: Ubiquity.NET.Llvm.Values.UndefValue - name: UndefValue - type: Class - - uid: Ubiquity.NET.Llvm.Values.UnnamedAddressKind - name: UnnamedAddressKind - type: Enum - - uid: Ubiquity.NET.Llvm.Values.Use - name: Use - type: Class - - uid: Ubiquity.NET.Llvm.Values.User - name: User - type: Class - - uid: Ubiquity.NET.Llvm.Values.Value - name: Value - type: Class - - uid: Ubiquity.NET.Llvm.Values.ValueExtensions - name: ValueExtensions - type: Class - - uid: Ubiquity.NET.Llvm.Values.ValueOperandListCollection`1 - name: ValueOperandListCollection - type: Class - - uid: Ubiquity.NET.Llvm.Values.Visibility - name: Visibility - type: Enum -memberLayout: SamePage diff --git a/docfx/llvm/articles/InternalDetails/toc.yml b/docfx/llvm/articles/InternalDetails/toc.yml index 47e9855494..d51b8c3123 100644 --- a/docfx/llvm/articles/InternalDetails/toc.yml +++ b/docfx/llvm/articles/InternalDetails/toc.yml @@ -3,11 +3,3 @@ href: llvm-handles.md - name: Marshalling Bool href: marshal-LLVMBool.md -- name: LLVMBindingsGenerator - href: LlvmBindingsGenerator-Overview.md - items: - - name: Configuration - href: LlvmBindingsGenerator-Configuration.md - items: - - name: YAML Format - href: LlvmBindingsGenerator-YAML-Config-format.md diff --git a/docfx/templates/Ubiquity/public/Kaleidoscope.js b/docfx/templates/Ubiquity/public/Kaleidoscope.js index f503aa424d..75e8815c8a 100644 --- a/docfx/templates/Ubiquity/public/Kaleidoscope.js +++ b/docfx/templates/Ubiquity/public/Kaleidoscope.js @@ -4,9 +4,13 @@ Simple Kaleidoscope syntax highlighting for Highlight.JS export function Kaleidoscope(hljs) { - return - { - keywords: 'def extern if then else for in var unary binary', + return { + aliases: ['Kaleidoscope', 'kls'], + keywords: { + $pattern: '[A-Za-z$_][0-9A-Za-z$_]*', + keyword: 'def extern if then else for in var unary binary', + built_in: 'putchard printd' + }, contains: [ hljs.COMMENT('#', '\\n', { relevance: 0 }), { diff --git a/docfx/templates/Ubiquity/public/antlr.js b/docfx/templates/Ubiquity/public/antlr.js new file mode 100644 index 0000000000..d144309e2a --- /dev/null +++ b/docfx/templates/Ubiquity/public/antlr.js @@ -0,0 +1,61 @@ +/* +Simple antlr syntax highlighting for Highlight.JS +*/ + +export function antlr(hljs) +{ + return { + aliases: ['antlr'], + keywords: { + keyword: 'grammar fragment' + }, + contains: [ + hljs.COMMENT('//', '\\n', { relevance: 0 }), + { + scope: 'regexp', + variants: [ + { begin: '\\[', end: '\\]' } + ], + relevance: 0 + }, + { + scope: 'string', + variants: [ + { begin: '\'', end: '\'' }, + { begin: '"', end: '"' } + ], + relevance: 0 + }, + { + scope: 'keyword', + variants: [ + { begin: 'i\\d+' } + ], + relevance: 0 + }, + { + scope: 'meta', + variants: [ + { begin: '{', end: '}' }, + { begin: '{', end: '}\?' } + ], + relevance: 0 + }, + { + scope: 'number', + variants: [ + { begin: '0[xX][a-fA-F0-9]+' }, + { begin: '-?\\d+(?:[.]\\d+)?(?:[eE][-+]?\\d+(?:[.]\\d+)?)?' } + ], + relevance: 0 + }, + { + scope: 'symbol', + variants: [ + { begin: '([A-Z][\\w\\-$.]*)' } + ], + relevance: 0 + } + ] + }; +} diff --git a/docfx/templates/Ubiquity/public/main.js b/docfx/templates/Ubiquity/public/main.js index 4485c1283e..06990eedb5 100644 --- a/docfx/templates/Ubiquity/public/main.js +++ b/docfx/templates/Ubiquity/public/main.js @@ -1,9 +1,11 @@ import { Kaleidoscope } from './Kaleidoscope.js' +import { antlr } from './antlr.js' export default { configureHljs (hljs) { hljs.registerLanguage('Kaleidoscope', Kaleidoscope); + hljs.registerLanguage('antlr', antlr); }, } diff --git a/repo-buildutils.ps1 b/repo-buildutils.ps1 index c2b6db4277..07f5bda832 100644 --- a/repo-buildutils.ps1 +++ b/repo-buildutils.ps1 @@ -21,7 +21,6 @@ Set-StrictMode -version 3.0 $ErrorActionPreference = "Stop" $InformationPreference = "Continue" - function Initialize-BuildEnvironment { <# diff --git a/src/Interop/LlvmBindingsGenerator/Configuration/IGeneratorConfig.cs b/src/Interop/LlvmBindingsGenerator/Configuration/IGeneratorConfig.cs deleted file mode 100644 index 9b206eace4..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Configuration/IGeneratorConfig.cs +++ /dev/null @@ -1,23 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; -using System.Collections.Immutable; -using System.Linq; - -using LlvmBindingsGenerator.Templates; - -namespace LlvmBindingsGenerator.Configuration -{ - internal interface IGeneratorConfig - { - ImmutableArray IgnoredHeaders { get; } - - IEnumerable HandleMap { get; } - - ILookup BuildTemplateMap( ); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/IHandleInfo.cs b/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/IHandleInfo.cs deleted file mode 100644 index 68e6a7459e..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/IHandleInfo.cs +++ /dev/null @@ -1,14 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -namespace LlvmBindingsGenerator.Configuration -{ - internal interface IHandleInfo - : IYamlNodeLocation - { - string HandleName { get; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/IncludeRef.cs b/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/IncludeRef.cs deleted file mode 100644 index cc6a12be25..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/IncludeRef.cs +++ /dev/null @@ -1,18 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using YamlDotNet.Core; - -namespace LlvmBindingsGenerator.Configuration -{ - internal class IncludeRef - : IYamlNodeLocation - { - public string Path { get; set; } = string.Empty; - - public Mark Start { get; set; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/ReadOnlyConfig.cs b/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/ReadOnlyConfig.cs deleted file mode 100644 index aeee8fcd80..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/ReadOnlyConfig.cs +++ /dev/null @@ -1,32 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; -using System.Collections.Immutable; -using System.Linq; - -using LlvmBindingsGenerator.Templates; - -namespace LlvmBindingsGenerator.Configuration.Yaml -{ - internal class ReadOnlyConfig - : IGeneratorConfig - { - public ReadOnlyConfig( YamlConfiguration config ) - { - YamlConfig = config; - } - - public ImmutableArray IgnoredHeaders - => [ .. YamlConfig.IgnoredHeaders ]; - - public IEnumerable HandleMap => YamlConfig.HandleMap; - - public ILookup BuildTemplateMap( ) => YamlConfig.BuildTemplateMap( ); - - private readonly YamlConfiguration YamlConfig; - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlConfiguration.cs b/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlConfiguration.cs deleted file mode 100644 index 2240ef054e..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlConfiguration.cs +++ /dev/null @@ -1,110 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Collections.Generic; -using System.Diagnostics.CodeAnalysis; -using System.IO; -using System.Linq; - -using LlvmBindingsGenerator.Templates; - -using YamlDotNet.Core; -using YamlDotNet.Core.Events; -using YamlDotNet.Serialization; -using YamlDotNet.Serialization.NamingConventions; -using YamlDotNet.Serialization.NodeDeserializers; - -namespace LlvmBindingsGenerator.Configuration -{ - [SuppressMessage( "Performance", "CA1812:Avoid uninstantiated internal classes", Justification = "Instantiated via de-serialization" )] - [SuppressMessage( "CodeQuality", "IDE0079:Remove unnecessary suppression", Justification = "It is necessary, tooling can't agree on the point. (removing it generates a warning)" )] - internal class YamlConfiguration - { - public List IgnoredHeaders { get; set; } = new List(); - - public List HandleMap { get; set; } = new List(); - - public static YamlConfiguration ParseFrom( string path ) - { - using var input = File.OpenText( path ); - var deserializer = new DeserializerBuilder( ) - .WithNodeDeserializer( inner => new YamlLocationNodeDeserializer(inner) - , s => s.InsteadOf() - ) - .WithTypeConverter( new IncludeRefConverter()) - .WithNamingConvention( PascalCaseNamingConvention.Instance ) - .WithTagMapping("!ContextHandle", typeof(YamlContextHandle)) - .WithTagMapping("!GlobalHandle", typeof(YamlGlobalHandle)) - .Build( ); - - return deserializer.Deserialize( input ); - } - - public ILookup BuildTemplateMap() - { - // get all the templates to use for generating the output code - var handleTemplates = from h in HandleMap - from template in Transforms( h ) - select (h.HandleName, template); - return handleTemplates.ToLookup((p)=>p.HandleName, (p)=>p.template); - } - - private static IEnumerable Transforms( IHandleInfo h ) - { - switch(h) - { - case YamlGlobalHandle ygh: - yield return new GlobalHandleTemplate( ygh.HandleName, ygh.Disposer, ygh.Alias ); - - // for aliases treat them like a context handle as they are - // not owned by the managed code and only reference the native - // handle via a simple nint. Context Handle template creates - // a type safe wrapper around the raw 'nint' (as a value type) that - // does NOT implement IDisposable. (Unlike a SafeHandle) - if(ygh.Alias) - { - yield return new ContextHandleTemplate( $"{ygh.HandleName}Alias" ); - } - - break; - - case YamlContextHandle ych: - yield return new ContextHandleTemplate( ych.HandleName ); - break; - - default: - throw new InvalidOperationException( "Unknown handle info kind encountered" ); - } - } - - // special converter to ensure runtime platform normalized paths for any include paths in the file - private class IncludeRefConverter - : IYamlTypeConverter - { - public bool Accepts( Type type ) - { - return type == typeof( IncludeRef ); - } - - public object ReadYaml( IParser parser, Type type, ObjectDeserializer rootDeserializer) - { - var scalarEvent = parser.Consume(); - return new IncludeRef() { Path = NormalizePathSep( scalarEvent.Value ), Start = scalarEvent.Start }; - } - - public void WriteYaml( IEmitter emitter, object? value, Type type, ObjectSerializer serializer ) - { - throw new NotSupportedException(); - } - - internal static string NormalizePathSep( string path ) - { - return path.Replace( Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar ); - } - } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlContextHandle.cs b/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlContextHandle.cs deleted file mode 100644 index 548dc9f76d..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlContextHandle.cs +++ /dev/null @@ -1,26 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Diagnostics; -using System.Diagnostics.CodeAnalysis; - -using YamlDotNet.Core; -using YamlDotNet.Serialization; - -namespace LlvmBindingsGenerator.Configuration -{ - [SuppressMessage( "Performance", "CA1812:Avoid uninstantiated internal classes", Justification = "Instantiated via de-serialization" )] - [DebuggerDisplay( "ContextHandle({HandleName})" )] - internal class YamlContextHandle - : IYamlNodeLocation - , IHandleInfo - { - public string HandleName { get; set; } = string.Empty; - - [YamlIgnore] - public Mark Start { get; set; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlGlobalHandle.cs b/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlGlobalHandle.cs deleted file mode 100644 index 9b0a7db09c..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlGlobalHandle.cs +++ /dev/null @@ -1,32 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Diagnostics; -using System.Diagnostics.CodeAnalysis; - -using YamlDotNet.Core; -using YamlDotNet.Serialization; - -#pragma warning disable IDE0130 // Namespace does not match folder structure -namespace LlvmBindingsGenerator.Configuration -{ - [SuppressMessage( "Performance", "CA1812:Avoid uninstantiated internal classes", Justification = "Instantiated via de-serialization" )] - [SuppressMessage( "CodeQuality", "IDE0079:Remove unnecessary suppression", Justification = "Tooling is not acapable of seeing the need for this" )] - [DebuggerDisplay( "GlobalHandle({HandleName},{Disposer}, Alias:{Alias})" )] - internal class YamlGlobalHandle - : IYamlNodeLocation - , IHandleInfo - { - public string HandleName { get; set; } = string.Empty; - - public string Disposer { get; set; } = string.Empty; - - public bool Alias { get; set; } - - [YamlIgnore] - public Mark Start { get; set; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlLocationNodeDeserializer.cs b/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlLocationNodeDeserializer.cs deleted file mode 100644 index ef6feb8f7c..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Configuration/Yaml/YamlLocationNodeDeserializer.cs +++ /dev/null @@ -1,62 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Diagnostics.CodeAnalysis; - -using YamlDotNet.Core; -using YamlDotNet.Serialization; - -namespace LlvmBindingsGenerator.Configuration -{ - [SuppressMessage( "StyleCop.CSharp.DocumentationRules", "SA1649:File name should match first type name", Justification = "Interface and class to detect it are a matched pair" )] - [SuppressMessage( "CodeQuality", "IDE0079:Remove unnecessary suppression", Justification = "IDE/Tooling is confused, it is needed" )] - internal interface IYamlNodeLocation - { - Mark Start { get; set; } - } - - // Wrapper for standard object deserializer that tests for IYamlConfigLocation to add location inforamtion - // to the deserialized nodes. This allows far better error reporting etc.. when performing a semantic pass - // on the data. Unfortunately, the owner of YamlDotNet is presently unwilling to consider such a thing in - // a general manner as part of the library (see: https://github.com/aaubry/YamlDotNet/issues/494). - internal class YamlLocationNodeDeserializer - : INodeDeserializer - { - public YamlLocationNodeDeserializer(INodeDeserializer inner) - { - Inner = inner; - } - - public bool Deserialize( - IParser reader, - Type expectedType, - Func nestedObjectDeserializer, - out object? value, - ObjectDeserializer rootDeserializer - ) - { - value = null; - if (reader.Current is not null) - { - var start = reader.Current.Start; - if(Inner.Deserialize( reader, expectedType, nestedObjectDeserializer, out value, rootDeserializer )) - { - if(value is IYamlNodeLocation node) - { - node.Start = start; - } - - return true; - } - } - - return false; - } - - private readonly INodeDeserializer Inner; - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ASTContextExtensions.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ASTContextExtensions.cs deleted file mode 100644 index e16cb4d269..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ASTContextExtensions.cs +++ /dev/null @@ -1,156 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Collections.Generic; -using System.Diagnostics.CodeAnalysis; -using System.Linq; -using System.Text; - -using CppSharp.AST; - -namespace LlvmBindingsGenerator -{ - internal static class ASTContextExtensions - { - public static IEnumerable GeneratedUnits( this ASTContext ctx ) - { - return from tu in ctx.TranslationUnits - where tu.IsGenerated - select tu; - } - - public static IEnumerable ValidUnits( this ASTContext ctx ) - { - return from tu in ctx.TranslationUnits - where tu.IsValid - select tu; - } - - public static bool IsCoreHeader( this TranslationUnit tu ) - { - return tu.IsValid && tu.IncludePath != null && tu.FileRelativeDirectory.StartsWith( "llvm-c", StringComparison.Ordinal ); - } - - public static bool IsExtensionHeader( this TranslationUnit tu ) - { - return !tu.IsCoreHeader() - && tu.IsValid - && !tu.IsSystemHeader - && tu.FileNameWithoutExtension.EndsWith( "Bindings", StringComparison.Ordinal ); - } - - public static IEnumerable GetHandleTypeDefs( this ASTContext ctx ) - { - return from tu in ctx.GeneratedUnits() - from td in tu.Typedefs - where td.IsHandleTypeDef() - select td; - } - - public static bool TryGetHandleDecl( this CppSharp.AST.Type astType, [MaybeNullWhen(false)] out TypedefNameDecl? decl ) - { - switch( astType ) - { - case TypedefType tdt when( tdt.Declaration.IsHandleTypeDef() ): - decl = tdt.Declaration; - return true; - - case PointerType pt when( pt.Pointee is TypedefType tdt && tdt.Declaration.IsHandleTypeDef() ): - decl = tdt.Declaration; - return true; - - default: - decl = null; - return false; - } - } - - public static bool IsOpaqueStruct( this TagType tt ) - { - return tt.Declaration is Class c && c.IsOpaque; - } - - public static bool IsHandleTypeDef( this TypedefNameDecl td ) - { - return IsCannonicalHandleTypeDef( td ) || IsOpaquHandleTypeDef( td ); - } - - public static bool IsOpaquHandleTypeDef( this TypedefNameDecl td ) - { - // bad form, declaration is the opaque struct, not a pointer to the struct - return td.Type is TagType tt2 && tt2.IsOpaqueStruct(); - } - - [SuppressMessage( "Style", "IDE0046:Convert to conditional expression", Justification = "Result is anything but simplified!" )] - public static bool IsCannonicalHandleTypeDef( this TypedefNameDecl td ) - { - // Canonical form, declaration is a pointer to an opaque struct - if( td.Type is not PointerType pt ) - { - return false; - } - - return ( pt.Pointee is TagType tt && tt.IsOpaqueStruct() ) - || ( pt.Pointee is BuiltinType bt && bt.Type == PrimitiveType.Void ); - } - - [SuppressMessage( "Globalization", "CA1308:Normalize strings to uppercase", Justification = "It's supposed to be all lowercase" )] - [SuppressMessage( "CodeQuality", "IDE0079:Remove unnecessary suppression", Justification = "It is needed, tooling is too stupid to see that..." )] - public static string AsString( this CppSharp.AST.Attribute attr, bool useFullNamespace = false ) - { - var bldr = new StringBuilder( "[" ); - if( attr is TargetedAttribute ta && ta.Target != AttributeTarget.Default ) - { - bldr.Append( ta.Target.ToString().ToLowerInvariant() ); - bldr.Append( ": " ); - } - - bldr.Append( useFullNamespace ? attr.Type.FullName : attr.Type.Name[ 0..^9 ] ); - if( !string.IsNullOrWhiteSpace( attr.Value ) ) - { - bldr.Append( "( " ); - bldr.Append( attr.Value ); - bldr.Append( " )" ); - } - - bldr.Append( ']' ); - return bldr.ToString(); - } - - public static bool IsDelegateTypeDef( this TypedefNameDecl td ) - { - return td.TryGetFunctionSignature( out _ ); - } - - public static bool TryGetFunctionSignature( this TypedefNameDecl td, [MaybeNullWhen(false)] out FunctionType? signature ) - { - signature = null; - if( td.Type is PointerType pt && pt.Pointee is FunctionType sig ) - { - signature = sig; - return true; - } - - return false; - } - - public static FunctionType? GetFunctionPointerType( this TypedefNameDecl td ) - { - return ( td.Type is PointerType pt && pt.Pointee is FunctionType ft ) ? ft : null; - } - - public static IReadOnlyDictionary GetFunctionPointers( this ASTContext context ) - { - return ( from tu in context.TranslationUnits - from td in tu.Typedefs - let ft = td.GetFunctionPointerType() - where ft != null - select (td.Name, Signature: ft) - ).ToDictionary( item => item.Name, item => item.Signature ); - } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/Driver.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/Driver.cs deleted file mode 100644 index ea6b533777..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/Driver.cs +++ /dev/null @@ -1,341 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; - -using CppSharp; -using CppSharp.AST; -using CppSharp.Generators; -using CppSharp.Parser; -using CppSharp.Passes; -using CppSharp.Types; -using CppSharp.Utils; - -using ClangParser = CppSharp.ClangParser; - -namespace LlvmBindingsGenerator -{ - /// Provides a more flexible implementation of the general "driver" concept in CppSharp - /// - /// Notable differences: - /// 1. The driver does not setup ANY passes, it is entirely up to the library to do that - /// 2. There is no intermediate "Generator" needed - /// 3. Deals in interfaces rather than concrete types so it is more extensible - /// 4. The code generation types are interfaces with names that more accurately reflect what they do - /// - internal sealed class Driver - : IDriver - , IDisposable - { - public Driver() - : this( new DriverOptions() ) - { - } - - public Driver( DriverOptions options ) - { - Options = options; - ParserOptions = new CppSharp.Parser.ParserOptions(); - Context = new BindingContext( Options, ParserOptions ); - } - - public DriverOptions Options { get; } - - public CppSharp.Parser.ParserOptions ParserOptions { get; } - - public BindingContext Context { get; private set; } - - public void SetupTypeMaps() => - Context.TypeMaps = new TypeMapDatabase( Context ); - - public void Setup() - { - ValidateOptions(); - ParserOptions.Setup(TargetPlatform.Windows); - } - - public bool ParseCode() - { - ClangParser.SourcesParsed += OnSourceFileParsed; - - var files = Options.Modules.SelectMany( m => m.Headers ); - ParserOptions.BuildForSourceFile( Options.Modules ); - - using( CppSharp.Parser.ParserResult result = ClangParser.ParseSourceFiles( files, ParserOptions ) ) - { - Context.TargetInfo = result.TargetInfo; - } - - Context.ASTContext = ClangParser.ConvertASTContext( ParserOptions.ASTContext ); - ClangParser.SourcesParsed -= OnSourceFileParsed; - return !HasParsingErrors; - } - - public void SortModulesByDependencies() - { - var sortedModules = Options.Modules.TopologicalSort( GetAndAddDependencies ); - Options.Modules.Clear(); - Options.Modules.AddRange( sortedModules ); - } - - public bool ParseLibraries() - { - ClangParser.LibraryParsed += OnFileParsed; - foreach( Module module in Options.Modules ) - { - using var linkerOptions = new LinkerOptions(Context.LinkerOptions); - foreach( string libraryDir in module.LibraryDirs ) - { - linkerOptions.AddLibraryDirs( libraryDir ); - } - - foreach( string library in module.Libraries ) - { - if( !Context.Symbols.Libraries.Any( ( NativeLibrary l ) => l.FileName == library ) ) - { - linkerOptions.AddLibraries( library ); - } - } - - using ParserResult parserResult = ClangParser.ParseLibrary(linkerOptions); - if( parserResult.Kind == ParserResultKind.Success ) - { - for( uint num = 0u; num < parserResult.LibrariesCount; num++ ) - { -#pragma warning disable IDISP004 // Don't ignore created IDisposable - // This is "cloned" from CppSharp code and it is assumed to transfer ownership - // documentation is sadly lacking on most of this library - Context.Symbols.Libraries.Add( ClangParser.ConvertLibrary( parserResult.GetLibraries( num ) ) ); -#pragma warning restore IDISP004 // Don't ignore created IDisposable - } - } - } - - ClangParser.LibraryParsed -= OnFileParsed; - Context.Symbols.IndexSymbols(); - SortModulesByDependencies(); - return true; - } - - public void ProcessCode() - { - Context.RunPasses(); - } - - public void GenerateCode( IEnumerable generators ) - { - string outputPath = Path.GetFullPath( Options.OutputDir ); - - if( !Directory.Exists( outputPath ) ) - { - Directory.CreateDirectory( outputPath ); - } - - foreach( ICodeGenerator generator in generators.Where( o => o.IsValid ) ) - { - string generatorOutputPath = outputPath; - - if( Options.UseHeaderDirectories ) - { - generatorOutputPath = Path.Combine( generatorOutputPath, generator.FileRelativeDirectory ); - Directory.CreateDirectory( generatorOutputPath ); - } - - try - { - string templateOutputPath = generatorOutputPath; - if( !string.IsNullOrWhiteSpace( generator.Template.SubFolder ) ) - { - templateOutputPath = Path.Combine( templateOutputPath, generator.Template.SubFolder ); - Directory.CreateDirectory( templateOutputPath ); - } - - string fileName = $"{generator.FileNameWithoutExtension}.{generator.Template.FileExtension}"; - - string fullFilePath = Path.Combine( templateOutputPath, fileName ); - File.WriteAllText( fullFilePath, generator.Template.Generate() ); - - Diagnostics.Debug( "Generated '{0}'", fileName ); - } - catch( System.IO.IOException ex ) - { - Diagnostics.Error( ex.Message ); - } - } - } - - public void Dispose() - { - Context?.TargetInfo.Dispose(); - - ParserOptions.Dispose(); - CppSharp.AST.Type.TypePrinterDelegate = null; - } - - public static void Run( ILibrary library ) - { - using var driver = new Driver(); - var options = driver.Options; - library.Setup( driver ); - driver.Setup(); - - Diagnostics.Message( "Parsing libraries..." ); - if( !driver.ParseLibraries() ) - { - return; - } - - Diagnostics.Message( "Parsing code..." ); - if( !driver.ParseCode() ) - { - Diagnostics.Error( "Encountered one or more errors while parsing source code - no code generation performed." ); - return; - } - - new CleanUnitPass { Context = driver.Context }.VisitASTContext( driver.Context.ASTContext ); - options.Modules.RemoveAll( m => m != options.SystemModule && !m.Units.GetGenerated().Any() ); - - Diagnostics.Message( "Processing code..." ); - - library.SetupPasses(); - driver.SetupTypeMaps(); - - library.Preprocess( driver.Context.ASTContext ); - - if( CppSharp.AST.Type.TypePrinterDelegate is null) - { - throw new InvalidOperationException("Type.TypePrinterDelegate is null; Library must configure it to a non-null value to prevent null reference crashes"); - } - - driver.ProcessCode(); - library.Postprocess( driver.Context.ASTContext ); - - if( !options.DryRun ) - { - bool hasErrors = Diagnostics.Implementation is ErrorTrackingDiagnostics etd && etd.ErrorCount > 0; - - if( hasErrors ) - { - Diagnostics.Error( "Errors in previous stages, skipping code generation" ); - } - else - { - Diagnostics.Message( "Generating code..." ); - - var generators = library.CreateGenerators( ); - driver.GenerateCode( generators ); - } - } - } - - private IEnumerable GetAndAddDependencies( Module m ) - { - var dependencies = ( from library in Context.Symbols.Libraries - where m.Libraries.Contains( library.FileName ) - from module in Options.Modules - where library.Dependencies.Intersect( module.Libraries ).Any( ) - select module ).ToList( ); - if( m != Options.SystemModule ) - { - m.Dependencies.Add( Options.SystemModule ); - } - - m.Dependencies.AddRange( dependencies ); - return m.Dependencies; - } - - private void ValidateOptions() - { - if( !Options.Compilation.Platform.HasValue ) - { - Options.Compilation.Platform = Platform.Host; - } - - foreach( var module in Options.Modules ) - { - if( string.IsNullOrWhiteSpace( module.LibraryName ) ) - { - throw new InvalidOptionException( "One of your modules has no library name." ); - } - - module.OutputNamespace ??= module.LibraryName; - } - - if( Options.NoGenIncludeDirs != null ) - { - foreach( string incDir in Options.NoGenIncludeDirs ) - { - ParserOptions.AddIncludeDirs( incDir ); - } - } - } - - private void OnSourceFileParsed( IEnumerable files, CppSharp.Parser.ParserResult result ) - { - OnFileParsed( files, result ); - } - - private void OnFileParsed( string file, CppSharp.Parser.ParserResult result ) - { - OnFileParsed( [file], result ); - } - - private void OnFileParsed( IEnumerable files, CppSharp.Parser.ParserResult result ) - { - switch( result.Kind ) - { - case ParserResultKind.Success: - if( !Options.Quiet ) - { - Diagnostics.Debug( "Parsed '{0}'", string.Join( ", ", files ) ); - } - - break; - - case ParserResultKind.Error: - Diagnostics.Error( "Error parsing '{0}'", string.Join( ", ", files ) ); - HasParsingErrors = true; - break; - - case ParserResultKind.FileNotFound: - Diagnostics.Error( "File{0} not found: '{1}'" - , ( files.Count() > 1 ) ? "s" : string.Empty - , string.Join( ",", files ) - ); - HasParsingErrors = true; - break; - } - - for( uint i = 0; i < result.DiagnosticsCount; ++i ) - { - using ParserDiagnostic diag = result.GetDiagnostics( i ); - - if( diag.Level == ParserDiagnosticLevel.Warning && !Options.Verbose ) - { - continue; - } - - if( diag.Level == ParserDiagnosticLevel.Note ) - { - continue; - } - - Diagnostics.Message( "{0}({1},{2}): {3}: {4}" - , diag.FileName - , diag.LineNumber - , diag.ColumnNumber - , diag.Level.ToString().ToUpperInvariant() - , diag.Message - ); - } - } - - private bool HasParsingErrors; - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ErrorTrackingDiagnostics.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ErrorTrackingDiagnostics.cs deleted file mode 100644 index ef52928bf7..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ErrorTrackingDiagnostics.cs +++ /dev/null @@ -1,68 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; - -using CppSharp; - -namespace LlvmBindingsGenerator -{ - internal class ErrorTrackingDiagnostics - : IDiagnostics - { - public int ErrorCount { get; private set; } - - public DiagnosticKind Level - { - get => InnerDiagnostics.Level; - set => InnerDiagnostics.Level = value; - } - - public void Emit( DiagnosticInfo info ) - { - try - { - switch( info.Kind ) - { - case DiagnosticKind.Debug: - Console.ForegroundColor = ConsoleColor.Cyan; - break; - - case DiagnosticKind.Message: - Console.ForegroundColor = ConsoleColor.White; - break; - - case DiagnosticKind.Warning: - Console.ForegroundColor = ConsoleColor.Yellow; - break; - - case DiagnosticKind.Error: - Console.ForegroundColor = ConsoleColor.Red; - ++ErrorCount; - break; - } - - InnerDiagnostics.Emit( info ); - } - finally - { - Console.ResetColor( ); - } - } - - public void PopIndent( ) - { - InnerDiagnostics.PopIndent( ); - } - - public void PushIndent( int level = 4 ) - { - InnerDiagnostics.PushIndent( level ); - } - - private readonly IDiagnostics InnerDiagnostics = new ConsoleDiagnostics(); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/FieldExtensions.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/FieldExtensions.cs deleted file mode 100644 index 5954005405..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/FieldExtensions.cs +++ /dev/null @@ -1,18 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using CppSharp.AST; - -namespace LlvmBindingsGenerator -{ - internal static class FieldExtensions - { - public static bool IsInlinedArray(this Field f) - { - return f.Type is ArrayType at && at.SizeType == ArrayType.ArraySize.Constant; - } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGenTemplate.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGenTemplate.cs deleted file mode 100644 index da530e4c5a..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGenTemplate.cs +++ /dev/null @@ -1,25 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -namespace LlvmBindingsGenerator.Templates -{ - internal interface ICodeGenTemplate - { - string ToolVersion { get; } - - string FileExtension { get; } - - string SubFolder { get; } - - string Generate( ); - } - - internal interface IHandleCodeTemplate - : ICodeGenTemplate - { - string HandleName { get; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGenerator.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGenerator.cs deleted file mode 100644 index 9f3f44a9d1..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGenerator.cs +++ /dev/null @@ -1,21 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using LlvmBindingsGenerator.Templates; - -namespace LlvmBindingsGenerator -{ - internal interface ICodeGenerator - { - bool IsValid { get; } - - string FileNameWithoutExtension { get; } - - string FileRelativeDirectory { get; } - - ICodeGenTemplate Template { get; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGeneratorTemplateFactory.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGeneratorTemplateFactory.cs deleted file mode 100644 index b73eed56fe..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ICodeGeneratorTemplateFactory.cs +++ /dev/null @@ -1,18 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; -using CppSharp.Generators; - -namespace LlvmBindingsGenerator -{ - internal interface ICodeGeneratorTemplateFactory - { - IEnumerable CreateTemplates( BindingContext bindingContext ); - - void SetupPasses( BindingContext bindingContext ); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/IDriver.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/IDriver.cs deleted file mode 100644 index 81570f8833..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/IDriver.cs +++ /dev/null @@ -1,33 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; - -using CppSharp; -using CppSharp.Generators; -using CppSharp.Parser; -using CppSharp.Passes; - -namespace LlvmBindingsGenerator -{ - internal interface IDriver - : IDisposable - { - DriverOptions Options { get; } - - ParserOptions ParserOptions { get; } - - BindingContext Context { get; } - } - - internal static class DriverExtensions - { - public static void AddTranslationUnitPass( this IDriver driver, TranslationUnitPass pass ) - { - driver.Context.TranslationUnitPasses.AddPass( pass ); - } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ILibrary.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ILibrary.cs deleted file mode 100644 index 74a391fc02..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ILibrary.cs +++ /dev/null @@ -1,25 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; - -using CppSharp.AST; - -namespace LlvmBindingsGenerator -{ - internal interface ILibrary - { - void Preprocess( ASTContext ctx ); - - void Postprocess( ASTContext ctx ); - - void Setup( IDriver driver ); - - void SetupPasses( ); - - IEnumerable CreateGenerators( ); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ITypePrinter2.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ITypePrinter2.cs deleted file mode 100644 index 890fb115dc..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/ITypePrinter2.cs +++ /dev/null @@ -1,22 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using CppSharp.AST; - -namespace LlvmBindingsGenerator -{ - internal enum TypeNameKind - { - Native, - Managed, - } - - internal interface ITypePrinter2 - : ITypePrinter - { - string GetName( CppSharp.AST.Type t, TypeNameKind kind = TypeNameKind.Native ); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/NativeTypePrinter.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/NativeTypePrinter.cs deleted file mode 100644 index 0f89d92b16..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/NativeTypePrinter.cs +++ /dev/null @@ -1,188 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Diagnostics.CodeAnalysis; -using System.Text; - -using CppSharp.AST; - -namespace LlvmBindingsGenerator -{ - internal class NativeTypePrinter - : ITypePrinter - , ITypeVisitor - { - public string ToString( CppSharp.AST.Type type ) - { - return type.Visit( this ); - } - - [SuppressMessage( "Style", "IDE0046:Convert to conditional expression", Justification = "More complicated that way" )] - public string VisitArrayType( ArrayType array, TypeQualifiers quals ) - { - if( array.SizeType is ArrayType.ArraySize.Constant or ArrayType.ArraySize.Incomplete ) - { - return array.Size == 0 ? $"{array.Type}*" : $"{array.QualifiedType}[{array.Size}]"; - } - - throw new NotSupportedException( ); - } - - public string VisitAttributedType( AttributedType attributed, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitBuiltinType( BuiltinType builtin, TypeQualifiers quals ) - { - return VisitPrimitiveType(builtin.Type, quals); - } - - public string VisitCILType( CILType type, TypeQualifiers quals ) - { - return type.Type.ToString(); - } - - public string VisitDecayedType( DecayedType decayed, TypeQualifiers quals ) - { - return decayed.Decayed.Visit(this); - } - - public string VisitDeclaration( Declaration decl, TypeQualifiers quals ) - { - return decl.QualifiedOriginalName; - } - - public string VisitDependentNameType( DependentNameType dependent, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitDependentTemplateSpecializationType( DependentTemplateSpecializationType template, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitFunctionType( FunctionType function, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitInjectedClassNameType( InjectedClassNameType injected, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitMemberPointerType( MemberPointerType member, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitPackExpansionType( PackExpansionType packExpansionType, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitPointerType( PointerType pointer, TypeQualifiers quals ) - { - return $"{pointer.QualifiedPointee.Visit(this)}*"; - } - - public string VisitPrimitiveType( PrimitiveType type, TypeQualifiers quals ) - { - return type switch - { - PrimitiveType.Bool => "bool", - PrimitiveType.Char => "char", - PrimitiveType.Double => "double", - PrimitiveType.Float => "float", - PrimitiveType.Int => "int", - PrimitiveType.IntPtr => "intptr_t", - PrimitiveType.Long => "long", - PrimitiveType.LongLong => "long long", - PrimitiveType.Short => "short", - PrimitiveType.UChar => "unsigned char", - PrimitiveType.UInt => "unsigned int", - PrimitiveType.UIntPtr => "uintptr_t", - PrimitiveType.ULong => "unsigned long", - PrimitiveType.ULongLong => "unsigned long long", - PrimitiveType.UShort => "unsigned short", - PrimitiveType.Void => "void", - PrimitiveType.WideChar => "wchar_t", - _ => throw new NotSupportedException( ), - }; - } - - public string VisitQualifiedType( QualifiedType type ) - { - StringBuilder bldr = new(); - bldr.Append(type.Type.Visit(this)); - if( type.Qualifiers.IsConst ) - { - bldr.Append("const "); - } - - if( type.Qualifiers.IsRestrict ) - { - throw new NotSupportedException("restricted types not allowed; only defined for C99, at best a non-standard extension in C++"); - } - - if(type.Qualifiers.IsVolatile) - { - bldr.Append( "volatile " ); - } - - // TODO: figure out what "mode is supposed to be and how to deal with it... - return bldr.ToString(); - } - - public string VisitTagType( TagType tag, TypeQualifiers quals ) - { - return VisitDeclaration(tag.Declaration, quals); - } - - public string VisitTemplateParameterSubstitutionType( TemplateParameterSubstitutionType param, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitTemplateParameterType( TemplateParameterType param, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitTemplateSpecializationType( TemplateSpecializationType template, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitTypedefType( TypedefType typedef, TypeQualifiers quals ) - { - return typedef.Declaration.OriginalName; - } - - public string VisitUnaryTransformType( UnaryTransformType unaryTransformType, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitUnresolvedUsingType( UnresolvedUsingType unresolvedUsingType, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitUnsupportedType( UnsupportedType type, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - - public string VisitVectorType( VectorType vectorType, TypeQualifiers quals ) - { - throw new NotSupportedException( ); - } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/TargetedAttribute.cs b/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/TargetedAttribute.cs deleted file mode 100644 index 2dacf3b627..0000000000 --- a/src/Interop/LlvmBindingsGenerator/CppSharpExtensions/TargetedAttribute.cs +++ /dev/null @@ -1,58 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Collections.Generic; - -namespace LlvmBindingsGenerator -{ - internal enum AttributeTarget - { - Default, - Assembly, - Module, - Field, - Event, - Method, - Param, - Property, - Return, - Type - } - - internal class TargetedAttribute - : CppSharp.AST.Attribute - { - public TargetedAttribute( Type type, params string[ ] args ) - : this( AttributeTarget.Default, type, ( IEnumerable )args ) - { - } - - public TargetedAttribute( AttributeTarget target, Type type, params string[ ] args ) - : this( target, type, ( IEnumerable )args ) - { - } - - public TargetedAttribute( AttributeTarget target, Type type, IEnumerable args ) - { - if( !typeof( Attribute ).IsAssignableFrom( type ) ) - { - throw new ArgumentException( "Attribute type required", nameof( type ) ); - } - - Type = type; - Target = target; - Value = string.Join( ", ", args ); - } - - public void AddParameter( string param ) - { - Value = $"{Value}, {param}"; - } - - public AttributeTarget Target { get; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/GlobalSuppressions.cs b/src/Interop/LlvmBindingsGenerator/GlobalSuppressions.cs deleted file mode 100644 index 5ff5b9180c..0000000000 --- a/src/Interop/LlvmBindingsGenerator/GlobalSuppressions.cs +++ /dev/null @@ -1,14 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -/* attributes that are applied to this project. -// Project-level suppressions either have no target or are given -// a specific target and scoped to a namespace, type, member, etc. -*/ - -using System.Diagnostics.CodeAnalysis; - -[assembly: SuppressMessage( "Performance", "CA1812:Avoid uninstantiated internal classes", Justification = "Use is Controlled by preprocessor define 'GENERATE_CS_INTEROP'" )] diff --git a/src/Interop/LlvmBindingsGenerator/LibLLVMTypePrinter.cs b/src/Interop/LlvmBindingsGenerator/LibLLVMTypePrinter.cs deleted file mode 100644 index a0a2b24c8f..0000000000 --- a/src/Interop/LlvmBindingsGenerator/LibLLVMTypePrinter.cs +++ /dev/null @@ -1,95 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; - -using CppSharp.AST; -using CppSharp.Generators.CSharp; - -namespace LlvmBindingsGenerator -{ - // CONSIDER: Make this type printer provide the source language name - // so that Type.TosString() just works as is generally expected. - // (May be simpler to get the debug signature if available) - // Then add an extension method to type (i.e. ToTargetLanguageString()) - // that implements the functionality currently in this class - - /// Specialized type printer for Ubiquity.NET.Llvm.Interop - /// - /// Unfortunately will fail with a null - /// reference if there isn't a type printer delegate assigned. E.g. it has no - /// internal ability to convert the type to a string. Instead, it assumes that the - /// original source type is irrelevant and that the application is going to generate - /// code. Furthermore it assumes that the code generation will use ToString() to - /// get the final output generated code type name. Generally speaking that's a bad - /// design. It means that display of the type in a debugger doesn't work and you can't - /// see what you are dealing with easily. With the very surprising consequence of calls - /// to the ToString() method in code generating a null reference exception if the - /// delegate isn't set up. - /// This type serves as an extension to the default - /// that handles the specific needs of the Ubiquity.NET.Llvm.Interop code generation. The - /// role of the type printer is to get a string for the type in the syntax of the target - /// language. (As mentioned this is unfortunately tied into the type.ToString() method, - /// which means the debugger only shows the target language type names and NOT the original - /// AST names from the source) - /// - internal class LibLLVMTypePrinter - : CSharpTypePrinter - , ITypePrinter2 - { - public override string ToString( CppSharp.AST.Type type ) - { - throw new NotSupportedException("Direct calls to ToString are not supported, instead call GetName with the appropriate kind"); - } - - public string GetName( CppSharp.AST.Type type, TypeNameKind kind = TypeNameKind.Native) - { - if(kind == TypeNameKind.Native) - { - return type.Visit(NativePrinter); - } - - string retVal = type switch - { - TypedefType tdt when tdt.Declaration.Name == "LLVMBool" => "bool", - PointerType pt when pt.Pointee is BuiltinType => $"{base.ToString( pt.Pointee )}*", // shouldn't see this... Should be caught as an error... - TypedefType tdt when tdt.Declaration.Name == "intptr_t" => "nint", - TypedefType tdt when tdt.Declaration.Name == "uintptr_t" => "nuint", - TypedefType tdt when tdt.Declaration.Name == "uint8_t" => "byte", - TypedefType tdt when( ShouldBeUInt32(tdt) ) => "UInt32", - TypedefType tdt when( ShouldBeUInt64(tdt) ) => "UInt64", - TypedefType tdt when tdt.Declaration.Name == "int8_t" => "sbyte", - TypedefType tdt when tdt.Declaration.Name == "uint16_t" => "UInt16", - TypedefType tdt when tdt.Declaration.Name == "int16_t" => "Int16", - TypedefType tdt when tdt.Declaration.Name == "int32_t" => "Int32", - TypedefType tdt when tdt.Declaration.Name == "int64_t" => "Int64", - TypedefType tdt => tdt.Declaration.Name, - BuiltinType bit when bit.Type == PrimitiveType.IntPtr => "nint", - CppSharp.AST.Type t when t.TryGetHandleDecl( out TypedefNameDecl? decl ) => decl!.Name, - ArrayType at => $"{GetName( at.Type, kind )}[]", - _ => base.ToString( type ), - }; - return retVal; - } - - private static bool ShouldBeUInt32(TypedefType tdt) - { - return tdt.Declaration.Name == "uint32_t" - || tdt.Declaration.Name == "LLVMDWARFTypeEncoding"; // TODO: This should be mapped as a record struct (Closest equivalent to a typedef uint32_t foo;) - } - - private static bool ShouldBeUInt64(TypedefType tdt) - { - return tdt.Declaration.Name == "uint64_t" - || tdt.Declaration.Name == "LLVMOrcModuleHandle" // TODO: This should be mapped as a record struct - || tdt.Declaration.Name == "LLVMOrcTargetAddress" // TODO: This should be mapped as a record struct - || tdt.Declaration.Name == "LLVMOrcJITTargetAddress" // TODO: This should be mapped as a record struct - || tdt.Declaration.Name == "LLVMOrcExecutorAddress"; // TODO: This should be mapped as a record struct - } - - private readonly NativeTypePrinter NativePrinter = new(); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/LibLlvmGeneratorLibrary.cs b/src/Interop/LlvmBindingsGenerator/LibLlvmGeneratorLibrary.cs deleted file mode 100644 index ff3eaf35bf..0000000000 --- a/src/Interop/LlvmBindingsGenerator/LibLlvmGeneratorLibrary.cs +++ /dev/null @@ -1,107 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; -using System.IO; - -using CppSharp.AST; - -using LlvmBindingsGenerator.Configuration; -using LlvmBindingsGenerator.Passes; -using LlvmBindingsGenerator.Templates; - -namespace LlvmBindingsGenerator -{ - /// ILibrary implementation for the Ubiquity.NET.Llvm Interop - /// - /// This class provides the library specific bridging from the generalized - /// CppSharp infrastructure for the specific needs of the Ubiquity.NET.Llvm.Interop library - /// - internal class LibLlvmGeneratorLibrary - : ILibrary - { - /// Initializes a new instance of the class. - /// Root path to standard LLVM source - /// Output path of the generated code files - /// - /// The only needs to have the files required to parse the LLVM-C API - /// - public LibLlvmGeneratorLibrary( IGeneratorConfig configuration, string llvmRoot, string extensionsRoot, string outputPath ) - { - Configuration = configuration; - CommonInclude = Path.Combine( llvmRoot, "include" ); - ArchInclude = Path.Combine( llvmRoot, "x64-Release", "include" ); - ExtensionsInclude = Path.Combine( extensionsRoot, "include" ); - OutputPath = Path.GetFullPath( outputPath ); - InternalTypePrinter = new LibLLVMTypePrinter(); - - // Hook in the custom type printer via static delegate - Type.TypePrinterDelegate = t => InternalTypePrinter.GetName( t, TypeNameKind.Native ); - } - - public void Setup( IDriver driver ) - { - Driver = driver; - driver.Options.UseHeaderDirectories = true; - driver.Options.GenerationOutputMode = CppSharp.GenerationOutputMode.FilePerUnit; - - driver.Options.OutputDir = OutputPath; - - driver.ParserOptions.SetupMSVC(); - driver.ParserOptions.AddIncludeDirs( CommonInclude ); - driver.ParserOptions.AddIncludeDirs( ArchInclude ); - driver.ParserOptions.AddIncludeDirs( ExtensionsInclude ); - - var coreHeaders = Directory.EnumerateFiles( Path.Combine( CommonInclude, "llvm-c" ), "*.h", SearchOption.AllDirectories ); - var extHeaders = Directory.EnumerateFiles( Path.Combine( ExtensionsInclude, "libllvm-c" ), "*.h", SearchOption.AllDirectories ); - var module = driver.Options.AddModule( "Ubiquity.NET.Llvm.Interop" ); - module.Headers.AddRange( coreHeaders ); - module.Headers.AddRange( extHeaders ); - } - - public void SetupPasses( ) - { - // Analysis passes that markup, but don't otherwise modify the AST run first - // always start the passes with the IgnoreSystemHeaders pass to ensure that - // transformation only occurs for the desired headers. Other passes depend on - // TranslationUnit.IsGenerated to ignore headers. - Driver!.AddTranslationUnitPass( new IgnoreSystemHeadersPass( Configuration.IgnoredHeaders ) ); - Driver!.AddTranslationUnitPass( new IgnoreDuplicateNamesPass( ) ); - - // modifying pass(es) - Driver!.AddTranslationUnitPass( new MarkFunctionsInternalPass( ) ); - - // Verification/sanity checking passes - Driver!.AddTranslationUnitPass( new ValidateExtensionNamingPass( ) ); - } - - public void Preprocess( ASTContext ctx ) - { - // purge all the CppSharp type mapping to prevent any conversions/mapping - // Only the raw source should be in the AST until later stages adjust it. - Driver!.Context.TypeMaps.TypeMaps.Clear(); - InternalTypePrinter.Context = Driver.Context; - } - - public void Postprocess( ASTContext ctx ) - { - } - - public IEnumerable CreateGenerators( ) - { - var templateFactory = new LibLlvmTemplateFactory( Configuration ); - return templateFactory.CreateTemplates( Driver!.Context ); - } - - private IDriver? Driver; - private readonly LibLLVMTypePrinter InternalTypePrinter; - private readonly IGeneratorConfig Configuration; - private readonly string CommonInclude; - private readonly string ArchInclude; - private readonly string ExtensionsInclude; - private readonly string OutputPath; - } -} diff --git a/src/Interop/LlvmBindingsGenerator/LibLlvmTemplateFactory.cs b/src/Interop/LlvmBindingsGenerator/LibLlvmTemplateFactory.cs deleted file mode 100644 index 00f0417fca..0000000000 --- a/src/Interop/LlvmBindingsGenerator/LibLlvmTemplateFactory.cs +++ /dev/null @@ -1,80 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; -using System.IO; -using System.Linq; - -using CppSharp; -using CppSharp.Generators; -using CppSharp.Passes; - -using LlvmBindingsGenerator.Configuration; -using LlvmBindingsGenerator.Templates; - -namespace LlvmBindingsGenerator -{ - // Factory class for the templates needed in code generation - // This is essentially a more flexible form of the CppSharp.CodeGenerator, - // which, despite the name, doesn't generate code, but instead creates - // templates in the form of GeneratorOutput. Therefore, ICodeGenerator - // here is the functional equivalent to CppSharp's GeneratorOutput. - internal class LibLlvmTemplateFactory - : ICodeGeneratorTemplateFactory - { - public LibLlvmTemplateFactory( IGeneratorConfig config) - { - HandleToTemplateMap = config.BuildTemplateMap( ); - } - - public void SetupPasses( BindingContext bindingContext ) - { - bindingContext.TranslationUnitPasses.AddPass( new CheckAbiParameters( ) ); - } - - public IEnumerable CreateTemplates( BindingContext bindingContext ) - { - return CreateHandleTypeTemplates( bindingContext ) - .Concat( CreateMiscTemplates( bindingContext ) ); - } - - private static IEnumerable CreateMiscTemplates( BindingContext bindingContext ) - { - yield return new TemplateCodeGenerator( "EXPORTS", Path.Combine( "..", "LibLLVM" ), new ExportsTemplate( bindingContext.ASTContext ) ); - } - - private IEnumerable CreateHandleTypeTemplates( BindingContext ctx ) - { - // filter out known handle types with non-templated implementations - // LLVMErrorRef is rather unique with disposal and requires a distinct - // implementation. (If the message is retrieved, the handle is destroyed, - // and it is destroyed if "consumed" without getting the message.) - var handles = from handle in ctx.ASTContext.GetHandleTypeDefs( ) - where handle.Name != "LLVMErrorRef" - select handle; - - foreach( var handle in handles ) - { - bool templatesFound = false; - foreach(IHandleCodeTemplate template in HandleToTemplateMap[handle.Name]) - { - yield return new TemplateCodeGenerator( template.HandleName, GeneratedCodePath, template ); - templatesFound = true; - } - - if(!templatesFound) - { - // Generate an error for any handle types parsed from native headers not accounted for in the YAML configuration. - Diagnostics.Error( "No Mapping for handle type {0} - {1}@{2}", handle.Name, handle.TranslationUnit.FileRelativePath, handle.LineNumberStart ); - } - } - } - - private readonly ILookup HandleToTemplateMap; - - private const string GeneratedCodePath = "GeneratedCode"; - } -} diff --git a/src/Interop/LlvmBindingsGenerator/LlvmBindingsGenerator.csproj b/src/Interop/LlvmBindingsGenerator/LlvmBindingsGenerator.csproj deleted file mode 100644 index c477437967..0000000000 --- a/src/Interop/LlvmBindingsGenerator/LlvmBindingsGenerator.csproj +++ /dev/null @@ -1,71 +0,0 @@ - - - - - Exe - false - portable - true - False - x64 - False - net8.0 - enable - - - - - - - - - - - - - - - - - Always - - - TextTemplatingFilePreprocessor - ContextHandleTemplate.cs - LlvmBindingsGenerator.Templates - - - TextTemplatingFilePreprocessor - ExportsTemplate.cs - LlvmBindingsGenerator.Templates - - - TextTemplatingFilePreprocessor - GlobalHandleTemplate.cs - LlvmBindingsGenerator.Templates - - - - - - True - True - ContextHandleTemplate.tt - - - True - True - ExportsTemplate.tt - - - True - True - GlobalHandleTemplate.tt - - - - - - - - diff --git a/src/Interop/LlvmBindingsGenerator/LlvmBindingsGenerator.sln b/src/Interop/LlvmBindingsGenerator/LlvmBindingsGenerator.sln deleted file mode 100644 index 9411f0762d..0000000000 --- a/src/Interop/LlvmBindingsGenerator/LlvmBindingsGenerator.sln +++ /dev/null @@ -1,42 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.12.35707.178 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LlvmBindingsGenerator", "LlvmBindingsGenerator.csproj", "{9A14EF74-BDF8-4D00-803A-A48A14828526}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{05813380-541B-47E8-95CB-B426127C2CEE}" - ProjectSection(SolutionItems) = preProject - ..\..\..\Build-All.ps1 = ..\..\..\Build-All.ps1 - ..\..\..\Build-Docs.ps1 = ..\..\..\Build-Docs.ps1 - ..\..\..\Build-Interop.ps1 = ..\..\..\Build-Interop.ps1 - ..\..\..\Build-Source.ps1 = ..\..\..\Build-Source.ps1 - ..\..\..\BuildVersion.xml = ..\..\..\BuildVersion.xml - ..\..\..\Directory.Build.props = ..\..\..\Directory.Build.props - ..\..\..\Directory.Build.targets = ..\..\..\Directory.Build.targets - ..\..\..\global.json = ..\..\..\global.json - ..\..\..\Invoke-UnitTests.ps1 = ..\..\..\Invoke-UnitTests.ps1 - ..\..\..\LICENSE.md = ..\..\..\LICENSE.md - ..\..\..\Make-DevBuildLLvmLink.ps1 = ..\..\..\Make-DevBuildLLvmLink.ps1 - ..\..\..\NuGet.Config = ..\..\..\NuGet.Config - ..\..\..\Packages.props = ..\..\..\Packages.props - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9A14EF74-BDF8-4D00-803A-A48A14828526}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9A14EF74-BDF8-4D00-803A-A48A14828526}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9A14EF74-BDF8-4D00-803A-A48A14828526}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9A14EF74-BDF8-4D00-803A-A48A14828526}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {3C6B306B-6805-4AAA-A735-D285C826A434} - EndGlobalSection -EndGlobal diff --git a/src/Interop/LlvmBindingsGenerator/Options.cs b/src/Interop/LlvmBindingsGenerator/Options.cs deleted file mode 100644 index b7d117f767..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Options.cs +++ /dev/null @@ -1,40 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Diagnostics.CodeAnalysis; - -using CommandLine; - -using CppSharp; - -namespace LlvmBindingsGenerator -{ - [SuppressMessage("Build", "CA1812", Justification = "Instantiated via reflection from commandline parser" )] - [SuppressMessage( "CodeQuality", "IDE0079:Remove unnecessary suppression", Justification = "It is necessary, tooling can't agree on the point. (removing it generates a warning)" )] - internal class Options - { - public Options( string llvmRoot, string extensionsRoot, string outputPath, DiagnosticKind diagnostics ) - { - LlvmRoot = llvmRoot; - ExtensionsRoot = extensionsRoot; - OutputPath = outputPath; - Diagnostics = diagnostics; - } - - [Value( 0, MetaName = "LLVM Root", HelpText = "Root of source with the LLVM headers to parse", Required = true )] - public string LlvmRoot { get; } - - [Value( 1, MetaName = "Extensions Root", HelpText = "Root of source with the LibLLVM extension headers to parse", Required = true )] - public string ExtensionsRoot { get; } - - [Value( 2, MetaName = "Output Path", HelpText = "Root of the output to place the generated code", Required = true )] - public string OutputPath { get; } = Environment.CurrentDirectory; - - [Option( HelpText = "Diagnostics output level", Required = false, Default = DiagnosticKind.Message )] - public DiagnosticKind Diagnostics { get; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Passes/IgnoreDuplicateNamesPass.cs b/src/Interop/LlvmBindingsGenerator/Passes/IgnoreDuplicateNamesPass.cs deleted file mode 100644 index 45cd49662e..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Passes/IgnoreDuplicateNamesPass.cs +++ /dev/null @@ -1,47 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; - -using CppSharp.AST; -using CppSharp.Passes; - -namespace LlvmBindingsGenerator.Passes -{ - /// Translation unit pass to mark duplicate function names as ignored - internal class IgnoreDuplicateNamesPass - : TranslationUnitPass - { - public override bool VisitASTContext( ASTContext context ) - { - VisitedNames.Clear( ); - - foreach( TranslationUnit unit in context.GeneratedUnits( ) ) - { - VisitTranslationUnit( unit ); - } - - return true; - } - - public override bool VisitFunctionDecl( Function function ) - { - if( !base.VisitFunctionDecl( function ) ) - { - return false; - } - - if( !VisitedNames.Add( function.Name ) ) - { - function.Ignore = true; - } - - return true; - } - - private readonly HashSet VisitedNames = new HashSet(); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Passes/IgnoreSystemHeadersPass.cs b/src/Interop/LlvmBindingsGenerator/Passes/IgnoreSystemHeadersPass.cs deleted file mode 100644 index 7c0dc605c2..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Passes/IgnoreSystemHeadersPass.cs +++ /dev/null @@ -1,59 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; -using System.Linq; - -using CppSharp; -using CppSharp.AST; -using CppSharp.Passes; - -using LlvmBindingsGenerator.Configuration; - -namespace LlvmBindingsGenerator.Passes -{ - /// Translation unit pass to mark system headers as ignored - /// - /// should always be the first pass so that other passes can rely on IsGenerated - /// properly to correctly ignore the header. - /// - internal class IgnoreSystemHeadersPass - : TranslationUnitPass - { - public IgnoreSystemHeadersPass( IReadOnlyCollection ignoredHeaders ) - { - IgnoredHeaders = from entry in ignoredHeaders - select entry.Path; - } - - public override bool VisitTranslationUnit( TranslationUnit unit ) - { - if( unit.IncludePath == null || !unit.IsValid || unit.IsInvalid ) - { - Diagnostics.Debug("Translation Unit '{0}' is invalid - marked to ignore.", unit); - unit.GenerationKind = GenerationKind.None; - return true; - } - - bool isExplicitlyIgnored = IgnoredHeaders.Contains( unit.FileRelativePath ); - if( isExplicitlyIgnored ) - { - unit.Ignore = true; - unit.GenerationKind = GenerationKind.None; - Diagnostics.Debug("Translation unit '{0}' is explicitly ignored", unit); - } - else - { - unit.GenerationKind = ( unit.IsCoreHeader() || unit.IsExtensionHeader() ) ? GenerationKind.Generate : GenerationKind.None; - Diagnostics.Debug("Translation unit '{0}' GenerationKind == {1}", unit, unit.GenerationKind); - } - - return true; - } - - private readonly IEnumerable IgnoredHeaders; - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Passes/MarkFunctionsInternalPass.cs b/src/Interop/LlvmBindingsGenerator/Passes/MarkFunctionsInternalPass.cs deleted file mode 100644 index 93eba6004b..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Passes/MarkFunctionsInternalPass.cs +++ /dev/null @@ -1,36 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using CppSharp.AST; -using CppSharp.Passes; - -namespace LlvmBindingsGenerator.Passes -{ - /// Mark functions as internal or ignored - /// - /// This pass will mark all Implicit functions from the headers ignored (e.g. an - /// implicit constructor/destructor for a struct). - /// - internal class MarkFunctionsInternalPass - : TranslationUnitPass - { - public override bool VisitFunctionDecl( Function function ) - { - if( function.Ignore ) - { - return true; - } - - if( function.IsImplicit ) - { - function.Ignore = true; - return true; - } - - return false; - } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Passes/ValidateExtensionNamingPass.cs b/src/Interop/LlvmBindingsGenerator/Passes/ValidateExtensionNamingPass.cs deleted file mode 100644 index 07d3412581..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Passes/ValidateExtensionNamingPass.cs +++ /dev/null @@ -1,77 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Linq; - -using CppSharp; -using CppSharp.AST; -using CppSharp.Passes; - -namespace LlvmBindingsGenerator.Passes -{ - /// Translation unit pass to validate names of all functions in the extension headers have correct prefix - /// - /// All extended C APIs should have the 'LibLLVM' prefix so that they are clearly marked as an extension and there isn't - /// any conflict with the official LLVM-C API. - /// - internal class ValidateExtensionNamingPass - : TranslationUnitPass - { - public override bool VisitASTContext( ASTContext context ) - { - var extensionHeaders = from tu in context.TranslationUnits - where tu.IsExtensionHeader( ) - select tu; - - foreach( TranslationUnit translationUnit in extensionHeaders ) - { - VisitTranslationUnit( translationUnit ); - } - - return true; - } - - public override bool VisitFunctionDecl( Function function ) - { - if( !function.Ignore && !function.Name.StartsWith( "LibLLVM", System.StringComparison.Ordinal ) ) - { - Diagnostics.Error( "Extension function {0} in {1}, does not use correct prefix", function.Name, function.TranslationUnit.FileName ); - } - - return true; - } - - public override bool VisitTypedefDecl( TypedefDecl typedef ) - { - if( !typedef.Name.StartsWith( "LibLLVM", System.StringComparison.Ordinal ) ) - { - Diagnostics.Error( "Extension typeDef {0} in {1}, does not use correct prefix", typedef.Name, typedef.TranslationUnit.FileName ); - } - - return true; - } - - public override bool VisitEnumDecl( Enumeration @enum ) - { - if( !@enum.Name.StartsWith( "LibLLVM", System.StringComparison.Ordinal ) ) - { - Diagnostics.Error( "Extension enum {0} in {1}, does not use correct prefix", @enum.Name, @enum.TranslationUnit.FileName ); - } - - return true; - } - - public override bool VisitEnumItemDecl( Enumeration.Item item ) - { - if( !item.Name.StartsWith( "LibLLVM", System.StringComparison.Ordinal ) ) - { - Diagnostics.Error( "Extension enum item {0} in {1}, does not use correct prefix", item.Name, item.TranslationUnit.FileName ); - } - - return true; - } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Program.cs b/src/Interop/LlvmBindingsGenerator/Program.cs deleted file mode 100644 index 9d1f425710..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Program.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Collections.Immutable; -using System.IO; -using System.Reflection; -using System.Text.RegularExpressions; - -using CommandLine; - -using CppSharp; - -using LlvmBindingsGenerator.Configuration; -using LlvmBindingsGenerator.Configuration.Yaml; - -namespace LlvmBindingsGenerator -{ - internal static partial class Program - { - public static int Main( string[ ] args ) - { - return Parser.Default - .ParseArguments( args ) - .MapResult( Run, _ => -1 ); - } - - private static int Run( Options options ) - { - var diagnostics = new ErrorTrackingDiagnostics( ) - { - Level = options.Diagnostics - }; - - Diagnostics.Implementation = diagnostics; - string configPath = Path.Combine( Path.GetDirectoryName( Assembly.GetExecutingAssembly().Location ) ?? string.Empty, "BindingsConfig.yml"); - - try - { - // read in the binding configuration from the YAML file - var config = new ReadOnlyConfig( YamlConfiguration.ParseFrom( configPath ) ); - var library = new LibLlvmGeneratorLibrary( config, options.LlvmRoot, options.ExtensionsRoot, options.OutputPath ); - Driver.Run( library ); - } - catch(IOException ioex) - { - Diagnostics.Error( ioex.Message ); - } - catch(YamlDotNet.Core.SyntaxErrorException yamlex) - { - // Sadly, the yaml exception message includes the location info in a format that doesn't match any standard tooling - // for parsing error messages, so unpack it to get just the message of interest and re-format - var matcher = YamlErrorMessageRegex(); - var result = matcher.Match( yamlex.Message ); - if( result.Success ) - { - Diagnostics.Error( "{0}({1},{2},{3},{4}): error CFG001: {5}" - , configPath - , yamlex.Start.Line - , yamlex.Start.Column - , yamlex.End.Line - , yamlex.End.Column - , result.Groups[ 1 ] ); - } - else - { - // message didn't match expectations, best effort at this point... - Diagnostics.Error( yamlex.Message ); - } - } - - return diagnostics.ErrorCount; - } - - [GeneratedRegex( @"\(Line\: \d+, Col\: \d+, Idx\: \d+\) - \(Line\: \d+, Col\: \d+, Idx\: \d+\)\: (.*)\Z" )] - private static partial Regex YamlErrorMessageRegex(); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Properties/AssemblyInfo.cs b/src/Interop/LlvmBindingsGenerator/Properties/AssemblyInfo.cs deleted file mode 100644 index 5432886087..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,40 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyDescription( "CLR Interop bindings generator for LibLLVM" )] -[assembly: AssemblyCopyright( "Copyright © 2019" )] -[assembly: AssemblyTrademark( "" )] -[assembly: AssemblyCulture( "" )] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible( false )] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid( "19930cea-c236-409f-b30e-88788af700e0" )] - -[assembly: CLSCompliant( false )] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -// [assembly: AssemblyVersion( "0.1.0.0" )] -// [assembly: AssemblyFileVersion( "0.1.0.0" )] diff --git a/src/Interop/LlvmBindingsGenerator/TemplateCodeGenerator.cs b/src/Interop/LlvmBindingsGenerator/TemplateCodeGenerator.cs deleted file mode 100644 index fab9b340a9..0000000000 --- a/src/Interop/LlvmBindingsGenerator/TemplateCodeGenerator.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using LlvmBindingsGenerator.Templates; - -namespace LlvmBindingsGenerator -{ - internal class TemplateCodeGenerator - : ICodeGenerator - { - public TemplateCodeGenerator( - string fileNameWithoutExtension, - string fileRelativeDirectory, - ICodeGenTemplate template - ) - : this( isValid: true, fileNameWithoutExtension, fileRelativeDirectory, template ) - { - } - - public TemplateCodeGenerator( - bool isValid, - string fileNameWithoutExtension, - string fileRelativeDirectory, - ICodeGenTemplate template - ) - { - IsValid = isValid; - FileNameWithoutExtension = fileNameWithoutExtension; - FileRelativeDirectory = fileRelativeDirectory; - Template = template; - } - - public bool IsValid { get; } - - public string FileNameWithoutExtension { get; } - - public string FileRelativeDirectory { get; } - - public ICodeGenTemplate Template { get; } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Templates/AssemblyExtensions.cs b/src/Interop/LlvmBindingsGenerator/Templates/AssemblyExtensions.cs deleted file mode 100644 index 9a8ba82081..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/AssemblyExtensions.cs +++ /dev/null @@ -1,20 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System; -using System.Reflection; - -namespace LlvmBindingsGenerator.Templates -{ - internal static class AssemblyExtensions - { - public static string GetAssemblyInformationalVersion( this Assembly asm ) - { - var attr = asm.GetCustomAttribute(); - return attr?.InformationalVersion ?? throw new InvalidOperationException("Assembly does not have in information version"); - } - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Templates/ContextHandleTemplate.cs b/src/Interop/LlvmBindingsGenerator/Templates/ContextHandleTemplate.cs deleted file mode 100644 index b2c09ade04..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/ContextHandleTemplate.cs +++ /dev/null @@ -1,27 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -namespace LlvmBindingsGenerator.Templates -{ - internal partial class ContextHandleTemplate - : IHandleCodeTemplate - { - public ContextHandleTemplate( string name ) - { - HandleName = name; - } - - public string ToolVersion => GetType( ).Assembly.GetAssemblyInformationalVersion( ); - - public string HandleName { get; } - - public string FileExtension => "g.cs"; - - public string SubFolder => string.Empty; - - public string Generate( ) => TransformText( ); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Templates/ExportsTemplate.cs b/src/Interop/LlvmBindingsGenerator/Templates/ExportsTemplate.cs deleted file mode 100644 index 2d0ef7361e..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/ExportsTemplate.cs +++ /dev/null @@ -1,55 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -using System.Collections.Generic; -using System.Linq; - -using CppSharp.AST; - -namespace LlvmBindingsGenerator.Templates -{ - internal partial class ExportsTemplate - : ICodeGenTemplate - { - public ExportsTemplate( ASTContext ast ) - { - Ast = ast; - } - - public string ToolVersion => GetType( ).Assembly.GetAssemblyInformationalVersion( ); - - public string FileExtension => "g.DEF"; - - public string SubFolder => string.Empty; - - public string Generate( ) - { - return TransformText( ); - } - - public IEnumerable InlinedFunctions - => from tu in Ast.GeneratedUnits( ) - from func in tu.Functions - where func.IsInline && !func.Ignore - select func; - - public IEnumerable ExtensionFunctions - => from tu in Ast.GeneratedUnits( ) - where tu.IsExtensionHeader( ) - from func in tu.Functions - where !func.IsInline && !func.Ignore - select func; - - public IEnumerable LlvmFunctions - => from tu in Ast.GeneratedUnits( ) - where tu.IsCoreHeader( ) - from func in tu.Functions - where !func.IsInline && !func.Ignore - select func; - - private readonly ASTContext Ast; - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Templates/GlobalHandleTemplate.cs b/src/Interop/LlvmBindingsGenerator/Templates/GlobalHandleTemplate.cs deleted file mode 100644 index 7e4384700d..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/GlobalHandleTemplate.cs +++ /dev/null @@ -1,33 +0,0 @@ -// ----------------------------------------------------------------------- -// -// Copyright (c) Ubiquity.NET Contributors. All rights reserved. -// -// ----------------------------------------------------------------------- - -namespace LlvmBindingsGenerator.Templates -{ - internal partial class GlobalHandleTemplate - : IHandleCodeTemplate - { - public GlobalHandleTemplate( string name, string disposerFunctionName, bool needsAlias = false ) - { - HandleName = name; - HandleDisposeFunction = disposerFunctionName; - NeedsAlias = needsAlias; - } - - public string ToolVersion => GetType( ).Assembly.GetAssemblyInformationalVersion( ); - - public string HandleName { get; } - - public string HandleDisposeFunction { get; } - - public string FileExtension => "g.cs"; - - public string SubFolder => string.Empty; - - public bool NeedsAlias { get; } - - public string Generate( ) => TransformText( ); - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Templates/T4/ContextHandleTemplate.cs b/src/Interop/LlvmBindingsGenerator/Templates/T4/ContextHandleTemplate.cs deleted file mode 100644 index ef172c572c..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/T4/ContextHandleTemplate.cs +++ /dev/null @@ -1,422 +0,0 @@ -// ------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version: 17.0.0.0 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -// ------------------------------------------------------------------------------ -namespace LlvmBindingsGenerator.Templates -{ - using System.Linq; - using System.Text; - using System.Collections.Generic; - using System; - - /// - /// Class to produce the template output - /// - - #line 1 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.TextTemplating", "17.0.0.0")] - internal partial class ContextHandleTemplate : ContextHandleTemplateBase - { -#line hidden - /// - /// Create the template output - /// - public virtual string TransformText() - { - this.Write("// ------------------------------------------------------------------------------" + - "\r\n// \r\n// This code was generated by a tool. [LlvmBindingsGe" + - "nerator]\r\n// Tool Version: "); - - #line 9 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(ToolVersion)); - - #line default - #line hidden - this.Write(@" -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -// ------------------------------------------------------------------------------ - -using System.CodeDom.Compiler; - -namespace Ubiquity.NET.Llvm.Interop -{ - /// Simple type safe handle to wrap an opaque pointer for interop with ""C"" API exported from LibLLVM - /// - /// This handle is owned by it's container and therefore isn't disposed by the - /// calling App. - /// - /// Since the object this handle refers to is not owned by the App, the object is - /// destroyed whenever it's container is destroyed, which will invalidate this handle. - /// Use of this handle after the container is destroyed will produce undefined - /// behavior, including, and most likely, memory access violations. - /// - /// - [GeneratedCode(""LlvmBindingsGenerator"","""); - - #line 31 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(ToolVersion)); - - #line default - #line hidden - this.Write("\")]\r\n [NativeMarshalling(typeof(ContextHandleMarshaller<"); - - #line 32 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write(">))]\r\n public readonly record struct "); - - #line 33 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write("\r\n : IContextHandle<"); - - #line 34 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write(@"> - { - /// Gets a value indicating if this handle is a value - public bool IsNull => Handle == nint.Zero; - - /// Gets the handle as an suitable for passing to native code - /// The handle as an - public nint DangerousGetHandle() => Handle; - - /// Interface defined factory for an instance of \r\n /// Native ABI value of the handle<" + - "/param>\r\n /// Type specific wrapper around the native ABI handle" + - "\r\n public static "); - - #line 46 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write(" FromABI(nint abiValue) => new(abiValue);\r\n\r\n /// Gets a zero () value handle\r\n public static "); - - #line 49 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write(@" Zero => FromABI(nint.Zero); - - /// Gets the handle as an suitable for passing to native code - /// Handle to convert - /// The handle as an - public static implicit operator nint("); - - #line 54 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write(" value) => value.Handle;\r\n\r\n private "); - - #line 56 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ContextHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write("( nint p )\r\n {\r\n Handle = p;\r\n }\r\n\r\n private read" + - "only nint Handle;\r\n }\r\n}\r\n"); - return this.GenerationEnvironment.ToString(); - } - } - - #line default - #line hidden - #region Base class - /// - /// Base class for this transformation - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.TextTemplating", "17.0.0.0")] - internal class ContextHandleTemplateBase - { - #region Fields - private global::System.Text.StringBuilder generationEnvironmentField; - private global::System.CodeDom.Compiler.CompilerErrorCollection errorsField; - private global::System.Collections.Generic.List indentLengthsField; - private string currentIndentField = ""; - private bool endsWithNewline; - private global::System.Collections.Generic.IDictionary sessionField; - #endregion - #region Properties - /// - /// The string builder that generation-time code is using to assemble generated output - /// - public System.Text.StringBuilder GenerationEnvironment - { - get - { - if ((this.generationEnvironmentField == null)) - { - this.generationEnvironmentField = new global::System.Text.StringBuilder(); - } - return this.generationEnvironmentField; - } - set - { - this.generationEnvironmentField = value; - } - } - /// - /// The error collection for the generation process - /// - public System.CodeDom.Compiler.CompilerErrorCollection Errors - { - get - { - if ((this.errorsField == null)) - { - this.errorsField = new global::System.CodeDom.Compiler.CompilerErrorCollection(); - } - return this.errorsField; - } - } - /// - /// A list of the lengths of each indent that was added with PushIndent - /// - private System.Collections.Generic.List indentLengths - { - get - { - if ((this.indentLengthsField == null)) - { - this.indentLengthsField = new global::System.Collections.Generic.List(); - } - return this.indentLengthsField; - } - } - /// - /// Gets the current indent we use when adding lines to the output - /// - public string CurrentIndent - { - get - { - return this.currentIndentField; - } - } - /// - /// Current transformation session - /// - public virtual global::System.Collections.Generic.IDictionary Session - { - get - { - return this.sessionField; - } - set - { - this.sessionField = value; - } - } - #endregion - #region Transform-time helpers - /// - /// Write text directly into the generated output - /// - public void Write(string textToAppend) - { - if (string.IsNullOrEmpty(textToAppend)) - { - return; - } - // If we're starting off, or if the previous text ended with a newline, - // we have to append the current indent first. - if (((this.GenerationEnvironment.Length == 0) - || this.endsWithNewline)) - { - this.GenerationEnvironment.Append(this.currentIndentField); - this.endsWithNewline = false; - } - // Check if the current text ends with a newline - if (textToAppend.EndsWith(global::System.Environment.NewLine, global::System.StringComparison.CurrentCulture)) - { - this.endsWithNewline = true; - } - // This is an optimization. If the current indent is "", then we don't have to do any - // of the more complex stuff further down. - if ((this.currentIndentField.Length == 0)) - { - this.GenerationEnvironment.Append(textToAppend); - return; - } - // Everywhere there is a newline in the text, add an indent after it - textToAppend = textToAppend.Replace(global::System.Environment.NewLine, (global::System.Environment.NewLine + this.currentIndentField)); - // If the text ends with a newline, then we should strip off the indent added at the very end - // because the appropriate indent will be added when the next time Write() is called - if (this.endsWithNewline) - { - this.GenerationEnvironment.Append(textToAppend, 0, (textToAppend.Length - this.currentIndentField.Length)); - } - else - { - this.GenerationEnvironment.Append(textToAppend); - } - } - /// - /// Write text directly into the generated output - /// - public void WriteLine(string textToAppend) - { - this.Write(textToAppend); - this.GenerationEnvironment.AppendLine(); - this.endsWithNewline = true; - } - /// - /// Write formatted text directly into the generated output - /// - public void Write(string format, params object[] args) - { - this.Write(string.Format(global::System.Globalization.CultureInfo.CurrentCulture, format, args)); - } - /// - /// Write formatted text directly into the generated output - /// - public void WriteLine(string format, params object[] args) - { - this.WriteLine(string.Format(global::System.Globalization.CultureInfo.CurrentCulture, format, args)); - } - /// - /// Raise an error - /// - public void Error(string message) - { - System.CodeDom.Compiler.CompilerError error = new global::System.CodeDom.Compiler.CompilerError(); - error.ErrorText = message; - this.Errors.Add(error); - } - /// - /// Raise a warning - /// - public void Warning(string message) - { - System.CodeDom.Compiler.CompilerError error = new global::System.CodeDom.Compiler.CompilerError(); - error.ErrorText = message; - error.IsWarning = true; - this.Errors.Add(error); - } - /// - /// Increase the indent - /// - public void PushIndent(string indent) - { - if ((indent == null)) - { - throw new global::System.ArgumentNullException("indent"); - } - this.currentIndentField = (this.currentIndentField + indent); - this.indentLengths.Add(indent.Length); - } - /// - /// Remove the last indent that was added with PushIndent - /// - public string PopIndent() - { - string returnValue = ""; - if ((this.indentLengths.Count > 0)) - { - int indentLength = this.indentLengths[(this.indentLengths.Count - 1)]; - this.indentLengths.RemoveAt((this.indentLengths.Count - 1)); - if ((indentLength > 0)) - { - returnValue = this.currentIndentField.Substring((this.currentIndentField.Length - indentLength)); - this.currentIndentField = this.currentIndentField.Remove((this.currentIndentField.Length - indentLength)); - } - } - return returnValue; - } - /// - /// Remove any indentation - /// - public void ClearIndent() - { - this.indentLengths.Clear(); - this.currentIndentField = ""; - } - #endregion - #region ToString Helpers - /// - /// Utility class to produce culture-oriented representation of an object as a string. - /// - public class ToStringInstanceHelper - { - private System.IFormatProvider formatProviderField = global::System.Globalization.CultureInfo.InvariantCulture; - /// - /// Gets or sets format provider to be used by ToStringWithCulture method. - /// - public System.IFormatProvider FormatProvider - { - get - { - return this.formatProviderField ; - } - set - { - if ((value != null)) - { - this.formatProviderField = value; - } - } - } - /// - /// This is called from the compile/run appdomain to convert objects within an expression block to a string - /// - public string ToStringWithCulture(object objectToConvert) - { - if ((objectToConvert == null)) - { - throw new global::System.ArgumentNullException("objectToConvert"); - } - System.Type t = objectToConvert.GetType(); - System.Reflection.MethodInfo method = t.GetMethod("ToString", new System.Type[] { - typeof(System.IFormatProvider)}); - if ((method == null)) - { - return objectToConvert.ToString(); - } - else - { - return ((string)(method.Invoke(objectToConvert, new object[] { - this.formatProviderField }))); - } - } - } - private ToStringInstanceHelper toStringHelperField = new ToStringInstanceHelper(); - /// - /// Helper to produce culture-oriented representation of an object as a string - /// - public ToStringInstanceHelper ToStringHelper - { - get - { - return this.toStringHelperField; - } - } - #endregion - } - #endregion -} diff --git a/src/Interop/LlvmBindingsGenerator/Templates/T4/ContextHandleTemplate.tt b/src/Interop/LlvmBindingsGenerator/Templates/T4/ContextHandleTemplate.tt deleted file mode 100644 index 99d29d8105..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/T4/ContextHandleTemplate.tt +++ /dev/null @@ -1,63 +0,0 @@ -<#@ template language="C#" visibility="internal" #> -<#@ assembly name="System.Core" #> -<#@ import namespace="System.Linq" #> -<#@ import namespace="System.Text" #> -<#@ import namespace="System.Collections.Generic" #> -// ------------------------------------------------------------------------------ -// -// This code was generated by a tool. [LlvmBindingsGenerator] -// Tool Version: <#=ToolVersion#> -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -// ------------------------------------------------------------------------------ - -using System.CodeDom.Compiler; - -namespace Ubiquity.NET.Llvm.Interop -{ - /// Simple type safe handle to wrap an opaque pointer for interop with "C" API exported from LibLLVM - /// - /// This handle is owned by it's container and therefore isn't disposed by the - /// calling App. - /// - /// Since the object this handle refers to is not owned by the App, the object is - /// destroyed whenever it's container is destroyed, which will invalidate this handle. - /// Use of this handle after the container is destroyed will produce undefined - /// behavior, including, and most likely, memory access violations. - /// - /// - [GeneratedCode("LlvmBindingsGenerator","<#=ToolVersion#>")] - [NativeMarshalling(typeof(ContextHandleMarshaller<<#=HandleName#>>))] - public readonly record struct <#=HandleName#> - : IContextHandle<<#=HandleName#>> - { - /// Gets a value indicating if this handle is a value - public bool IsNull => Handle == nint.Zero; - - /// Gets the handle as an suitable for passing to native code - /// The handle as an - public nint DangerousGetHandle() => Handle; - - /// Interface defined factory for an instance of - /// Native ABI value of the handle - /// Type specific wrapper around the native ABI handle - public static <#=HandleName#> FromABI(nint abiValue) => new(abiValue); - - /// Gets a zero () value handle - public static <#=HandleName#> Zero => FromABI(nint.Zero); - - /// Gets the handle as an suitable for passing to native code - /// Handle to convert - /// The handle as an - public static implicit operator nint(<#=HandleName#> value) => value.Handle; - - private <#=HandleName#>( nint p ) - { - Handle = p; - } - - private readonly nint Handle; - } -} diff --git a/src/Interop/LlvmBindingsGenerator/Templates/T4/ExportsTemplate.cs b/src/Interop/LlvmBindingsGenerator/Templates/T4/ExportsTemplate.cs deleted file mode 100644 index ca9a73229a..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/T4/ExportsTemplate.cs +++ /dev/null @@ -1,400 +0,0 @@ -// ------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version: 17.0.0.0 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -// ------------------------------------------------------------------------------ -namespace LlvmBindingsGenerator.Templates -{ - using System.Linq; - using System.Text; - using System.Collections.Generic; - using System; - - /// - /// Class to produce the template output - /// - - #line 1 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.TextTemplating", "17.0.0.0")] - internal partial class ExportsTemplate : ExportsTemplateBase - { -#line hidden - /// - /// Create the template output - /// - public virtual string TransformText() - { - this.Write(";; ------------------------------------------------------------------------------" + - "\r\n;; \r\n;; This file was generated by a tool.\r\n;; Runtime" + - " Version: "); - - #line 9 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(ToolVersion)); - - #line default - #line hidden - this.Write(@" -;; -;; Changes to this file may cause incorrect behavior and will be lost if -;; the code is regenerated. -;; -;; ------------------------------------------------------------------------------ -EXPORTS -; Custom Extension APIs for Ubiquity.NET.Llvm -"); - - #line 17 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" -foreach(var func in ExtensionFunctions) { - - #line default - #line hidden - - #line 18 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(func.Name)); - - #line default - #line hidden - this.Write("\r\n"); - - #line 19 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" -} - - #line default - #line hidden - this.Write("\r\n; Inlined Functions in LLVM Headers wrapped as non-inlined *Export functions in" + - " LibLLVM\r\n"); - - #line 22 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" -foreach(var inlineFunc in InlinedFunctions) { - - #line default - #line hidden - - #line 23 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(inlineFunc.Name)); - - #line default - #line hidden - this.Write(" = "); - - #line 23 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(inlineFunc.Name)); - - #line default - #line hidden - this.Write("Export\r\n"); - - #line 24 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" -} - - #line default - #line hidden - this.Write(@" -; Standard Official LLVM-C APIs -; If LibLLCVM-C.lib is available, these could be generated to forward to that -; or left out completely and use it directly from managed interop code -; A Major problem with that is that it loses ALL access to the C++ as that is -; NOT exported (and should never be as it isn't ABI stable) -"); - - #line 31 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" -foreach(var func in LlvmFunctions) { - - #line default - #line hidden - - #line 32 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(func.Name)); - - #line default - #line hidden - this.Write("\r\n"); - - #line 33 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\ExportsTemplate.tt" -} - - #line default - #line hidden - return this.GenerationEnvironment.ToString(); - } - } - - #line default - #line hidden - #region Base class - /// - /// Base class for this transformation - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.TextTemplating", "17.0.0.0")] - internal class ExportsTemplateBase - { - #region Fields - private global::System.Text.StringBuilder generationEnvironmentField; - private global::System.CodeDom.Compiler.CompilerErrorCollection errorsField; - private global::System.Collections.Generic.List indentLengthsField; - private string currentIndentField = ""; - private bool endsWithNewline; - private global::System.Collections.Generic.IDictionary sessionField; - #endregion - #region Properties - /// - /// The string builder that generation-time code is using to assemble generated output - /// - public System.Text.StringBuilder GenerationEnvironment - { - get - { - if ((this.generationEnvironmentField == null)) - { - this.generationEnvironmentField = new global::System.Text.StringBuilder(); - } - return this.generationEnvironmentField; - } - set - { - this.generationEnvironmentField = value; - } - } - /// - /// The error collection for the generation process - /// - public System.CodeDom.Compiler.CompilerErrorCollection Errors - { - get - { - if ((this.errorsField == null)) - { - this.errorsField = new global::System.CodeDom.Compiler.CompilerErrorCollection(); - } - return this.errorsField; - } - } - /// - /// A list of the lengths of each indent that was added with PushIndent - /// - private System.Collections.Generic.List indentLengths - { - get - { - if ((this.indentLengthsField == null)) - { - this.indentLengthsField = new global::System.Collections.Generic.List(); - } - return this.indentLengthsField; - } - } - /// - /// Gets the current indent we use when adding lines to the output - /// - public string CurrentIndent - { - get - { - return this.currentIndentField; - } - } - /// - /// Current transformation session - /// - public virtual global::System.Collections.Generic.IDictionary Session - { - get - { - return this.sessionField; - } - set - { - this.sessionField = value; - } - } - #endregion - #region Transform-time helpers - /// - /// Write text directly into the generated output - /// - public void Write(string textToAppend) - { - if (string.IsNullOrEmpty(textToAppend)) - { - return; - } - // If we're starting off, or if the previous text ended with a newline, - // we have to append the current indent first. - if (((this.GenerationEnvironment.Length == 0) - || this.endsWithNewline)) - { - this.GenerationEnvironment.Append(this.currentIndentField); - this.endsWithNewline = false; - } - // Check if the current text ends with a newline - if (textToAppend.EndsWith(global::System.Environment.NewLine, global::System.StringComparison.CurrentCulture)) - { - this.endsWithNewline = true; - } - // This is an optimization. If the current indent is "", then we don't have to do any - // of the more complex stuff further down. - if ((this.currentIndentField.Length == 0)) - { - this.GenerationEnvironment.Append(textToAppend); - return; - } - // Everywhere there is a newline in the text, add an indent after it - textToAppend = textToAppend.Replace(global::System.Environment.NewLine, (global::System.Environment.NewLine + this.currentIndentField)); - // If the text ends with a newline, then we should strip off the indent added at the very end - // because the appropriate indent will be added when the next time Write() is called - if (this.endsWithNewline) - { - this.GenerationEnvironment.Append(textToAppend, 0, (textToAppend.Length - this.currentIndentField.Length)); - } - else - { - this.GenerationEnvironment.Append(textToAppend); - } - } - /// - /// Write text directly into the generated output - /// - public void WriteLine(string textToAppend) - { - this.Write(textToAppend); - this.GenerationEnvironment.AppendLine(); - this.endsWithNewline = true; - } - /// - /// Write formatted text directly into the generated output - /// - public void Write(string format, params object[] args) - { - this.Write(string.Format(global::System.Globalization.CultureInfo.CurrentCulture, format, args)); - } - /// - /// Write formatted text directly into the generated output - /// - public void WriteLine(string format, params object[] args) - { - this.WriteLine(string.Format(global::System.Globalization.CultureInfo.CurrentCulture, format, args)); - } - /// - /// Raise an error - /// - public void Error(string message) - { - System.CodeDom.Compiler.CompilerError error = new global::System.CodeDom.Compiler.CompilerError(); - error.ErrorText = message; - this.Errors.Add(error); - } - /// - /// Raise a warning - /// - public void Warning(string message) - { - System.CodeDom.Compiler.CompilerError error = new global::System.CodeDom.Compiler.CompilerError(); - error.ErrorText = message; - error.IsWarning = true; - this.Errors.Add(error); - } - /// - /// Increase the indent - /// - public void PushIndent(string indent) - { - if ((indent == null)) - { - throw new global::System.ArgumentNullException("indent"); - } - this.currentIndentField = (this.currentIndentField + indent); - this.indentLengths.Add(indent.Length); - } - /// - /// Remove the last indent that was added with PushIndent - /// - public string PopIndent() - { - string returnValue = ""; - if ((this.indentLengths.Count > 0)) - { - int indentLength = this.indentLengths[(this.indentLengths.Count - 1)]; - this.indentLengths.RemoveAt((this.indentLengths.Count - 1)); - if ((indentLength > 0)) - { - returnValue = this.currentIndentField.Substring((this.currentIndentField.Length - indentLength)); - this.currentIndentField = this.currentIndentField.Remove((this.currentIndentField.Length - indentLength)); - } - } - return returnValue; - } - /// - /// Remove any indentation - /// - public void ClearIndent() - { - this.indentLengths.Clear(); - this.currentIndentField = ""; - } - #endregion - #region ToString Helpers - /// - /// Utility class to produce culture-oriented representation of an object as a string. - /// - public class ToStringInstanceHelper - { - private System.IFormatProvider formatProviderField = global::System.Globalization.CultureInfo.InvariantCulture; - /// - /// Gets or sets format provider to be used by ToStringWithCulture method. - /// - public System.IFormatProvider FormatProvider - { - get - { - return this.formatProviderField ; - } - set - { - if ((value != null)) - { - this.formatProviderField = value; - } - } - } - /// - /// This is called from the compile/run appdomain to convert objects within an expression block to a string - /// - public string ToStringWithCulture(object objectToConvert) - { - if ((objectToConvert == null)) - { - throw new global::System.ArgumentNullException("objectToConvert"); - } - System.Type t = objectToConvert.GetType(); - System.Reflection.MethodInfo method = t.GetMethod("ToString", new System.Type[] { - typeof(System.IFormatProvider)}); - if ((method == null)) - { - return objectToConvert.ToString(); - } - else - { - return ((string)(method.Invoke(objectToConvert, new object[] { - this.formatProviderField }))); - } - } - } - private ToStringInstanceHelper toStringHelperField = new ToStringInstanceHelper(); - /// - /// Helper to produce culture-oriented representation of an object as a string - /// - public ToStringInstanceHelper ToStringHelper - { - get - { - return this.toStringHelperField; - } - } - #endregion - } - #endregion -} diff --git a/src/Interop/LlvmBindingsGenerator/Templates/T4/ExportsTemplate.tt b/src/Interop/LlvmBindingsGenerator/Templates/T4/ExportsTemplate.tt deleted file mode 100644 index 0c2ef3df4a..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/T4/ExportsTemplate.tt +++ /dev/null @@ -1,33 +0,0 @@ -<#@ template language="C#" visibility="internal" #> -<#@ assembly name="System.Core" #> -<#@ import namespace="System.Linq" #> -<#@ import namespace="System.Text" #> -<#@ import namespace="System.Collections.Generic" #> -;; ------------------------------------------------------------------------------ -;; -;; This file was generated by a tool. -;; Runtime Version: <#=ToolVersion#> -;; -;; Changes to this file may cause incorrect behavior and will be lost if -;; the code is regenerated. -;; -;; ------------------------------------------------------------------------------ -EXPORTS -; Custom Extension APIs for Ubiquity.NET.Llvm -<#foreach(var func in ExtensionFunctions) {#> -<#=func.Name#> -<#}#> - -; Inlined Functions in LLVM Headers wrapped as non-inlined *Export functions in LibLLVM -<#foreach(var inlineFunc in InlinedFunctions) {#> -<#=inlineFunc.Name#> = <#=inlineFunc.Name#>Export -<#}#> - -; Standard Official LLVM-C APIs -; If LibLLCVM-C.lib is available, these could be generated to forward to that -; or left out completely and use it directly from managed interop code -; A Major problem with that is that it loses ALL access to the C++ as that is -; NOT exported (and should never be as it isn't ABI stable) -<#foreach(var func in LlvmFunctions) {#> -<#=func.Name#> -<#}#> diff --git a/src/Interop/LlvmBindingsGenerator/Templates/T4/GlobalHandleTemplate.cs b/src/Interop/LlvmBindingsGenerator/Templates/T4/GlobalHandleTemplate.cs deleted file mode 100644 index 590b4b4150..0000000000 --- a/src/Interop/LlvmBindingsGenerator/Templates/T4/GlobalHandleTemplate.cs +++ /dev/null @@ -1,474 +0,0 @@ -// ------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version: 17.0.0.0 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -// ------------------------------------------------------------------------------ -namespace LlvmBindingsGenerator.Templates -{ - using System.Linq; - using System.Text; - using System.Collections.Generic; - using System; - - /// - /// Class to produce the template output - /// - - #line 1 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\GlobalHandleTemplate.tt" - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.TextTemplating", "17.0.0.0")] - internal partial class GlobalHandleTemplate : GlobalHandleTemplateBase - { -#line hidden - /// - /// Create the template output - /// - public virtual string TransformText() - { - this.Write("// ------------------------------------------------------------------------------" + - "\r\n// \r\n// This code was generated by a tool. [LlvmBindingsGe" + - "nerator]\r\n// Tool Version: "); - - #line 9 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\GlobalHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(ToolVersion)); - - #line default - #line hidden - this.Write(@" -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -// ------------------------------------------------------------------------------ -#nullable enable - -using System.CodeDom.Compiler; - -namespace Ubiquity.NET.Llvm.Interop -{ - /// Global LLVM object handle - [GeneratedCode(""LlvmBindingsGenerator"","""); - - #line 22 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\GlobalHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(ToolVersion)); - - #line default - #line hidden - this.Write("\")]\r\n public class "); - - #line 23 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\GlobalHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write("\r\n : GlobalHandleBase\r\n , IEquatable<"); - - #line 25 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\GlobalHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write(">\r\n {\r\n /// Initializes an instance of \r\n public "); - - #line 28 "D:\GitHub\Ubiquity.NET\Llvm.Net\src\Interop\LlvmBindingsGenerator\Templates\T4\GlobalHandleTemplate.tt" - this.Write(this.ToStringHelper.ToStringWithCulture(HandleName)); - - #line default - #line hidden - this.Write("()\r\n : base(ownsHandle: true)\r\n {\r\n }\r\n\r\n /// Initializes an instance of